/* ==========================================================================
   D&L Excellence Services — Design system + components
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  --ivory: #F7F5F0;
  --ivory-deep: #EFEBE2;
  --white: #FFFFFF;
  --charcoal: #181715;
  --charcoal-soft: #2B2926;
  --text-2: #595651;
  --bronze: #A98B60;
  --bronze-deep: #8E7149;
  --brand-red: #C91828;   /* from the logo — used only as a small accent */
  --line: #E2DDD2;
  --line-soft: #EDE9E0;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max: 1280px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 2px;
  --header-h: 68px;
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--charcoal);
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 20px;
  z-index: 2000;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --- Layout ------------------------------------------------------------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}
.wrap--wide { max-width: 1600px; }

.section { padding: clamp(56px, 9vw, 116px) 0; }
.section--white { background: var(--white); }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* --- Type helpers ------------------------------------------------------- */
.eyebrow {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  margin-bottom: 18px;
}

.h-display { font-size: clamp(32px, 5vw, 54px); }
.h-section { font-size: clamp(28px, 4.2vw, 44px); }
.h-sub     { font-size: clamp(20px, 2.4vw, 26px); }

.lede {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--text-2);
  max-width: 58ch;
}

.muted { color: var(--text-2); }

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head p { margin-top: 16px; }
.section-head .h-section + p { margin-top: 14px; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}

.btn--dark { background: var(--charcoal); color: var(--white); }
.btn--dark:hover, .btn--dark:focus-visible { background: var(--bronze-deep); }

.btn--bronze { background: var(--bronze-deep); color: var(--white); }
.btn--bronze:hover, .btn--bronze:focus-visible { background: var(--charcoal); }

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--charcoal);
  color: var(--white);
}

/* On photography — always keeps a solid fill so text stays readable. */
.btn--light { background: var(--white); color: var(--charcoal); }
.btn--light:hover, .btn--light:focus-visible { background: var(--ivory-deep); }

.btn--sm { padding: 11px 20px; font-size: 11.5px; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 4px;
  transition: color .25s ease, gap .25s ease;
}
.link-arrow:hover { color: var(--bronze-deep); gap: 14px; }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 11px; line-height: 1; }
.brand__mark {
  height: 42px;
  width: auto;
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; }
.brand__name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.brand__sub {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 5px;
}

.footer-logo { width: 180px; height: auto; margin-bottom: 4px; }

.nav { display: none; }
.nav ul { display: flex; gap: 30px; align-items: center; }
.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 6px 0;
  position: relative;
  color: var(--charcoal);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current='page'] { color: var(--bronze-deep); }
.nav a[aria-current='page']::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-cta { display: none; }

/* Compact quote button shown only on small screens, sized to keep the
   header at its 68px height. */
.header-cta-sm {
  padding: 9px 14px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.hamburger {
  width: 42px; height: 42px;
  display: grid;
  place-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--charcoal);
  transition: transform .3s ease, opacity .2s ease;
}
.hamburger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Small screens: keep the wordmark on one line beside the mark. The mark
   already carries "D&L", so the text reads as the second half of the lockup. */
@media (max-width: 560px) {
  .brand { gap: 8px; }
  .brand__mark { height: 36px; }
  .brand__name {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .brand__sub { display: none; }
}
@media (max-width: 340px) {
  .brand__name { display: none; }
}

.mobile-nav {
  display: none;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  padding: 8px var(--gut) 24px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav .btn { margin-top: 20px; }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(76vh, 620px);
  display: flex;
  align-items: flex-end;
  background: var(--charcoal);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Keeps the island + cabinetry in frame when the crop tightens on mobile. */
  object-position: 62% center;
}
/* Two overlapping scrims: a vertical one to seat the copy, plus a horizontal
   one so text stays readable even where the photo is brightly lit. */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(12, 11, 10, 0.78) 0%,
      rgba(12, 11, 10, 0.52) 38%,
      rgba(12, 11, 10, 0.10) 72%,
      rgba(12, 11, 10, 0) 100%
    ),
    linear-gradient(
      to top,
      rgba(12, 11, 10, 0.80) 0%,
      rgba(12, 11, 10, 0.44) 38%,
      rgba(12, 11, 10, 0.10) 72%,
      rgba(12, 11, 10, 0) 100%
    );
}
.hero__inner {
  position: relative;
  width: 100%;
  padding-top: 120px;
  padding-bottom: clamp(40px, 6vw, 72px);
}
.hero .eyebrow { color: #EBD9B8; text-shadow: 0 1px 10px rgba(12, 11, 10, 0.5); }
.hero h1 { color: #FFFFFF; max-width: 19ch; text-wrap: balance; }
.hero__copy {
  margin-top: 20px;
  text-shadow: 0 1px 14px rgba(12, 11, 10, 0.45);
  max-width: 52ch;
  color: #EDE9E2;
  font-size: clamp(15px, 1.5vw, 17px);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* --- Trust strip -------------------------------------------------------- */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trust ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.trust li {
  padding: 20px 16px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-2);
  border-bottom: 1px solid var(--line-soft);
}
.trust li:nth-child(even) { border-left: 1px solid var(--line-soft); }
.trust li:nth-last-child(-n+2) { border-bottom: 0; }

/* --- Intro -------------------------------------------------------------- */
.intro-grid {
  display: grid;
  gap: 28px;
}
.intro-grid h2 { max-width: 16ch; }

/* --- Carousel ----------------------------------------------------------- */
.gallery-block + .gallery-block { margin-top: clamp(56px, 8vw, 96px); }

.carousel { position: relative; }

.carousel__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--ivory-deep);
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.carousel__slide.is-active { opacity: 1; pointer-events: auto; }
.carousel__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.carousel__tag {
  position: absolute;
  left: 14px; top: 14px;
  background: rgba(24, 23, 21, 0.82);
  color: #FFFFFF;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: var(--radius);
}

.carousel__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(12, 11, 10, 0.82), transparent);
  color: #FFFFFF;
}
.carousel__caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}
.carousel__caption span {
  font-size: 12px;
  color: #D9D3C8;
}

