/* ===========================================================
   Matthew Wheeler Cabinetry & Joinery
   Design system — matches bespokewheeler.co.uk
   =========================================================== */

:root{
  --bronze: #8D7B67;
  --ink: #383129;
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --stone: #C9BFB2;
  --walnut: #241F1A;

  --muted: #665D53;
  --muted-soft: #756B61;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

*{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
  background: var(--off-white);
}

body{
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }

h1, h2, h3{
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  margin: 0;
}
h1{ font-size: clamp(4.5rem, 9vw, 8.8rem); }
h2{ font-size: clamp(3.4rem, 6vw, 6.2rem); }

.container{
  width: min(1220px, 100% - 64px);
  margin-inline: auto;
}

.section{ padding: 128px 0; }

.eyebrow{
  color: var(--bronze);
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 22px;
}
.eyebrow-light{ color: rgba(255,255,255,0.72); }

.lead{
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.35;
}

/* ---------- Buttons & links ---------- */
.button-row{
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 42px;
}
.button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  border: 1px solid var(--ink);
  background: none;
  color: inherit;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.button:hover{ background: var(--ink); color: var(--white); }
.button-light{ color: var(--white); border-color: rgba(255,255,255,0.8); }
.button-light:hover{ border-color: var(--white); background: var(--white); color: var(--ink); }

.text-link{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--stone);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.text-link span{ color: var(--bronze); font-size: 1rem; }
.text-link:hover{ border-color: var(--bronze); color: var(--bronze); }
.text-link-light{ color: var(--white); border-color: rgba(255,255,255,0.45); }
.text-link-light span{ color: var(--white); }
.text-link-light:hover{ border-color: var(--white); color: var(--white); }

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 102px;
  transition: height .4s var(--ease), background-color .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled,
.site-header.header-solid{
  height: 82px;
  background: rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px rgba(56,49,41,0.1);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1380px, 100% - 56px);
  height: 100%;
  margin-inline: auto;
}

.brand-lockup{
  position: relative;
  z-index: 52;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  height: 100px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.96);
  transition: width .4s var(--ease), height .4s var(--ease), padding .4s var(--ease);
  overflow: hidden;
}
.brand-lockup img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.is-scrolled .brand-lockup,
.header-solid .brand-lockup{ width: 180px; height: 80px; padding: 6px 10px; }

/* One-off logo reveal on first visit */
.brand-intro::after{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform-origin: 100%;
  animation: reveal-logo 1.05s var(--ease) forwards;
}
@keyframes reveal-logo{ to{ transform: scaleX(0); } }

.desktop-nav{ display: flex; align-items: center; gap: 42px; }
.desktop-nav a{
  position: relative;
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: color .3s var(--ease);
}
.desktop-nav a::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 100%;
  transition: transform .35s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after{ transform: scaleX(1); transform-origin: 0; }
.is-scrolled .desktop-nav a,
.header-solid .desktop-nav a{ color: var(--ink); }

.menu-button{
  display: none;
  position: relative;
  z-index: 52;
  width: 48px; height: 48px;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--white);
}
.menu-button span{
  position: absolute;
  left: 10px;
  width: 28px; height: 1px;
  background: currentColor;
  transition: transform .35s var(--ease), top .35s var(--ease);
}
.menu-button span:first-child{ top: 19px; }
.menu-button span:last-child{ top: 28px; }

.mobile-menu{ display: none; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  background: var(--walnut);
  overflow: hidden;
}
.hero-image{
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.hero-shade{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25,21,17,0.78) 0%, rgba(25,21,17,0.47) 43%, rgba(25,21,17,0.16) 72%),
    linear-gradient(rgba(0,0,0,0) 55%, rgba(20,17,14,0.45));
}
.hero-content{
  position: relative;
  z-index: 2;
  padding-bottom: 13vh;
}
.hero-content h1{ color: var(--white); max-width: 1060px; }
.hero-copy{
  color: rgba(255,255,255,0.84);
  max-width: 570px;
  margin: 30px 0 0;
  font-size: 1rem;
  line-height: 1.8;
}

