:root {
  --ink: #f5f2ea;
  --muted: #c5bfb4;
  --paper: #181818;
  --panel: #222222;
  --panel-soft: #1f1f1f;
  --line: #383838;
  --sage: #d2d2d2;
  --sage-dark: #d8a03c;
  --clay: #d8a03c;
  --brass: #d8a03c;
  --gold: #d8a03c;
  --charcoal: #1f1f1f;
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

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

.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;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(24, 24, 24, 0.94);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span {
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.site-header .brand-logo {
  width: 70px;
  height: 70px;
}

.site-header .brand span {
  font-size: clamp(1.16rem, 1.75vw, 1.42rem);
}

.footer-logo {
  width: 50px;
  height: 50px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.site-nav a[aria-current="page"] {
  background: rgba(216, 160, 60, 0.18);
  color: #fff;
}

.site-nav .nav-cta[aria-current="page"] {
  color: #181818;
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a:focus-visible,
.site-header.nav-active .site-nav a:hover,
.site-header.nav-active .site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.site-nav .nav-cta {
  background: var(--gold);
  color: #181818;
}

.site-header.scrolled .site-nav .nav-cta,
.site-header.nav-active .site-nav .nav-cta {
  background: var(--sage-dark);
  color: #181818;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 10px;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 120px clamp(18px, 4vw, 56px) 58px;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.58) 44%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 58%);
}

.hero-content {
  width: min(690px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.section-intro {
  max-width: 780px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button.primary {
  background: var(--brass);
  color: #1f1708;
  box-shadow: 0 12px 28px rgba(216, 160, 60, 0.24);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.button.outline {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(650px, 100%);
  margin: 38px 0 0;
}

.hero-stats div {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.hero-stats dt {
  font-size: 1.45rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #111111;
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 14px;
  background: #202020;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) 0;
}

.section[id] {
  scroll-margin-top: 92px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.feature-grid,
.package-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid article,
.package-card,
.timeline article,
.about-panel,
.booking-form,
.inquiry-form,
.testimonial-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-grid article {
  display: grid;
  align-content: start;
  min-height: 236px;
  padding: 26px;
}

.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #2d2d2d;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-grid p,
.package-summary,
.timeline p,
.about-copy p,
.about-panel li,
.booking-copy p,
.form-note,
.faq-list p,
.portfolio-card span {
  color: var(--muted);
}

.text-link {
  width: fit-content;
  margin-top: 12px;
  border-bottom: 2px solid var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.page-main {
  padding-top: 0;
}

.page-hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 48vh;
  display: grid;
  align-items: end;
  padding: clamp(112px, 13vw, 154px) max(18px, calc((100% - var(--max)) / 2)) 52px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero.compact-hero {
  min-height: 34vh;
}

.page-hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.46) 62%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(0deg, rgba(24, 24, 24, 1) 0%, rgba(24, 24, 24, 0.18) 62%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero-content h1 {
  margin: 0 0 18px;
}

.page-hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.seo-grid,
.service-detail-grid,
.link-grid {
  display: grid;
  gap: 18px;
}

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

.service-detail-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  align-items: start;
}

.content-panel,
.service-card,
.area-card,
.page-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.content-panel,
.service-card,
.area-card {
  padding: 26px;
}

.content-panel p,
.service-card p,
.area-card p,
.page-cta p,
.service-list li {
  color: var(--muted);
}

.content-panel p:last-child,
.service-card p:last-child,
.area-card p:last-child,
.page-cta p:last-child {
  margin-bottom: 0;
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: clamp(24px, 4vw, 34px);
  background: #202020;
}

.page-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.page-cta p {
  margin: 0;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.mini-gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--line);
}

.mini-gallery img:nth-child(2) {
  min-height: 180px;
}

.packages {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100% - var(--max)) / 2));
  padding-right: max(18px, calc((100% - var(--max)) / 2));
  background: #202020;
  border-block: 1px solid var(--line);
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 456px;
  padding: 28px;
}

.package-card.featured {
  border-color: rgba(216, 160, 60, 0.8);
  box-shadow: var(--shadow);
}

.popular-badge {
  position: static;
  width: fit-content;
  margin: 0;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--gold);
  color: #181818;
  font-size: 0.74rem;
  font-weight: 800;
}

.package-top {
  margin-bottom: 18px;
}

.package-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.package-name {
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 800;
}

.package-price {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.package-price span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.package-card ul,
.about-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.package-card li,
.about-panel li {
  position: relative;
  padding-left: 26px;
}

.package-card li::before,
.about-panel li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
}

.package-card .button {
  width: 100%;
  margin-top: auto;
}

.package-note {
  max-width: 880px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.addons {
  padding-top: 76px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.addon-grid article {
  min-height: 112px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.addon-grid span {
  color: var(--gold);
  font-weight: 800;
}

.addon-grid p {
  margin: 18px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.addon-grid small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

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

.portfolio-card {
  min-height: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  cursor: zoom-in;
}

.portfolio-card.feature {
  grid-column: span 3;
  grid-row: span 3;
}

.portfolio-card.wide {
  grid-column: span 3;
  grid-row: span 2;
}

.portfolio-card.tall {
  grid-column: span 2;
  grid-row: span 3;
}

.portfolio-preview-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 126px;
}

.portfolio-preview-grid .portfolio-card.feature {
  grid-column: span 3;
  grid-row: span 3;
}

.portfolio-preview-grid .portfolio-card.wide {
  grid-column: span 3;
  grid-row: span 2;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #111111;
}

.portfolio-card::after {
  content: none;
}

.portfolio-card:hover img {
  filter: brightness(1.04);
}

.portfolio-card:focus-visible {
  outline: 3px solid rgba(216, 160, 60, 0.68);
  outline-offset: 4px;
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 68px;
  align-items: center;
  gap: 16px;
  padding: 28px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(14px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  display: grid;
  place-items: center;
  min-width: 0;
  margin: 0;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.lightbox-close,
.lightbox-control {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-control:hover,
.lightbox-close:focus-visible,
.lightbox-control:focus-visible {
  background: var(--gold);
  color: #181818;
  outline: none;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
}

.lightbox-control {
  width: 58px;
  height: 58px;
  justify-self: center;
}

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

.process {
  padding-top: 10px;
}

.timeline article {
  min-height: 210px;
  padding: 28px;
}

.timeline span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #181818;
  font-weight: 800;
}

.testimonials {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100% - var(--max)) / 2));
  padding-right: max(18px, calc((100% - var(--max)) / 2));
  background: var(--charcoal);
  border-block: 1px solid var(--line);
  color: #fff;
}

.testimonials .eyebrow {
  color: var(--gold);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 14px;
}

.testimonial-card {
  min-height: 260px;
  display: grid;
  align-content: center;
  padding: clamp(28px, 6vw, 64px);
  background: #242424;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.quote {
  max-width: 920px;
  margin: 0 0 24px;
  font-size: clamp(1.35rem, 3vw, 2.45rem);
  line-height: 1.22;
}

.quote-author {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.testimonial-control {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.testimonial-control svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.about-copy p {
  max-width: 720px;
  font-size: 1.04rem;
}

.about-panel {
  padding: 28px;
}

.booking {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: start;
  padding-left: max(18px, calc((100% - var(--max)) / 2));
  padding-right: max(18px, calc((100% - var(--max)) / 2));
  background: #202020;
  border-block: 1px solid var(--line);
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.contact-links a,
.contact-links span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-bottom: 2px solid var(--brass);
  color: var(--ink);
  font-weight: 800;
}

.email-cta {
  margin-top: 22px;
}

.forms-stack {
  display: grid;
  gap: 18px;
}

.booking-form,
.inquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.form-card-heading {
  display: grid;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.form-card-heading .eyebrow,
.form-card-heading h3 {
  margin: 0;
}

.form-card-heading h3 {
  font-size: clamp(1.15rem, 2vw, 1.42rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

label,
legend {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #464646;
  border-radius: 8px;
  padding: 13px 14px;
  background: #181818;
  color: var(--ink);
}

input::placeholder,
textarea::placeholder {
  color: #8f887d;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
  outline: 3px solid rgba(216, 160, 60, 0.24);
}

.input-error {
  border-color: #a33e2b;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

fieldset legend {
  padding: 0 6px;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

fieldset input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.form-submit {
  width: fit-content;
}

.form-note {
  margin: -6px 0 0;
  font-size: 0.9rem;
}

.form-note a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.hidden-field {
  display: none;
}

.booking-result {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(216, 160, 60, 0.36);
  border-radius: var(--radius);
  padding: 18px;
  background: #2b261a;
}

.booking-result.is-error {
  border-color: rgba(190, 72, 48, 0.58);
  background: #2b1d1a;
}

.booking-result[hidden] {
  display: none;
}

.booking-result p {
  margin: 0;
}

.booking-result a {
  width: fit-content;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 800;
}

.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-top: 0;
  padding-bottom: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 56px);
  background: #181818;
  border-top: 1px solid var(--line);
}

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

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 104px 18px auto 18px;
    display: grid;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #222222;
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 50px;
    border-radius: 8px;
  }

  .site-nav .nav-cta {
    background: var(--sage-dark);
    color: #181818;
  }

  .section-heading,
  .about,
  .booking,
  .site-footer,
  .seo-grid,
  .service-detail-grid,
  .page-cta {
    grid-template-columns: 1fr;
  }

  .page-cta .button {
    width: fit-content;
  }

  .booking-copy {
    position: static;
  }

  .package-grid,
  .feature-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
  }

  .portfolio-card.feature,
  .portfolio-card.wide,
  .portfolio-card.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .testimonial-shell {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .testimonial-control {
    grid-row: 2;
    justify-self: start;
  }

  .testimonial-control[data-direction="next"] {
    justify-self: end;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .site-header .brand-logo {
    width: 56px;
    height: 56px;
  }

  .site-nav {
    top: 90px;
  }

  .hero {
    min-height: 82svh;
    padding: 110px 18px 34px;
  }

  .page-main {
    padding-top: 0;
  }

  .page-hero {
    min-height: 48svh;
    padding: 104px 18px 38px;
  }

  .page-hero.compact-hero {
    min-height: 34svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.5) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 62%);
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-actions,
  .contact-links {
    display: grid;
  }

  .button,
  .form-submit {
    width: 100%;
  }

  .page-cta .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
  }

  .hero-stats div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
  }

  .trust-strip,
  .form-grid,
  fieldset,
  .addon-grid {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 48px 0;
  }

  .packages,
  .testimonials,
  .booking {
    padding-left: 16px;
    padding-right: 16px;
  }

  .package-card {
    min-height: auto;
    padding: 24px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

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

  .mini-gallery img,
  .mini-gallery img:nth-child(2) {
    min-height: 220px;
  }

  .portfolio-card.feature,
  .portfolio-card.wide,
  .portfolio-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-card img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 12px;
    padding: 72px 16px 22px;
  }

  .lightbox-figure {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: center;
  }

  .lightbox-figure img {
    max-height: calc(100vh - 170px);
  }

  .lightbox-control {
    grid-row: 2;
    width: 52px;
    height: 52px;
  }

  .lightbox-control.prev {
    justify-self: start;
  }

  .lightbox-control.next {
    justify-self: end;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
  }

  .testimonial-card {
    min-height: 300px;
    padding: 24px;
  }

  .site-footer {
    text-align: left;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
