/* Ferreyra Constructora — static, dependency-free interface */
:root {
  --paper:#f4f0e8;
  --ink:#1c2022;
  --muted:#62625c;
  --line:#d5d0c7;
  --burgundy:#9d292b;
  --forest:#1f4a38;
  --dark:#1c2022;
  --white:#fff;
  --gutter:clamp(24px,5.2vw,84px);
  --ease-out:cubic-bezier(0.23,1,0.32,1);
  --ease-in-out:cubic-bezier(0.77,0,0.175,1);
  --ease-drawer:cubic-bezier(0.32,0.72,0,1);
  --duration-panel:250ms;
  --duration-fade:200ms;
  --duration-filter:200ms
}

* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:30px
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased
}
body.is-locked {
  overflow:hidden
}
a {
  color:inherit;
  text-decoration:none
}
button,input,select,textarea {
  font:inherit
}
button,a {
  -webkit-tap-highlight-color:transparent
}
button {
  cursor:pointer
}
button:disabled {
  opacity:.55;
  cursor:wait
}
button:active,.button:active {
  transform:translateY(1px)
}
img {
  display:block;
  width:100%;
  height:auto
}
button {
  color:inherit
}
h1,h2,h3,p {
  margin:0
}
h1,h2,h3 {
  font-weight:500
}
h1,h2 {
  letter-spacing:-.055em;
  line-height:1.05
}
h1 {
  font-size:clamp(50px,6.8vw,104px)
}
h2 {
  font-size:clamp(35px,3.6vw,56px)
}
h3 {
  font-size:24px;
  letter-spacing:-.025em
}
p {
  line-height:1.7
}
em {
  font-family:Georgia,'Times New Roman',serif;
  font-weight:400
}
::selection {
  background:var(--burgundy);
  color:var(--ink)
}
:focus-visible {
  outline:3px solid var(--forest);
  outline-offset:6px
}
.wrap {
  max-width:1600px;
  margin-inline:auto;
  padding-inline:var(--gutter)
}
.section-space {
  padding-block:100px
}
.eyebrow {
  font-size:11px;
  font-weight:600;
  letter-spacing:.12em;
  line-height:1.6;
  text-transform:uppercase
}
.tiny-square {
  display:inline-block;
  width:7px;
  height:7px;
  background:var(--burgundy);
  margin-right:8px;
  vertical-align:1px
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:35px;
  font-size:13px;
  padding-block:14px;
  border-bottom:1px solid currentColor;
  line-height:1.4
}
.text-link span {
  font-size:21px;
  transition:transform .2s
}
.button {
  display:inline-flex;
  min-height:54px;
  padding:16px 23px;
  gap:38px;
  align-items:center;
  justify-content:space-between;
  border:1px solid transparent;
  font-size:13px;
  font-weight:500;
  transition:background .2s,transform .2s
}
.button span {
  font-size:23px;
  line-height:.8
}
.button.white {
  background:var(--paper);
  color:var(--ink)
}
.button.white:hover {
  background:#fff
}
.button.dark {
  background:var(--dark);
  color:white
}
.button.dark:hover {
  background:#414a42
}


.skip-link {
  position:fixed;
  z-index:100;
  top:-80px;
  left:20px;
  background:var(--ink);
  color:#fff;
  padding:14px
}
.skip-link:focus {
  top:15px
}

