:root {
  --paper: #f5f0e8;
  --paper-deep: #ebe3d8;
  --white: #fffdf9;
  --ink: #28241f;
  --muted: #70685e;
  --taupe: #786e61;
  --taupe-dark: #5e564c;
  --line: rgba(40, 36, 31, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Commissioner", Arial, sans-serif;
  --header-height: 92px;
  --shell: min(100% - 80px, 1380px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  background: var(--taupe);
  color: var(--white);
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 253, 249, 0.66);
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1,
h2 {
  letter-spacing: -0.045em;
  line-height: 0.92;
}

h1 em,
h2 em {
  font-weight: 400;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 15px 25px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--taupe-dark);
  border-color: var(--taupe-dark);
}

.button-ghost {
  background: transparent;
}

.button-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.button-small {
  min-height: 42px;
  padding: 12px 17px;
  font-size: 9px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.arrow-link span {
  font-size: 16px;
  transition: transform 180ms ease;
}

.arrow-link:hover span {
  transform: translate(3px, -3px);
}

.arrow-link-light {
  color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 240, 232, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  width: var(--shell);
  height: 100%;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
}

.desktop-nav a,
.text-link {
  position: relative;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.desktop-nav a::after,
.text-link::after,
.footer-top-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.text-link:hover::after,
.footer-top-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-direction: column;
  font-family: var(--serif);
  line-height: 0.8;
}

.brand span {
  font-size: 26px;
  letter-spacing: -0.04em;
}

.brand small {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.header-actions {
  justify-content: flex-end;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
}

.hero-copy {
  display: flex;
  min-width: 0;
  justify-content: center;
  padding: clamp(72px, 9vw, 150px) clamp(40px, 7vw, 120px);
  flex-direction: column;
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 35px;
  font-size: clamp(67px, 6.3vw, 118px);
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 37px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.8;
}

.hero-buttons,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-notes {
  display: flex;
  margin-top: clamp(50px, 7vh, 90px);
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-notes span + span::before {
  display: inline-block;
  width: 24px;
  height: 1px;
  margin: 0 17px 3px;
  background: var(--line);
  content: "";
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: visible;
  background: #d5cbbf;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35, 30, 25, 0.08), transparent 28%);
  content: "";
  pointer-events: none;
}

.hero-inset {
  position: absolute;
  z-index: 2;
  bottom: -1px;
  left: clamp(-82px, -5vw, -48px);
  width: clamp(210px, 28vw, 420px);
  height: 57%;
  overflow: hidden;
  border: 7px solid var(--paper);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 24% 24% 0 0;
  background: var(--paper-deep);
}

.hero-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.hero-side-note {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 38px;
  margin: 0;
  color: var(--white);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* Ticker */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.ticker-track {
  display: flex;
  width: max-content;
  height: 62px;
  align-items: center;
  animation: ticker 36s linear infinite;
  will-change: transform;
}

.ticker-track span {
  padding-inline: 28px;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  white-space: nowrap;
}

.ticker-track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--taupe);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* About */
.section-dark {
  background: var(--taupe);
  color: var(--white);
}

.about {
  padding: clamp(100px, 11vw, 180px) 0;
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.about-collage {
  position: relative;
  min-height: 690px;
}

.about-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: var(--taupe-dark);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-main {
  top: 0;
  left: 0;
  width: 62%;
  height: 81%;
}

.about-photo-main img {
  object-position: center 44%;
}

.about-photo-detail {
  z-index: 2;
  top: 12%;
  right: 0;
  width: 43%;
  height: 45%;
  border: 6px solid var(--taupe);
}

.about-photo-rose {
  z-index: 3;
  right: 12%;
  bottom: 0;
  width: 38%;
  height: 40%;
  border: 6px solid var(--taupe);
}

.about-copy h2 {
  max-width: 620px;
  margin-bottom: 50px;
  font-size: clamp(58px, 5vw, 92px);
}

.about-text {
  max-width: 550px;
  margin-bottom: 42px;
  color: rgba(255, 253, 249, 0.76);
}

.about-text p {
  margin-bottom: 20px;
}

/* Shared headings */
.services,
.gallery,
.contact {
  padding: clamp(95px, 11vw, 170px) 0;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 60px;
  margin-bottom: clamp(60px, 7vw, 100px);
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.56fr);
}

.section-heading h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(60px, 6.2vw, 108px);
}

.section-heading > p {
  max-width: 500px;
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.8;
}

/* Services */
.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  min-height: 128px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
  grid-template-columns: 70px minmax(300px, 0.9fr) minmax(300px, 1.1fr);
}

.service-number {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.service-item h3 {
  margin: 0;
  font-size: clamp(28px, 2.3vw, 40px);
  line-height: 1.08;
}

.service-item p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

/* Gallery */
.section-soft {
  background: var(--paper-deep);
}

.gallery-heading {
  align-items: end;
}

.gallery-filters {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-button {
  min-height: 39px;
  border: 1px solid rgba(40, 36, 31, 0.22);
  border-radius: 999px;
  padding: 9px 15px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.gallery-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  background: #d6cbbf;
  cursor: zoom-in;
  isolation: isolate;
}

.gallery-card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 5px;
}

.gallery-card.card-small {
  height: clamp(270px, 25vw, 390px);
  grid-column: span 2;
}

.gallery-card.card-wide {
  height: clamp(340px, 32vw, 500px);
  grid-column: span 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-card::after {
  position: absolute;
  z-index: 1;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(25, 21, 18, 0.68));
  content: "";
  pointer-events: none;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.gallery-card figcaption span {
  font-family: var(--serif);
  font-size: clamp(25px, 2.1vw, 36px);
  line-height: 1;
}

.gallery-card figcaption small {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-align: right;
  text-transform: uppercase;
}

.gallery-grid.is-filtered .gallery-card:not([hidden]) {
  height: clamp(340px, 32vw, 500px);
  grid-column: span 3;
}

/* Lightbox */
.lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 78px clamp(86px, 9vw, 165px) 38px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(25, 22, 19, 0.95);
  cursor: zoom-out;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-counter {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 34px;
  display: flex;
  margin: 0;
  color: rgba(255, 253, 249, 0.7);
  font-size: 12px;
  font-weight: 500;
  gap: 7px;
  letter-spacing: 0.13em;
}

.lightbox-close {
  position: absolute;
  z-index: 3;
  top: 19px;
  right: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  padding: 0;
  place-items: center;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.lightbox-close:hover {
  background: var(--white);
  color: var(--ink);
}

.lightbox-close svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.lightbox-figure {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1240px);
  max-height: calc(100svh - 116px);
  min-height: 0;
  margin: 0 auto;
  grid-template-rows: minmax(0, 1fr) auto;
}

.lightbox-image-frame {
  display: grid;
  min-height: 0;
  align-items: center;
  justify-items: center;
  touch-action: pan-y;
}

.lightbox-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100svh - 172px);
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  user-select: none;
}

.lightbox-figure figcaption {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 16px;
  color: var(--white);
}

.lightbox-figure figcaption span {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
}

.lightbox-figure figcaption small {
  color: rgba(255, 253, 249, 0.58);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lightbox-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: flex;
  align-items: center;
  border: 0;
  padding: 16px 0;
  transform: translateY(-50%);
  background: transparent;
  color: rgba(255, 253, 249, 0.72);
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  gap: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.lightbox-nav:hover {
  color: var(--white);
}

.lightbox-nav svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.lightbox-prev {
  left: 25px;
}

.lightbox-next {
  right: 25px;
}

/* Brand statement */
.brand-statement {
  position: relative;
  display: grid;
  min-height: min(830px, 90svh);
  overflow: hidden;
  place-items: center;
  background: var(--taupe-dark) url("../images/testimonial-bg.webp") center 49% / cover no-repeat;
  color: var(--white);
  text-align: center;
  isolation: isolate;
}

.brand-statement::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(37, 31, 26, 0.57);
  content: "";
}

.brand-statement-inner {
  width: min(100% - 48px, 1030px);
  padding: 100px 0;
}

.brand-statement h2 {
  margin-bottom: 40px;
  font-size: clamp(58px, 6vw, 104px);
  line-height: 0.98;
}

.brand-statement-inner > p:last-child {
  margin: 0;
  color: rgba(255, 253, 249, 0.72);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Contact */
.contact-grid {
  display: grid;
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.contact-copy h2 {
  margin-bottom: 42px;
  font-size: clamp(56px, 4.4vw, 78px);
}

.contact-title-line {
  display: block;
  white-space: nowrap;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 40px;
  color: var(--muted);
}

.contact-handle {
  display: block;
  max-width: 580px;
  margin-bottom: 35px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.contact-handle span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-handle strong {
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.2;
}

.contact-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--paper-deep);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-photo figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 14px 18px;
  background: rgba(245, 240, 232, 0.9);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
  backdrop-filter: blur(8px);
}

/* Footer */
.site-footer {
  padding: 80px max(40px, calc((100vw - 1380px) / 2)) 24px;
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  display: grid;
  min-height: 190px;
  align-items: start;
  gap: 50px;
  grid-template-columns: 0.7fr 1fr 1fr;
}

.brand-footer {
  align-items: flex-start;
  color: var(--white);
}

.footer-inner > p {
  max-width: 330px;
  color: rgba(255, 253, 249, 0.58);
}

.footer-links {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-top-link {
  position: relative;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon-link {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 249, 0.3);
  border-radius: 50%;
  place-items: center;
  color: rgba(255, 253, 249, 0.78);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.social-icon-link:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.social-icon-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
}

.social-icon-link:last-child svg {
  fill: currentColor;
  stroke: none;
}

.mobile-contact-bar {
  display: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
  color: rgba(255, 253, 249, 0.42);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

/* Laptop */
@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 56px, 1100px);
  }

  .desktop-nav,
  .header-actions {
    gap: 20px;
  }

  .hero {
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  }

  .hero-copy {
    padding-right: 45px;
    padding-left: 45px;
  }

  .about-collage {
    min-height: 570px;
  }

  .service-item {
    grid-template-columns: 50px minmax(260px, 0.85fr) minmax(260px, 1.15fr);
  }
}

/* Tablet and mobile navigation */
@media (max-width: 900px) {
  :root {
    --header-height: 76px;
    --shell: min(100% - 40px, 820px);
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .header-inner .brand {
    align-items: flex-start;
  }

  .header-inner .brand span {
    font-size: 23px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    gap: 7px;
  }

  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--paper);
  }

  .mobile-menu-inner {
    display: flex;
    width: var(--shell);
    min-height: 100%;
    margin-inline: auto;
    padding: 30px 0 max(42px, env(safe-area-inset-bottom));
    flex-direction: column;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    border-bottom: 1px solid var(--line);
    padding: 19px 0;
    font-family: var(--serif);
    font-size: clamp(32px, 7vw, 48px);
    line-height: 1;
  }

  .mobile-menu-actions {
    display: grid;
    margin-top: auto;
    padding-top: 34px;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-menu-actions .button {
    width: 100%;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 700px;
    padding: 100px max(30px, calc((100vw - 820px) / 2)) 90px;
  }

  .hero-copy h1 {
    max-width: 670px;
    font-size: clamp(72px, 12vw, 106px);
  }

  .hero-lead {
    max-width: 610px;
  }

  .hero-visual {
    min-height: 780px;
    overflow: hidden;
  }

  .hero-inset {
    display: none;
  }

  .about-grid,
  .contact-grid {
    gap: 80px;
    grid-template-columns: 1fr;
  }

  .about-collage {
    min-height: 720px;
  }

  .about-copy {
    max-width: 670px;
  }

  .section-heading {
    align-items: start;
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    max-width: 610px;
  }

  .service-item {
    grid-template-columns: 45px minmax(0, 1fr);
  }

  .service-item p {
    padding-left: 75px;
    grid-column: 1 / -1;
  }

  .gallery-filters {
    justify-content: flex-start;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card.card-small,
  .gallery-card.card-wide,
  .gallery-grid.is-filtered .gallery-card:not([hidden]) {
    height: auto;
    aspect-ratio: 4 / 3;
    grid-column: span 1;
  }

  .lightbox {
    padding-right: 76px;
    padding-left: 76px;
  }

  .lightbox-nav span {
    display: none;
  }

  .brand-statement {
    min-height: 720px;
  }

  .contact-copy {
    max-width: 690px;
  }

  .contact-photo {
    order: -1;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-content: flex-start;
    grid-column: 1 / -1;
  }
}

/* Small tablets and phones */
@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .eyebrow {
    margin-bottom: 17px;
  }

  .button {
    min-height: 50px;
    padding-inline: 20px;
  }

  .hero-copy {
    min-height: auto;
    padding: 78px 20px 72px;
  }

  .hero-copy h1 {
    margin-bottom: 28px;
    font-size: clamp(59px, 18vw, 82px);
  }

  .hero-lead {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .hero-buttons,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-notes {
    margin-top: 44px;
    flex-direction: column;
    gap: 9px;
  }

  .hero-notes span + span::before {
    display: none;
  }

  .hero-visual {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-side-note {
    right: 10px;
    bottom: 20px;
  }

  .ticker-track {
    height: 54px;
  }

  .ticker-track span {
    padding-inline: 20px;
    font-size: 18px;
  }

  .about,
  .services,
  .gallery,
  .contact {
    padding: 90px 0;
  }

  .about-grid,
  .contact-grid {
    gap: 58px;
  }

  .about-collage {
    min-height: 470px;
  }

  .about-photo-main {
    width: 67%;
    height: 79%;
  }

  .about-photo-detail {
    top: 9%;
    width: 42%;
    height: 42%;
    border-width: 4px;
  }

  .about-photo-rose {
    right: 7%;
    width: 42%;
    height: 39%;
    border-width: 4px;
  }

  .about-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .contact-title-line {
    white-space: normal;
  }

  .about-copy h2 {
    margin-bottom: 34px;
  }

  .section-heading {
    margin-bottom: 55px;
  }

  .service-item {
    min-height: 0;
    gap: 15px;
    padding: 25px 0;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .service-item h3 {
    font-size: 29px;
  }

  .service-item p {
    padding-left: 49px;
  }

  .gallery-filters {
    margin-right: -16px;
    padding-right: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .gallery-grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .gallery-card.card-small,
  .gallery-card.card-wide,
  .gallery-grid.is-filtered .gallery-card:not([hidden]) {
    aspect-ratio: 4 / 3;
  }

  .gallery-card figcaption {
    right: 17px;
    bottom: 17px;
    left: 17px;
  }

  .gallery-card figcaption span {
    font-size: 28px;
  }

  .lightbox {
    align-items: center;
    padding: 72px 16px 84px;
  }

  .lightbox-counter {
    top: 23px;
    left: 20px;
  }

  .lightbox-close {
    top: 13px;
    right: 14px;
  }

  .lightbox-figure {
    width: 100%;
    max-height: calc(100svh - 150px);
  }

  .lightbox-image {
    max-height: calc(100svh - 226px);
  }

  .lightbox-figure figcaption {
    min-height: 64px;
    align-items: flex-start;
    padding: 15px 5px 0;
    flex-direction: column;
    gap: 5px;
  }

  .lightbox-figure figcaption span {
    font-size: 23px;
  }

  .lightbox-figure figcaption small {
    font-size: 11px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 15px;
    width: 48px;
    height: 48px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    padding: 0;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }

  .brand-statement {
    min-height: 660px;
  }

  .brand-statement-inner {
    width: calc(100% - 32px);
  }

  .brand-statement h2 {
    font-size: clamp(49px, 14vw, 68px);
  }

  .contact-photo {
    aspect-ratio: 4 / 5;
  }

  .contact-photo figcaption {
    font-size: 18px;
  }

  .contact-handle strong {
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding: 65px 16px 112px;
  }

  .footer-inner {
    min-height: 0;
    gap: 32px;
    padding-bottom: 60px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 24px;
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .mobile-menu-actions {
    grid-template-columns: 1fr;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 140;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(40, 36, 31, 0.16);
    border-radius: 3px;
    padding: 5px;
    transform: translateY(calc(100% + 28px));
    opacity: 0;
    background: rgba(245, 240, 232, 0.96);
    box-shadow: 0 14px 42px rgba(32, 27, 23, 0.2);
    pointer-events: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 260ms ease, opacity 220ms ease;
  }

  .mobile-contact-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .mobile-contact-bar,
  body.lightbox-open .mobile-contact-bar {
    transform: translateY(calc(100% + 28px));
    opacity: 0;
    pointer-events: none;
  }

  .mobile-contact-action {
    display: flex;
    min-width: 0;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    color: var(--ink);
    gap: 9px;
  }

  .mobile-contact-call {
    background: var(--ink);
    color: var(--white);
  }

  .mobile-contact-message {
    background: transparent;
  }

  .mobile-contact-action svg {
    width: 19px;
    min-width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
  }

  .mobile-contact-action span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.15;
  }

  .mobile-contact-action small {
    margin-bottom: 3px;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-contact-action strong {
    overflow: hidden;
    font-size: 12px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .brand span {
    font-size: 21px;
  }

  .hero-copy h1 {
    font-size: 57px;
  }

  .about-collage {
    min-height: 420px;
  }

  .gallery-card figcaption small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .ticker-track {
    animation: none;
  }
}
