:root {
  --ink: #0b0b0b;
  --paper: #f0eadd;
  --white: #f7f5ef;
  --line: rgba(11, 11, 11, 0.22);
  --line-light: rgba(255, 255, 255, 0.24);
  --muted: #a8a59d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
  padding: 0 3vw;
  color: var(--white);
  background: rgba(11, 11, 11, 0.94);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(14px);
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  height: 34px;
}

.logo-lockup img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.logo-lockup .logo-wordmark {
  height: 78%;
}

.logo-lockup .logo-flag {
  height: 100%;
  aspect-ratio: 1.12;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.main-nav {
  display: flex;
  gap: clamp(1.2rem, 3vw, 3rem);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.main-nav a,
.footer-links a {
  position: relative;
}

.main-nav a::after,
.footer-links a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 250ms ease;
}

.main-nav a:hover::after,
.footer-links a:hover::after {
  width: 100%;
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.8rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--line-light);
  transition: color 200ms ease, background 200ms ease;
}

.header-actions {
  position: relative;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.language-picker {
  position: relative;
}

.language-current {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 0.9rem;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  display: grid;
  width: 190px;
  padding: 0.45rem;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 180ms ease;
}

.language-picker.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu button {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
  font-size: 0.76rem;
}

.language-menu button:hover,
.language-menu button.active {
  color: var(--white);
  background: var(--ink);
}

.header-cta:hover {
  color: var(--ink);
  background: var(--white);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  padding-top: 80px;
  color: var(--white);
  background: var(--ink);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 4.5vw 5vw;
}

.eyebrow,
.section-index {
  margin: 0 0 3rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero h1,
.statement h2,
.work h2,
.services h2,
.process h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-size: clamp(4.25rem, 8.7vw, 9.8rem);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero h1 span,
.work h2 span,
.contact h2 span {
  font-family: Georgia, serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
}

.hero-intro {
  width: min(30rem, 80%);
  margin: 3rem 0 0;
  color: #c6c3bb;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  min-width: 215px;
  padding: 1.05rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 200ms ease, color 200ms ease, background 200ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

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

.text-link {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--line-light);
}

.hero-visual {
  position: relative;
  min-height: calc(100svh - 80px);
  overflow: hidden;
  background: #252525;
}

.hero-visual::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 60%, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.72) contrast(1.05);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-visual:hover img {
  transform: scale(1.025);
}

.hero-caption {
  position: absolute;
  z-index: 2;
  inset: auto 2rem 1.7rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  top: 2rem;
  right: 2rem;
  display: grid;
  place-items: center;
  width: 112px;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
  transform: rotate(9deg);
}

.hero-stamp span {
  position: absolute;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.hero-stamp strong {
  font-size: 1.5rem;
}

.marquee {
  overflow: hidden;
  padding: 1.35rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2rem;
  animation: scroll 28s linear infinite;
}

.marquee span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.section {
  padding: 8rem 4.5vw;
}

.statement {
  display: grid;
  grid-template-columns: 1fr 3fr;
  min-height: 80vh;
  align-items: start;
}

.statement-copy h2,
.services h2,
.faq h2 {
  font-size: clamp(3.7rem, 7vw, 8.2rem);
}

.statement-copy {
  grid-column: 2;
}

.statement h2 em,
.services h2 em,
.faq h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  text-transform: none;
}

.statement-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.statement-bottom p {
  max-width: 37rem;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.6;
}

.round-link {
  display: grid;
  place-items: center;
  width: 74px;
  aspect-ratio: 1;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 1.5rem;
  transition: transform 220ms ease;
}

.round-link:hover {
  transform: rotate(45deg);
}

.section-dark {
  padding: 8rem 4.5vw;
  color: var(--white);
  background: var(--ink);
}

.work-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: 5rem;
}

.section-index.light {
  color: #b8b5ad;
}

.work-heading p:last-child {
  max-width: 28rem;
  margin: 0 0 0.5rem;
  color: #aaa79f;
  line-height: 1.6;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 330px 370px;
  gap: 1rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: #222;
  border: 0;
  text-align: left;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter 400ms ease, transform 600ms ease;
}

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

.gallery-main {
  grid-row: 1 / 3;
}

.gallery-main img {
  object-position: center;
}

.gallery-tall {
  grid-row: 1 / 2;
}

.gallery-wide {
  grid-column: 2 / 4;
}