.site-header {
  height:104px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px
}
.brand {
  display:inline-flex;
  align-items:center;
  gap:9px;
  flex:none
}
.brand svg {
  width:43px;
  height:50px
}
.brand>span {
  font-size:21px;
  font-weight:800;
  letter-spacing:.015em;
  line-height:1.05
}
.brand small {
  display:block;
  font-size:10px;
  font-weight:600;
  letter-spacing:.32em;
  margin-top:5px
}
.desktop-nav {
  display:flex;
  align-items:center;
  gap:34px;
  font-size:12px
}
.desktop-nav>a {
  position:relative;
  padding-block:12px
}
.desktop-nav>a:not(:last-child):after {
  content:'';
  position:absolute;
  left:0;
  bottom:3px;
  height:2px;
  background:var(--burgundy);
  width:100%;
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .2s ease
}
.desktop-nav>a[aria-current]:after {
  transform:scaleX(1)
}
.desktop-nav>a:last-child {
  border:1px solid #73776e;
  padding:13px 18px;
  display:flex;
  gap:35px;
  align-items:center
}
.desktop-nav>a:last-child:hover,.desktop-nav>a:last-child[aria-current] {
  background:var(--ink);
  color:var(--paper)
}
.desktop-nav>a:last-child span {
  font-size:19px
}
.menu-toggle {
  display:none;
  border:0;
  background:none;
  width:46px;
  height:46px;
  padding:12px
}
.menu-toggle span {
  display:block;
  height:1px;
  background:var(--ink);
  margin:7px 0
}
.menu-close,.close-dialog {
  background:none;
  border:1px solid currentColor;
  width:44px;
  height:44px;
  font-size:29px;
  line-height:1
}
.mobile-menu-top {
  display:flex;
  justify-content:space-between;
  align-items:center
}
#mobile-menu {
  max-width:none;
  max-height:none;
  width:100%;
  height:100dvh;
  margin:0;
  border:0;
  background:var(--paper);
  padding:25px
}
#mobile-menu nav {
  display:flex;
  flex-direction:column;
  margin-top:65px
}
#mobile-menu nav a {
  padding:18px 0;
  border-bottom:1px solid var(--line);
  font-size:32px;
  letter-spacing:-.04em
}
#mobile-menu nav a[aria-current] {
  color:var(--forest)
}
#mobile-menu nav a span {
  float:right
}
#mobile-menu>p {
  font-size:13px;
  color:var(--muted);
  margin-top:45px
}

