.scroll-cue{
  position: absolute;
  right: 48px;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 17px;
  color: rgba(255,255,255,0.65);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue i{ width: 1px; height: 68px; background: rgba(255,255,255,0.55); }

/* ---------- About ---------- */
.section-about{ background: var(--off-white); }
.about-grid{
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}
.about-image-wrap{ position: relative; min-height: 690px; }
.about-image-wrap::before{
  content: "";
  position: absolute;
  top: -12px; left: -12px;
  z-index: 2;
  width: 68px; height: 68px;
  border-top: 1px solid var(--bronze);
  border-left: 1px solid var(--bronze);
}
.about-image{
  width: 100%;
  height: 690px;
  object-fit: cover;
  filter: saturate(0.78) sepia(0.08);
}
.image-note{
  position: absolute;
  right: -1px; bottom: 0;
  padding: 15px 20px;
  background: var(--off-white);
  color: var(--bronze);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-copy{ max-width: 570px; }
.about-copy .lead{ margin: 40px 0 24px; }
.about-copy > p:not(.eyebrow):not(.lead){
  color: var(--muted);
  max-width: 520px;
  font-size: 0.92rem;
}

.usp-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 46px;
  border-top: 1px solid var(--stone);
  border-left: 1px solid var(--stone);
}
.usp-grid span{
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 88px;
  padding: 15px;
  border-right: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}
.usp-grid strong{
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

/* ---------- Selected work ---------- */
.work-section{ background: var(--white); }
.split-heading{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}
.highlight-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 24px;
}
.highlight-grid > :nth-child(2n){ margin-top: 110px; }
.highlight-image{
  position: relative;
  display: block;
  height: 570px;
  background: var(--off-white);
  overflow: hidden;
}
.highlight-image img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .5s var(--ease);
}
.highlight-card:hover .highlight-image img{ filter: saturate(0.82); transform: scale(1.035); }
.corner-mark{
  position: absolute;
  right: 16px; bottom: 16px;
  width: 42px; height: 42px;
  border-bottom: 1px solid rgba(255,255,255,0.8);
  border-right: 1px solid rgba(255,255,255,0.8);
}
.highlight-meta{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 19px;
  border-top: 1px solid var(--stone);
}
.highlight-meta strong{
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
}
.highlight-meta small{
  display: block;
  margin-top: 5px;
  color: var(--muted-soft);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}
.highlight-meta i{
  color: var(--bronze);
  font-size: 1.25rem;
  font-style: normal;
  transition: transform .35s var(--ease);
}
.highlight-card:hover .highlight-meta i{ transform: translate(4px, -4px); }

.photography-note{
  max-width: 560px;
  margin: 70px 0 0;
  color: #81766A;
  font-size: 0.65rem;
  font-style: italic;
}

/* ---------- Quote ---------- */
.quote-section{ background: var(--off-white); }
.quote-inner{ max-width: 1050px; margin-inline: auto; text-align: center; }
.quote-inner blockquote{
  position: relative;
  margin: 0;
  padding: clamp(52px, 7vw, 80px);
}
.quote-mark{
  position: absolute;
  display: block;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 7rem);
  line-height: 0.8;
}
.quote-mark-open{ top: 0; left: 0; }
.quote-mark-close{ bottom: 0; right: 0; }
.quote-inner blockquote p{
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 3.15rem);
  font-style: italic;
  line-height: 1.2;
}
.quote-inner blockquote footer{
  margin-bottom: 16px;
  color: var(--bronze);
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- CTA ---------- */
.cta-section{
  background: var(--walnut);
  color: var(--white);
  padding: 120px 0;
}
.cta-inner{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 100px;
}
.cta-inner h2{ font-size: clamp(3.5rem, 6vw, 6.5rem); }
.cta-action{ max-width: 460px; }
.cta-action p{
  margin-bottom: 34px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* ---------- Footer ---------- */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,0.68);
  padding: 86px 0 26px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 70px;
}
.footer-brand img{
  width: 250px;
  padding: 8px 14px;
  background: var(--white);
  mix-blend-mode: screen;
}
.footer-brand p{
  margin: 28px 0 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.2;
}
.footer-column{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.72rem;
}
.footer-column a{ transition: color .25s; overflow-wrap: anywhere; }
.footer-column a:hover{ color: var(--white); }
.footer-label{
  margin-bottom: 13px;
  color: var(--bronze);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.footer-bottom{
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 74px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}
.footer-bottom p{ margin: 0; }

/* ---------- Scroll reveal ---------- */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .58s var(--ease), transform .58s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: none; }

/* ---------- Interior page shell ---------- */
.page-shell{ padding-top: 82px; }
.page-intro{
  background: var(--off-white);
  padding: 120px 0 80px;
}
.page-intro-grid{
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
}
.page-intro h1{ color: var(--ink); font-size: clamp(4rem, 8vw, 8rem); }
.page-intro-copy{ color: var(--muted); max-width: 450px; font-size: 0.9rem; }
.page-intro-copy .note{
  color: #786E63;
  font-size: 0.67rem;
  font-style: italic;
  line-height: 1.5;
}

/* ---------- Gallery ---------- */
.gallery-section{ padding: 70px 0 130px; min-height: 800px; }

.filter-bar{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 55px;
}
.filter-button{
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--stone);
  background: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.filter-button:hover,