.gallery-wide img {
  object-position: center 40%;
}

.gallery-tag,
.gallery-open {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  padding: 0.55rem 0.7rem;
  color: var(--ink);
  background: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-tag { left: 1rem; }
.gallery-open { right: 1rem; }

.gallery-quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  color: var(--ink);
  background: var(--paper);
}

.gallery-quote p {
  margin: 0;
  font-size: clamp(2.1rem, 3.2vw, 3.8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.gallery-quote > span:last-child {
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-quote .logo-lockup img {
  filter: brightness(0);
}

.gallery-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-extra .gallery-card {
  height: 390px;
}

.work-cta {
  margin-top: 2rem;
}

.button-outline {
  color: var(--white);
  border-color: var(--line-light);
}

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

.services {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
}

.services-title {
  position: sticky;
  top: 130px;
  align-self: start;
}

.services-title > p:last-child {
  max-width: 30rem;
  margin: 3rem 0 0;
  line-height: 1.65;
}

.service-list {
  padding-top: 3rem;
}

.service-list article {
  display: grid;
  grid-template-columns: 45px 1fr 1fr auto;
  align-items: start;
  gap: 1.5rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  transition: padding 200ms ease;
}

.service-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.service-list article:hover {
  padding-left: 0.75rem;
}

.service-list span {
  font-size: 0.65rem;
  font-weight: 700;
}

.service-list h3,
.process h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.service-list p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.service-list b {
  font-size: 1.2rem;
}

.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  color: var(--white);
  background: var(--ink);
}

.process-image {
  position: relative;
  min-height: 820px;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.08);
}

.process-image span {
  position: absolute;
  inset: auto auto 2rem 2rem;
  padding: 0.7rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.process-copy {
  padding: 7rem 5vw;
}

.process-copy h2 {
  font-size: clamp(4rem, 6vw, 7rem);
}

.process ol {
  margin: 5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.process li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.2rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line-light);
}

.process li > span {
  padding-top: 0.4rem;
  color: var(--muted);
  font-size: 0.65rem;
}

.process li p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.reviews {
  background: var(--white);
}

.reviews-top {
  display: flex;
  justify-content: flex-end;
  align-items: start;
  gap: 2rem;
  margin-bottom: 3rem;
}

.reviews-top .section-index {
  margin-bottom: 0;
}

.google-rating {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.25rem 0.8rem;
  padding: 1rem 1.2rem;
  color: var(--white);
  background: var(--ink);
  transition: transform 200ms ease;
}

.google-rating:hover {
  transform: translateY(-3px);
}

.google-rating strong {
  font-size: 1.55rem;
  line-height: 1;
}

.google-rating .google-stars {
  color: #f4c542;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.google-rating > span:last-child {
  grid-column: 1 / 3;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-grid blockquote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  margin: 0;
  padding: 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.stars {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.review-grid blockquote > p {
  margin: 2rem 0;
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.35;
}

.review-grid footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-grid footer > span {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

.review-grid footer div {
  display: grid;
  gap: 0.2rem;
}

.review-grid footer small {
  color: #777;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
}

.accordion {
  padding-top: 2.5rem;
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 0;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 600;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 200ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 42rem;
  margin: -0.6rem 3rem 1.8rem 0;
  color: #575757;
  line-height: 1.6;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding: 8rem 4.5vw;
  color: var(--white);
  background: var(--ink);
}

.contact h2 {
  font-size: clamp(3.9rem, 6.5vw, 7.8rem);
}

.contact-intro > p:nth-of-type(2) {
  max-width: 28rem;
  margin: 3rem 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

.contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 5rem;
}

.contact-meta a {
  line-height: 1.5;
}

.contact-socials {
  display: grid;
  gap: 1.5rem;
}

.contact-meta small {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.booking-form {
  align-self: center;
  padding: 2.5rem;
  color: var(--ink);
  background: var(--paper);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.booking-form label {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 0.8rem 0 0.7rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  text-transform: none;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  border-bottom-color: var(--ink);
}

.booking-form textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
  color: var(--white);
  background: var(--ink);
}

.form-note {
  margin: 1rem 0 0;
  color: #696969;
  font-size: 0.68rem;
  line-height: 1.5;
}

.form-success {
  display: grid;
  gap: 0.25rem;
  margin-top: 1rem;
  padding: 1rem;
  color: var(--ink);
  background: #d8e2c4;
  font-size: 0.78rem;
}

.form-success[hidden] {
  display: none;
}

.map-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #d7d4cc;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.map-card {
  position: absolute;
  left: 4.5vw;
  bottom: 3rem;
  display: grid;
  gap: 0.8rem;
  min-width: min(360px, calc(100vw - 2.4rem));
  padding: 1.5rem;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.map-card small {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.map-card strong {
  font-size: 1.15rem;
  line-height: 1.45;
}

.map-card span {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 3rem;
  padding: 4rem 4.5vw;
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
}

.footer-brand {
  display: inline-flex;
}

.footer-brand .logo-lockup {
  height: clamp(48px, 6vw, 86px);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer-links {
  display: grid;
  justify-items: start;
  gap: 0.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer > small {
  color: var(--muted);
  font-size: 0.65rem;
}

.lightbox {
  position: fixed;
  width: min(92vw, 850px);
  padding: 0;
  color: var(--white);
  background: var(--ink);
  border: 0;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox p {
  margin: 0;
  padding: 1rem 1.2rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 50%;
  font-size: 1.6rem;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: fixed;
    inset: 80px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--ink);
    font-size: 1.5rem;
    transform: translateX(100%);
    transition: transform 350ms ease;
  }

  .menu-open .main-nav {
    transform: translateX(0);
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    position: absolute;
    right: 4.8rem;
  }

  .menu-toggle {
    display: grid;
    gap: 7px;
    justify-self: end;
    width: 40px;
    padding: 8px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--white);
    transition: transform 250ms ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

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

  .hero-copy {
    min-height: 75svh;
  }

  .hero-visual {
    min-height: 80svh;
  }

  .statement,
  .services,
  .faq {
    grid-template-columns: 1fr;
  }

  .statement-copy {
    grid-column: auto;
    margin-top: 4rem;
  }

  .services-title {
    position: static;
  }

  .process {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .process-image {
    min-height: 740px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-grid blockquote {
    min-height: 300px;
  }

  .contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .site-header {
    height: 66px;
    padding: 0 1.2rem;
  }

  .brand {
    max-width: 135px;
  }

  .brand .logo-lockup {
    height: 28px;
  }

  .main-nav {
    inset: 66px 0 0;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-copy {
    min-height: auto;
    padding: 6rem 1.2rem 4rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.6rem);
  }

  .eyebrow,
  .section-index {
    margin-bottom: 2rem;
  }

  .hero-intro {
    width: 100%;
    margin-top: 2rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 78svh;
  }

  .hero-stamp {
    width: 90px;
    top: 1rem;
    right: 1rem;
  }

  .hero-caption {
    inset: auto 1rem 1rem;
  }

  .section,
  .section-dark,
  .contact {
    padding: 5rem 1.2rem;
  }

  .statement {
    min-height: auto;
  }

  .statement-copy h2,
  .services h2,
  .faq h2 {
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  .statement-bottom {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .reviews-top {
    align-items: stretch;
    flex-direction: column;
  }

  .google-rating {
    align-self: flex-start;
  }

  .work-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .work h2 {
    font-size: clamp(4rem, 18vw, 6.2rem);
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 460px 290px 330px;
  }

  .gallery-main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .gallery-tall {
    grid-row: auto;
  }

  .gallery-wide {
    grid-column: 1 / 3;
  }

  .gallery-quote p {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .gallery-extra {
    grid-template-columns: 1fr;
  }

  .gallery-extra .gallery-card {
    height: 430px;
  }

  .services {
    gap: 3rem;
  }

  .service-list article {
    grid-template-columns: 35px 1fr auto;
  }

  .service-list article p {
    grid-column: 2 / 4;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .process-image {
    min-height: 95svh;
  }

  .process-copy {
    padding: 5rem 1.2rem;
  }

  .process-copy h2 {
    font-size: clamp(3.8rem, 16vw, 5.5rem);
  }

  .contact h2 {
    font-size: clamp(3.5rem, 15vw, 5.7rem);
  }

  .contact-meta,
  .field-row {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 1.3rem;
  }

  .map-section,
  .map-section iframe {
    height: 480px;
    min-height: 480px;
  }

  .map-card {
    left: 1.2rem;
    bottom: 1.2rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 4rem 1.2rem;
  }

  .footer-brand {
    max-width: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