.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  display: grid;
  place-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 50%;
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1;
  transition: background-color .2s ease;
}
.carousel__nav:hover { background: #FFFFFF; }
.carousel__nav--prev { left: 12px; }
.carousel__nav--next { right: 12px; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.carousel__dots button {
  width: 28px; height: 3px;
  padding: 0;
  border: 0;
  background: var(--line);
  border-radius: 2px;
  transition: background-color .25s ease;
}
.carousel__dots button[aria-selected='true'] { background: var(--bronze-deep); }

.gallery-meta { margin-top: 26px; max-width: 58ch; }
.gallery-meta h3 {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.gallery-meta p { margin-top: 12px; color: var(--text-2); }
.gallery-meta .link-arrow { margin-top: 20px; }

/* --- Before & after ----------------------------------------------------- */
.ba-grid {
  display: grid;
  gap: 26px;
}
.ba-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ba-card img { width: 100%; height: auto; cursor: zoom-in; }
.ba-card__body { padding: 20px 22px 24px; }
.ba-card__body h3 { font-size: 20px; }
.ba-card__body p { margin-top: 10px; font-size: 14.5px; color: var(--text-2); }
.ba-card__label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  margin-bottom: 10px;
}

/* --- Services ----------------------------------------------------------- */
.svc-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc {
  background: var(--white);
  padding: 30px 26px 34px;
}
.svc h3 {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.svc p { margin-top: 12px; font-size: 14.5px; color: var(--text-2); }

.svc-secondary {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.svc-secondary span {
  font-size: 12.5px;
  color: var(--text-2);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 9px 16px;
  border-radius: 999px;
}

/* --- Why / reasons ------------------------------------------------------ */
.reasons { display: grid; gap: 0; }
.reason {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.reason:last-child { border-bottom: 1px solid var(--line); }
.reason h3 {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.reason p { margin-top: 10px; color: var(--text-2); font-size: 14.5px; max-width: 52ch; }

/* --- Split (about / trade) ---------------------------------------------- */
.split {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.split__body p + p { margin-top: 16px; }
.split__body .btn { margin-top: 28px; }

/* --- Trade points ------------------------------------------------------- */
.points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin-top: 28px;
}
.points li {
  font-size: 14px;
  padding: 13px 0 13px 22px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--charcoal);
}
.points li::before {
  content: '';
  position: absolute;
  left: 0; top: 21px;
  width: 9px; height: 1.5px;
  background: var(--bronze);
}

.note {
  margin-top: 26px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 2px solid var(--bronze);
  font-size: 13.5px;
  color: var(--text-2);
  border-radius: var(--radius);
}

/* --- Portfolio grid ----------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}
.filters button {
  padding: 10px 18px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-2);
  transition: all .22s ease;
}
.filters button:hover { border-color: var(--charcoal); color: var(--charcoal); }
.filters button[aria-pressed='true'] {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.work-grid {
  display: grid;
  gap: 24px;
}

/* Masonry variant (portfolio page): CSS columns so mixed portrait/landscape
   photos stack without leaving dead space between rows. */
.work-grid--masonry {
  display: block;
  columns: 1;
  column-gap: 24px;
}
.work-grid--masonry .work-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 30px;
}
.work-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.work-card__media {
  overflow: hidden;
  background: var(--ivory-deep);
  border-radius: var(--radius);
}
.work-card__media img {
  width: 100%;
  height: auto;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.work-card:hover .work-card__media img,
.work-card:focus-visible .work-card__media img { transform: scale(1.035); }

.work-card__meta { display: block; padding-top: 14px; }
.work-card__meta h3 { font-size: 19px; line-height: 1.25; }
.work-card__count {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-2);
  padding-top: 7px;
}
.work-card.is-hidden { display: none; }

.pill-status {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  border: 1px solid var(--line);
  padding: 4px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
}

/* --- Lightbox ----------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11, 10, 9, 0.95);
  display: none;
  flex-direction: column;
}
.lightbox.is-open { display: flex; }
body.no-scroll { overflow: hidden; }

.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: #EFEBE2;
  flex-shrink: 0;
}
.lightbox__title {
  font-family: var(--serif);
  font-size: 17px;
  color: #FFFFFF;
}
.lightbox__count { font-size: 12.5px; color: #BDB6A9; }

.lightbox__close {
  width: 40px; height: 40px;
  display: grid;
  place-content: center;
  background: transparent;
  border: 1px solid rgba(239, 235, 226, 0.35);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1;
}
.lightbox__close:hover { background: rgba(255,255,255,0.12); }

.lightbox__stage {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
  padding: 0 12px 12px;
  min-height: 0;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  display: grid;
  place-content: center;
  background: rgba(255,255,255,0.12);
  border: 0;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 20px;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.24); }
.lightbox__nav--prev { left: 10px; }
.lightbox__nav--next { right: 10px; }

.lightbox__caption {
  padding: 12px 20px 22px;
  color: #C9C2B5;
  font-size: 13.5px;
  text-align: center;
  max-width: 70ch;
  margin: 0 auto;
  flex-shrink: 0;
}

/* --- Forms -------------------------------------------------------------- */
.quote-layout { display: grid; gap: clamp(34px, 5vw, 60px); }

.form-grid { display: grid; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
  transition: border-color .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(169, 139, 96, 0.16);
}
.field textarea { resize: vertical; min-height: 118px; }
.field--full { grid-column: 1 / -1; }

.file-drop {
  border: 1px dashed var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color .2s ease;
}
.file-drop:hover { border-color: var(--bronze); }
.file-names { font-size: 12.5px; color: var(--text-2); margin-top: 8px; }

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}
.form-note { font-size: 12.5px; color: var(--text-2); }
.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: #EFF3EC; border: 1px solid #C9D6BF; color: #34452B; }
.form-status--info { background: var(--white); border: 1px solid var(--line); color: var(--charcoal); }

/* --- Contact rail ------------------------------------------------------- */
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.contact-row + .contact-row { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.contact-row dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 6px;
}
.contact-row dd { margin: 0; font-size: 16px; }
.contact-row dd a:hover { color: var(--bronze-deep); }
.contact-row .big {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.01em;
}
.contact-actions { display: grid; gap: 10px; margin-top: 26px; }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--ivory-deep);
  border-top: 1px solid var(--line);
  padding: clamp(46px, 6vw, 72px) 0 0;
}
.footer-grid {
  display: grid;
  gap: 34px;
  padding-bottom: 44px;
}
.footer-brand .brand__name { font-size: 18px; }
.footer-brand p { margin-top: 14px; font-size: 14px; color: var(--text-2); max-width: 34ch; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 16px;
}
.footer-col li + li { margin-top: 11px; }
.footer-col a, .footer-col li { font-size: 14.5px; color: var(--charcoal); }
.footer-col a:hover { color: var(--bronze-deep); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-2);
}