.filter-button.active{ border-color: var(--bronze); background: var(--bronze); color: var(--white); }

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px 20px;
}
.gallery-item{
  grid-column: span 4;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
  animation: item-in .45s var(--ease) both;
}
.gallery-item:nth-child(5n+1),
.gallery-item:nth-child(5n+4){ grid-column: span 7; }
.gallery-item:nth-child(5n+2),
.gallery-item:nth-child(5n+5){ grid-column: span 5; }
@keyframes item-in{ from{ opacity: 0; transform: translateY(12px); } }

.gallery-thumb{
  display: block;
  background: var(--off-white);
  overflow: hidden;
}
.gallery-item:nth-child(odd) .gallery-thumb{ height: 520px; }
.gallery-item:nth-child(2n) .gallery-thumb{ height: 420px; }
.gallery-thumb img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .5s var(--ease);
}
.gallery-item:hover img{ filter: saturate(0.82); transform: scale(1.035); }

.gallery-caption{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
}
.gallery-caption strong{
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.15;
}
.gallery-caption span{
  color: var(--bronze);
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.gallery-empty{
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.8rem;
}

/* ---------- Lightbox ---------- */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(24,20,17,0.95);
  animation: lightbox-in .32s var(--ease) both;
}
.lightbox[hidden]{ display: none; }
@keyframes lightbox-in{ from{ opacity: 0; } }