.facts {
  display:grid;
  grid-template-columns:1fr 1.15fr 1fr;
  padding-block:37px
}
.facts>div {
  padding:0 30px;
  border-right:1px solid var(--line)
}
.facts>div:first-child {
  padding-left:0
}
.facts>div:last-child {
  border:0;
  padding-right:0;
  padding-left:60px
}
.facts strong {
  display:block;
  font-size:26px;
  letter-spacing:-.04em;
  line-height:1.2;
  font-weight:500
}
.facts>div:first-child strong {
  font-size:53px
}
.facts>div:first-child strong span {
  font-size:22px;
  margin-left:10px
}
.facts>div:nth-child(2) {
  display:flex;
  flex-direction:column;
  justify-content:center
}
.facts>div:nth-child(2) strong span {
  display:block
}
.facts p {
  font-size:11px;
  color:var(--muted);
  margin-top:6px
}
.facts .place {
  font-size:23px;
  margin-top:10px;
  line-height:1.25
}
.facts .place span {
  float:right;
  font-size:26px
}
.facts .eyebrow {
  font-size:9px
}
.about-section {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:9%;
  border-top:1px solid var(--line)
}
.about-section h2 {
  margin-top:23px
}
.about-copy .lead {
  font-size:23px;
  letter-spacing:-.025em;
  line-height:1.4;
  color:var(--ink)
}
.about-copy>p {
  font-size:14px;
  color:var(--muted);
  margin-bottom:23px
}
.selected {
  background:#ece8df
}
.section-heading {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:40px
}
.section-heading h2 {
  margin-top:19px
}
.section-heading .text-link {
  margin-bottom:5px;
  flex-shrink:0
}
.work-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px 30px
}
.work-image {
  display:block;
  position:relative;
  overflow:hidden;
  width:100%;
  padding:0;
  border:0;
  background:#d4d7cc;
  text-align:left
}
.work-image img {
  height:445px;
  object-fit:cover;
  transition:transform .55s ease
}
.work-card:first-child .work-image img {
  object-position:center 55%
}
.image-arrow {
  position:absolute;
  bottom:16px;
  right:16px;
  background:var(--paper);
  width:43px;
  height:43px;
  display:grid;
  place-items:center;
  font-size:23px
}
.work-caption {
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding-top:20px
}
.work-caption .eyebrow {
  font-size:9px;
  color:var(--muted);
  margin-bottom:8px
}
.work-caption h3 {
  font-size:22px
}
.work-number {
  font-size:11px;
  margin-top:7px;
  color:var(--muted)
}
.services-preview {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9%
}
.services-preview h2 {
  margin:21px 0
}
.service-links a {
  display:flex;
  gap:22px;
  align-items:center;
  border-bottom:1px solid var(--line);
  padding:30px 0
}
.service-links a:first-child {
  border-top:1px solid var(--line)
}
.service-links a>span:first-child {
  font-size:10px;
  color:var(--muted)
}
.service-links a h3 {
  font-size:22px;
  flex:1
}
.service-links a>span:last-child {
  font-size:26px;
  transition:transform .2s
}
.cta {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding-block:65px;
  background:#ece8df;
  border-top:1px solid var(--line)
}
.cta h2 {
  font-size:clamp(34px,3.5vw,52px);
  margin-top:15px
}
.cta>.button {
  flex-shrink:0
}
.site-footer {
  background:var(--dark);
  color:var(--paper);
  padding-top:60px
}
.footer-top {
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:40px;
  padding-bottom:55px
}
.site-footer .brand svg {
  width:36px
}
.site-footer .brand>span {
  font-size:18px
}
.site-footer .brand small {
  font-size:8px
}
.footer-top>div>p {
  font-size:12px;
  color:#bfc4b9;
  margin-top:20px
}
.footer-top nav {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:17px;
  font-size:12px
}
.footer-top nav a:hover {
  text-decoration:underline;
  text-underline-offset:5px
}
.footer-top nav a>span {
  display:none
}
.footer-location {
  display:flex;
  flex-direction:column;
  gap:22px;
  align-items:flex-end
}
.footer-location .eyebrow {
  font-size:9px;
  color:#c3c7bf
}
.footer-location a {
  font-size:12px;
  display:flex;
  gap:35px
}
.footer-bottom {
  border-top:1px solid #50564d;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-block:22px
}
.footer-bottom p {
  font-size:10px;
  color:#bdc4b8
}
.footer-bottom a {
  color:white
}
.footer-bottom a:hover {
  text-decoration:underline
}