/* --- Mobile sticky CTA -------------------------------------------------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8px;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  background: rgba(247, 245, 240, 0.97);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.mobile-cta .btn { padding: 12px 14px; font-size: 11.5px; }
body.has-mobile-cta { padding-bottom: 68px; }

/* --- Page hero (interior pages) ----------------------------------------- */
.page-head {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: clamp(44px, 6vw, 84px) 0;
}
.page-head h1 { max-width: 16ch; }
.page-head p { margin-top: 18px; }

/* --- Reveal animation --------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* --- Breakpoints -------------------------------------------------------- */
@media (min-width: 600px) {
  .trust ul { grid-template-columns: repeat(4, 1fr); }
  .trust li { border-bottom: 0; border-left: 1px solid var(--line-soft); }
  .trust li:first-child { border-left: 0; }
  .trust li:nth-child(even) { border-left: 1px solid var(--line-soft); }

  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-grid--masonry { columns: 2; }
  .ba-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .carousel__viewport { aspect-ratio: 16 / 10; }
}

@media (min-width: 900px) {
  :root { --header-h: 78px; }

  .nav { display: block; }
  .brand__mark { height: 50px; }
  .brand__name { font-size: 19px; }
  .header-cta { display: inline-flex; }
  .header-cta-sm { display: none; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
  .mobile-cta { display: none; }
  body.has-mobile-cta { padding-bottom: 0; }

  .hero { min-height: min(84vh, 760px); }
  .hero__media img { object-position: center; }
  .hero__inner { padding-top: 180px; }

  .intro-grid { grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }

  .svc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reasons { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 48px; }
  .reason:nth-child(2) { border-top: 1px solid var(--line); }

  .work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
  .work-grid--masonry { columns: 3; column-gap: 28px; }
  .ba-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .quote-layout { grid-template-columns: 1.25fr 0.75fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }

  .carousel__viewport { aspect-ratio: 16 / 9; }
  .lightbox__bar { padding: 18px 28px; }
  .lightbox__nav--prev { left: 24px; }
  .lightbox__nav--next { right: 24px; }
}

@media (min-width: 1200px) {
  .carousel__nav--prev { left: 20px; }
  .carousel__nav--next { right: 20px; }
}

/* --- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --- Print -------------------------------------------------------------- */
@media print {
  .site-header, .mobile-cta, .lightbox, .carousel__nav { display: none !important; }
  body { background: #fff; }
}