.lightbox-figure{
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: min(1120px, 100% - 160px);
  height: min(76vh, 800px);
  margin: 0;
}
.lightbox-figure img{ width: 100%; height: 100%; object-fit: contain; }
.lightbox-figure figcaption{
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  color: var(--white);
}
.lightbox-figure strong{ font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.lightbox-figure span{
  color: var(--stone);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lightbox-close,
.lightbox-arrow{
  position: absolute;
  border: 0;
  background: none;
  color: var(--white);
  cursor: pointer;
}
.lightbox-close{ top: 28px; right: 32px; width: 48px; height: 48px; font-size: 2rem; font-weight: 200; }
.lightbox-arrow{
  top: 50%;
  width: 60px; height: 60px;
  font-family: var(--serif);
  font-size: 3rem;
  transform: translateY(-50%);
}
.lightbox-arrow.prev{ left: 28px; }
.lightbox-arrow.next{ right: 28px; }

/* ---------- Contact ---------- */
.contact-main{ padding: 100px 0 130px; }
.contact-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: clamp(70px, 10vw, 150px);
}
.contact-form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.field{ position: relative; display: flex; flex-direction: column; gap: 9px; }
.field-full{ grid-column: 1 / -1; }
.field label,
.checkbox-field label{
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 10px 0 14px;
  border: 0;
  border-bottom: 1px solid var(--stone);
  border-radius: 0;
  background: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  outline: 0;
  transition: border-color .25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus{ border-color: var(--bronze); }
.field textarea{ resize: vertical; min-height: 140px; }
.field-error input,
.field-error select,
.field-error textarea{ border-color: #7A443C; }
.error-text{ color: #7A443C; font-size: 0.65rem; }

.checkbox-field{
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 3px 0;
}
.checkbox-field input{ width: 17px; height: 17px; margin-top: 3px; accent-color: var(--bronze); }
.checkbox-field label{
  color: #655C53;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-transform: none;
}

.honeypot{
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-actions{
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 14px;
}
.form-status{ margin: 0; color: #655C53; font-size: 0.72rem; }
.form-status.success{ color: #526046; }
.form-status.error{ color: #7A443C; }

.contact-details{
  border-left: 1px solid var(--stone);
  padding-left: clamp(34px, 5vw, 76px);
}
.contact-details h2{ margin-bottom: 38px; font-size: clamp(2.7rem, 4vw, 4.4rem); }
.detail-block{ margin-bottom: 32px; }
.detail-block h3{
  margin-bottom: 7px;
  color: var(--bronze);
  font-family: var(--sans);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.detail-block p,
.detail-block a{ display: block; margin: 0; color: #62594F; font-size: 0.82rem; }
.detail-block a:hover{ color: var(--bronze); }

.location-map{
  height: 330px;
  margin-top: 44px;
  background: var(--off-white);
  overflow: hidden;
}
.location-map iframe{
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(1) sepia(0.12) contrast(0.92);
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1024px){
  .container{ width: min(100% - 48px, 900px); }
  .section{ padding: 100px 0; }

  .site-header,
  .site-header.is-scrolled,
  .site-header.header-solid{ height: 78px; }
  .site-header.menu-open,
  .site-header.is-scrolled.menu-open,
  .site-header.header-solid.menu-open{
    height: 100dvh;
    background: var(--off-white);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    overflow: hidden;
  }
  .header-inner{ width: calc(100% - 32px); }
  .brand-lockup,
  .is-scrolled .brand-lockup,
  .header-solid .brand-lockup{ width: 168px; height: 76px; padding: 5px 9px; }

  .desktop-nav{ display: none; }
  .menu-button{ display: block; }
  .is-scrolled .menu-button,
  .header-solid .menu-button,
  .menu-open .menu-button{ color: var(--ink); }
  .menu-open .menu-button span:first-child{ top: 24px; transform: rotate(45deg); }
  .menu-open .menu-button span:last-child{ top: 24px; transform: rotate(-45deg); }

  .mobile-menu{
    position: absolute;
    inset: 0;
    z-index: 51;
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    align-items: end;
    padding: 130px max(32px, 8vw) 70px;
    background: var(--off-white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    overscroll-behavior: contain;
    transition: opacity .35s var(--ease), visibility .35s, transform .35s var(--ease);
  }
  .menu-open .mobile-menu{ opacity: 1; visibility: visible; transform: none; }
  .mobile-menu nav{ display: flex; flex-direction: column; }
  .mobile-menu nav a{
    display: flex;
    align-items: baseline;
    gap: 22px;
    padding: 18px 0;
    border-bottom: 1px solid var(--stone);
    font-family: var(--serif);
    font-size: clamp(2.7rem, 8vw, 5rem);
    line-height: 1;
  }
  .mobile-menu nav span{
    color: var(--bronze);
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
  .mobile-menu > p{
    color: var(--bronze);
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1.2;
  }

  .about-image-wrap,
  .about-image{ height: 540px; min-height: 540px; }

  .contact-grid{ grid-template-columns: 1fr; }
  .contact-details{ border-left: 0; padding-left: 0; }
}

@media (max-width: 700px){
  .container{ width: calc(100% - 36px); }
  .section{ padding: 82px 0; }
  h1{ font-size: clamp(3.6rem, 17vw, 5.6rem); }
  h2{ font-size: clamp(3rem, 14vw, 4.6rem); }

  .mobile-menu{ grid-template-columns: 1fr; padding: 110px 28px 44px; }
  .mobile-menu > p{ display: none; }

  .hero{ min-height: 760px; }
  .hero-image{ object-position: 62% center; }
  .hero-shade{
    background:
      linear-gradient(90deg, rgba(25,21,17,0.76), rgba(25,21,17,0.28)),
      linear-gradient(rgba(0,0,0,0) 50%, rgba(20,17,14,0.5));
  }
  .hero-content{ padding-bottom: 100px; }
  .hero-copy{ font-size: 0.86rem; }
  .button-row{ flex-direction: column; align-items: flex-start; gap: 24px; margin-top: 34px; }
  .scroll-cue{ display: none; }

  .about-grid{ grid-template-columns: 1fr; gap: 58px; }
  .about-image-wrap,
  .about-image{ height: 480px; min-height: 480px; }
  .about-copy .lead{ margin-top: 30px; }
  .usp-grid{ grid-template-columns: 1fr; }

  .split-heading{ flex-direction: column; align-items: flex-start; margin-bottom: 48px; }
  .highlight-grid{ grid-template-columns: 1fr; gap: 52px; }
  .highlight-grid > :nth-child(2n){ margin-top: 0; }
  .highlight-image{ height: 440px; }
  .highlight-meta strong{ font-size: 1.55rem; }

  .cta-inner{ grid-template-columns: 1fr; gap: 48px; }

  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 50px 28px; }
  .footer-brand{ grid-column: 1 / -1; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }

  .page-shell{ padding-top: 78px; }
  .page-intro{ padding: 78px 0 58px; }
  .page-intro-grid{ grid-template-columns: 1fr; gap: 32px; }

  .gallery-section{ padding: 46px 0 90px; }
  .filter-bar{
    flex-wrap: nowrap;
    margin-inline: -18px;
    padding-inline: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .filter-button{ flex: none; }
  .gallery-grid{ display: block; }
  .gallery-item{ display: block; width: 100%; margin-bottom: 44px; }
  .gallery-item:nth-child(n) .gallery-thumb{ height: 430px; }

  .lightbox-figure{ width: calc(100% - 36px); height: 76vh; }
  .lightbox-arrow{ top: auto; bottom: 22px; transform: none; }
  .lightbox-arrow.prev{ left: 16px; }
  .lightbox-arrow.next{ right: 16px; }

  .contact-form{ grid-template-columns: 1fr; }
  .field-full,
  .checkbox-field,
  .form-actions{ grid-column: auto; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  .hero-image{ transform: scale(1.03) !important; }
  .gallery-item{ animation: none; }
  .brand-intro::after{ animation: none; display: none; }
  .gallery-item:hover img,
  .highlight-card:hover .highlight-image img{ transform: none; }
}