.page-intro {
  padding-top:65px;
  padding-bottom:65px;
  border-top:1px solid var(--line)
}
.intro-row {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:60px;
  margin-top:27px
}
.intro-row h1 {
  font-size:clamp(52px,6.5vw,94px)
}
.intro-row h1 em {
  color:var(--ink)
}
.intro-copy {
  width:325px;
  font-size:14px;
  color:var(--muted);
  flex-shrink:0;
  padding-bottom:7px
}
.story-visual {
  height:490px;
  position:relative;
  margin-bottom:70px
}
.story-visual>img {
  height:100%;
  object-fit:cover;
  object-position:center 55%
}
.story-stamp {
  position:absolute;
  bottom:-30px;
  right:calc(var(--gutter) + 40px);
  background:var(--burgundy);
  width:180px;
  height:180px;
  display:flex;
  justify-content:center;
  flex-direction:column;
  padding:25px
}
.story-stamp strong {
  font-size:80px;
  letter-spacing:-.07em;
  line-height:1;
  font-weight:500
}
.story-stamp span {
  font-size:10px;
  letter-spacing:.12em;
  margin-top:10px;
  line-height:1.5
}
.values,.process {
  background:#ece8df
}
.values h2,.process h2 {
  margin-top:20px
}
.three-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:45px;
  margin-top:50px
}
.three-grid article {
  border-top:1px solid #bec2b6;
  padding-top:25px
}
.value-number {
  font-size:13px;
  color:var(--ink)
}
.three-grid h3 {
  margin:28px 0 13px;
  font-size:26px
}
.three-grid p {
  color:var(--muted);
  font-size:14px;
  max-width:330px
}
.gallery {
  padding-bottom:90px
}
.gallery-bar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top:1px solid var(--line);
  padding-block:23px;
  margin-bottom:12px
}
.filters {
  display:flex;
  gap:7px;
  flex-wrap:wrap
}
.filters button {
  background:none;
  border:1px solid transparent;
  padding:11px 17px;
  font-size:12px;
  transition:background .2s
}
.filters button[aria-pressed=true] {
  background:var(--ink);
  color:white
}
.filters button:hover:not([aria-pressed=true]) {
  border-color:var(--muted)
}
.filters button span {
  font-size:9px;
  vertical-align:super;
  margin-left:8px
}
.gallery-bar>p {
  font-size:11px;
  color:var(--muted)
}
.gallery-grid .work-card:nth-child(even) {
  padding-top:65px
}
.gallery-grid .work-image img {
  height:470px
}
.gallery-grid .work-card[hidden] {
  display:none
}
.gallery-note {
  font-size:11px;
  color:var(--muted);
  margin-top:40px;
  border-top:1px solid var(--line);
  padding-top:20px
}
.lightbox {
  background:var(--paper);
  border:0;
  padding:22px;
  width:min(1100px,94vw);
  max-height:94dvh;
  color:var(--ink);
  overflow:auto
}
.lightbox::backdrop {
  background:#141915ed
}
.close-dialog {
  position:absolute;
  top:32px;
  right:32px;
  background:var(--paper);
  z-index:2
}
.lightbox>img {
  width:100%;
  height:65vh;
  object-fit:contain;
  background:#dedfd7
}
.lightbox-caption {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:20px 5px 5px
}
.lightbox-caption h2 {
  font-size:28px;
  margin:7px 0
}
.lightbox-caption p:not(.eyebrow) {
  font-size:12px;
  color:var(--muted);
  max-width:620px
}
.lightbox-caption .eyebrow {
  font-size:9px
}
.lightbox-controls {
  display:flex;
  align-items:center;
  gap:15px;
  flex-shrink:0
}
.lightbox-controls button {
  width:42px;
  height:42px;
  background:none;
  border:1px solid var(--line);
  font-size:20px
}
.lightbox-controls button:hover {
  background:var(--ink);
  color:#fff
}
.lightbox-controls span {
  font-size:11px
}
.service-list {
  padding-bottom:75px
}
.service-detail {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9%;
  padding:65px 0;
  border-top:1px solid var(--line);
  align-items:center
}
.service-detail:nth-child(even) .service-info {
  order:2
}
.service-detail>img {
  height:460px;
  object-fit:cover
}
.service-info h2 {
  font-size:43px;
  margin:18px 0 24px
}
.service-info .lead {
  font-size:20px;
  color:var(--ink);
  margin-bottom:13px
}
.service-info>p:not(.eyebrow) {
  font-size:14px;
  color:var(--muted)
}
.service-info>p.lead {
  font-size:20px;
  color:var(--ink)
}
.tags {
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:0;
  margin:25px 0 16px
}
.tags li {
  border:1px solid var(--line);
  padding:8px 10px;
  font-size:10px
}
.contact-layout {
  display:grid;
  grid-template-columns: .85fr 1.2fr;
  gap:8%;
  padding-bottom:100px;
  padding-top:25px
}
.contact-info h2 {
  font-size:39px;
  margin-top:20px
}
.contact-info dl {
  margin:35px 0 15px
}
.contact-info dl>div {
  padding:18px 0;
  border-top:1px solid var(--line)
}
.contact-info dt {
  font-size:9px;
  letter-spacing:.1em;
  color:var(--muted);
  margin-bottom:8px
}
.contact-info dd {
  font-size:15px;
  line-height:1.5;
  margin:0;
  overflow-wrap:anywhere
}
.contact-experience {
  display:flex;
  gap:20px;
  align-items:center;
  margin-top:45px
}
.contact-experience strong {
  font-weight:400;
  font-size:65px;
  letter-spacing:-.07em
}
.contact-experience p {
  font-size:11px;
  color:var(--muted)
}
#contact-form {
  background:#ece8df;
  padding:35px
}
.form-note {
  display:flex;
  gap:6px;
  align-items:baseline;
  border-bottom:1px solid #c9cbbf;
  padding-bottom:23px;
  margin-bottom:27px
}
.form-note .tiny-square {
  flex-shrink:0
}
.form-note p {
  font-size:11px;
  color:#51564c
}
.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px
}
.field.full {
  grid-column:1/-1
}
.field label {
  display:block;
  font-size:11px;
  margin-bottom:10px
}
.field label>span {
  color:var(--burgundy)
}
.field label small {
  font-size:10px;
  color:var(--muted)
}
input,select,textarea {
  width:100%;
  border:1px solid #b9bdb0;
  background:transparent;
  color:var(--ink);
  padding:13px 12px;
  min-height:45px;
  font-size:12px;
  border-radius:0
}
input::placeholder,textarea::placeholder {
  color:#707468;
  opacity:1
}
textarea {
  resize:vertical;
  min-height:120px;
  max-height:400px
}
select {
  background-color:#ece8df
}
input[aria-invalid=true],select[aria-invalid=true],textarea[aria-invalid=true] {
  border-color:#a33122
}
.field-error {
  color:#9b2b20;
  font-size:11px;
  margin-top:5px;
  line-height:1.4
}
.field-error:empty {
  display:none
}
.form-bottom {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  margin-top:25px
}
.form-bottom p {
  font-size:9px;
  color:#62685a
}
.form-bottom .button {
  font-size:12px;
  padding-inline:17px;
  gap:20px
}
#form-status:not(:empty) {
  border-left:3px solid #56654c;
  padding:14px;
  font-size:13px;
  background:#dbe2d2;
  margin-top:20px
}
.not-found {
  padding-block:100px 130px
}
.not-found h1 {
  margin:25px 0
}
.not-found h1 em {
  color:var(--ink)
}
.not-found .button {
  margin-top:30px
}



@media(max-width:1100px) {
  .desktop-nav {
  gap:23px
}



.intro-row {
  gap:30px
}
.intro-copy {
  width:270px
}
.work-image img,.gallery-grid .work-image img {
  height:370px
}
.facts>div:last-child {
  padding-left:30px
}
.service-detail {
  gap:6%
}
.service-info h2 {
  font-size:37px
}
.contact-layout {
  gap:5%
}
#contact-form {
  padding:27px
}
.form-grid {
  gap:17px
}
.form-bottom {
  align-items:flex-start;
  flex-direction:column
}
.footer-top {
  grid-template-columns:1.2fr 1fr .9fr;
  gap:25px
}

}

@media(max-width:760px) {
  .site-header {
  height:86px
}
.brand svg {
  width:36px;
  height:44px
}
.brand>span {
  font-size:19px
}
.brand small {
  font-size:9px
}
.desktop-nav {
  display:none
}
.menu-toggle {
  display:block
}














.facts {
  grid-template-columns:1fr 1fr;
  padding-block:28px
}
.facts>div {
  padding-inline:20px
}
.facts>div:nth-child(2) {
  border-right:0;
  padding-right:0
}
.facts>div:nth-child(2) strong {
  font-size:23px
}
.facts>div:first-child strong {
  font-size:44px
}
.facts>div:first-child strong span {
  font-size:18px
}
.facts>div:last-child {
  grid-column:1/-1;
  padding:22px 0 0;
  margin-top:22px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px
}
.facts .place {
  margin:0;
  font-size:18px;
  width:50%;
  padding-left:20px
}
.facts p {
  font-size:10px
}
.section-space {
  padding-block:65px
}
.about-section,.services-preview {
  grid-template-columns:1fr;
  gap:30px
}
.about-copy .lead {
  font-size:21px
}
.about-copy>p {
  font-size:13px
}
.section-heading {
  align-items:start;
  flex-direction:column;
  gap:20px
}
.section-heading h2 {
  margin-top:15px
}
.work-grid {
  gap:35px 20px
}
.work-image img,.gallery-grid .work-image img {
  height:310px
}
.work-caption h3 {
  font-size:18px;
  line-height:1.25
}
.work-caption .eyebrow {
  font-size:8px
}
.work-number {
  display:none
}
.service-links a {
  padding:24px 0
}
.service-links a h3 {
  font-size:21px
}
.cta {
  align-items:flex-start;
  flex-direction:column;
  padding-block:45px;
  gap:27px
}
.footer-top {
  grid-template-columns:1fr 1fr;
  gap:35px
}
.footer-top>div:first-child {
  grid-column:1/-1
}
.footer-top nav {
  grid-template-columns:1fr 1fr;
  gap:19px
}
.footer-location {
  gap:20px
}
.footer-location .eyebrow {
  font-size:8px;
  text-align:right
}
.footer-bottom {
  flex-direction:column;
  gap:10px
}
.footer-bottom p {
  font-size:9px
}
.page-intro {
  padding-top:40px;
  padding-bottom:40px
}
.intro-row {
  align-items:start;
  flex-direction:column;
  gap:25px;
  margin-top:23px
}
.intro-row h1 {
  font-size:clamp(50px,9vw,72px)
}
.intro-copy {
  width:auto;
  max-width:450px;
  font-size:13px
}
.story-visual {
  height:340px
}
.story-stamp {
  width:140px;
  height:140px;
  right:calc(var(--gutter) + 15px);
  padding:20px
}
.story-stamp strong {
  font-size:60px
}
.story-stamp span {
  font-size:9px
}
.three-grid {
  gap:25px;
  grid-template-columns:1fr;
  margin-top:35px
}
.three-grid h3 {
  margin-top:15px;
  font-size:24px
}
.three-grid p {
  max-width:100%;
  font-size:13px
}
.gallery-bar {
  gap:10px;
  align-items:flex-start
}
.filters {
  gap:5px
}
.filters button {
  padding:10px 11px;
  font-size:11px
}
.gallery-bar>p {
  display:none
}
.gallery-grid .work-card:nth-child(even) {
  padding-top:40px
}
.gallery {
  padding-bottom:55px
}
.lightbox {
  padding:12px;
  max-height:94dvh
}
.lightbox>img {
  height:55vh
}
.close-dialog {
  top:20px;
  right:20px
}
.lightbox-caption {
  align-items:flex-start;
  flex-direction:column;
  gap:15px;
  padding:15px 5px
}
.lightbox-caption h2 {
  font-size:25px
}
.lightbox-controls {
  align-self:flex-end
}
.service-detail {
  grid-template-columns:1fr;
  gap:30px;
  padding-block:40px
}
.service-detail:nth-child(even) .service-info {
  order:0
}
.service-detail>img {
  height:350px
}
.service-info h2 {
  font-size:36px
}
.service-info>p:not(.eyebrow) {
  font-size:13px
}
.service-info>p.lead {
  font-size:19px
}
.service-list {
  padding-bottom:30px
}
.contact-layout {
  grid-template-columns:1fr;
  gap:45px;
  padding-bottom:65px
}
.contact-info h2 {
  font-size:36px
}
.contact-experience {
  display:none
}
.contact-info dl {
  display:grid;
  gap:0 20px
}
#contact-form {
  padding:24px
}
.form-bottom {
  flex-direction:row;
  align-items:center;
  flex-wrap:wrap
}
.not-found {
  padding-block:70px
}
.not-found h1 {
  font-size:53px
}
.not-found>p:not(.eyebrow) {
  font-size:14px
}

}

@media(max-width:480px) {
  





.desktop-break {
  display:none
}


.work-grid {
  grid-template-columns:1fr
}
.work-image img,.gallery-grid .work-image img {
  height:360px
}
.gallery-grid .work-card:nth-child(even) {
  padding-top:0
}
.work-caption h3 {
  font-size:23px
}
.work-caption .eyebrow {
  font-size:9px
}
.work-number {
  display:block
}
.filters button {
  padding:10px;
  font-size:10px
}
.filters button span {
  margin-left:4px
}
.form-grid {
  grid-template-columns:1fr
}
.contact-info dl {
  grid-template-columns:1fr
}
.contact-info dd {
  font-size:14px
}
.form-bottom .button {
  width:100%
}
.story-visual {
  height:290px
}
.footer-top {
  grid-template-columns:1fr
}
.footer-location {
  align-items:flex-start
}
.footer-location .eyebrow {
  text-align:left
}
.footer-top nav {
  max-width:280px
}
.footer-top {
  padding-bottom:35px
}
.lightbox>img {
  height:48vh
}
.lightbox-caption h2 {
  font-size:23px
}

}

/* Frame the supplied social captures so edge overlays stay outside the image area. */


.work-image img {
  width:calc(100% + 38px)
}

.footer-bottom a {
  text-decoration:underline;
  text-underline-offset:3px
}

.value-number {
  color:var(--forest)
}

.work-caption h2 {
  font-size:22px;
  letter-spacing:-.025em;
  line-height:1.25
}

@media(max-width:760px) {
  .work-caption h2 {
  font-size:18px
}

}

@media(max-width:480px) {
  .work-caption h2 {
  font-size:23px
}

}



@media(max-width:760px) {
  input,select,textarea {
  font-size:16px
}

}

@media (hover:hover) and (pointer:fine) {
  .text-link:hover span,.service-links a:hover>span:last-child {
    transform:translate(3px,-3px)
  }
  .work-image:hover img { transform:scale(1.035) }
  .desktop-nav>a:hover:after { transform:scaleX(1) }
}

#mobile-menu[data-motion],.lightbox[data-motion] {
  opacity:1;
  transition:transform var(--duration-panel) var(--ease-out),opacity var(--duration-panel) var(--ease-out)
}
#mobile-menu[data-motion] {
  transform:translateX(0);
  transition-timing-function:var(--ease-drawer),var(--ease-out)
}
#mobile-menu[data-motion="entering"],#mobile-menu[data-motion="closing"] {
  transform:translateX(100%);
  opacity:0
}
.lightbox[data-motion] { transform:scale(1);transform-origin:center }
.lightbox[data-motion="entering"],.lightbox[data-motion="closing"] {
  transform:scale(.97);
  opacity:0
}
.lightbox[data-motion]::backdrop {
  opacity:1;
  transition:opacity var(--duration-panel) var(--ease-out)
}
.lightbox[data-motion="entering"]::backdrop,.lightbox[data-motion="closing"]::backdrop { opacity:0 }
#mobile-menu[data-motion-instant],.lightbox[data-motion-instant],.lightbox[data-motion-instant]::backdrop { transition:none }
.gallery-grid .work-card[data-filter-motion] {
  transition:transform var(--duration-filter) var(--ease-in-out),opacity var(--duration-filter) var(--ease-out)
}

@media(prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto }
  button:active,.button:active,.text-link:hover span,.work-image:hover img,
  .service-links a:hover>span:last-child { transform:none }
  .text-link span,.work-image img,.service-links a>span:last-child,
  .desktop-nav>a:not(:last-child):after,.gallery-grid .work-card[data-filter-motion] { transition:none }
  #mobile-menu[data-motion],.lightbox[data-motion] {
    transform:none;
    transition:opacity var(--duration-fade) ease
  }
  .lightbox[data-motion]::backdrop { transition:opacity var(--duration-fade) ease }
  #mobile-menu[data-motion-instant],.lightbox[data-motion-instant],.lightbox[data-motion-instant]::backdrop { transition:none }
}
