:root {
  --ink: #171717;
  --muted: #68645d;
  --paper: #f7f7f4;
  --panel: #ffffff;
  --line: #d7d3c7;
  --gold: #c99a2c;
  --gold-dark: #9d741d;
  --olive: #596653;
  --rust: #8a4032;
  --electric: #e2c84c;
  --heat: #cc4937;
  --moss: #33483b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-variation-settings: "wdth" 96, "wght" 520;
  line-height: 1.5;
}

body::before {
  background-image:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.18), transparent 12%),
    radial-gradient(circle at 70% 38%, rgba(0, 0, 0, 0.08), transparent 10%);
  content: "";
  inset: 0;
  mix-blend-mode: multiply;
  opacity: 0.18;
  pointer-events: none;
  position: fixed;
  z-index: 100;
}

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

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

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

.site-header {
  align-items: center;
  background: rgba(247, 247, 244, 0.78);
  border-bottom: 1px solid rgba(23, 23, 23, 0.18);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand span {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-variation-settings: "opsz" 42, "wght" 700;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.93rem;
  font-weight: 750;
  font-variation-settings: "wdth" 108, "wght" 780;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  padding-block: 8px;
}

.site-nav a:hover,
.nav-locations summary:hover {
  border-color: var(--gold);
}

.nav-locations {
  position: relative;
}

.nav-locations summary {
  border-bottom: 2px solid transparent;
  cursor: pointer;
  list-style: none;
  padding-block: 8px;
}

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

.nav-locations summary::after {
  content: "+";
  display: inline-block;
  font-weight: 900;
  margin-left: 8px;
}

.nav-locations[open] summary::after {
  content: "-";
}

.nav-location-menu {
  background: rgba(247, 247, 244, 0.94);
  border: 1px solid rgba(23, 23, 23, 0.18);
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
  min-width: 250px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 40;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-location-menu a {
  border: 0;
  padding: 10px 12px;
}

.nav-location-menu a:hover {
  background: rgba(201, 154, 44, 0.16);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  display: none;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.menu-toggle svg,
.button svg,
.service-card svg,
.footer-links svg,
.floating-whatsapp svg {
  height: 20px;
  stroke-width: 2;
  width: 20px;
}

.hero {
  align-items: end;
  display: grid;
  min-height: min(680px, 74svh);
  overflow: hidden;
  padding: clamp(70px, 8vw, 110px) clamp(18px, 6vw, 88px) clamp(44px, 6vw, 64px);
  position: relative;
}

.hero::after {
  animation: heatShift 16s ease-in-out infinite alternate;
  background:
    radial-gradient(circle at 16% 70%, rgba(226, 200, 76, 0.32), transparent 28%),
    radial-gradient(circle at 72% 44%, rgba(138, 64, 50, 0.26), transparent 26%),
    linear-gradient(120deg, rgba(51, 72, 59, 0.18), transparent 58%);
  content: "";
  inset: 0;
  mix-blend-mode: color;
  opacity: 0.58;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero picture,
.hero picture img,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero picture img {
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.04);
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.48) 43%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 42%);
}

.hero-content {
  color: #fff;
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  font-variation-settings: "wdth" 122, "wght" 900;
  letter-spacing: 0.16em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.hero h1 {
  font-size: clamp(4rem, 11vw, 8rem);
  font-variation-settings: "opsz" 72, "wght" 760;
  max-width: 10ch;
}

.hero h1 span,
.section-heading em {
  color: #fff5c9;
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 360;
}

.section-heading em {
  color: var(--rust);
}

.hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin: 24px 0 0;
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  will-change: transform;
}

.button:hover {
  transform: translate3d(var(--magnet-x, 0px), var(--magnet-y, -1px), 0) scale(1.02);
}

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button-primary {
  background: var(--gold);
  color: #18130a;
  font-weight: 850;
}

.button-primary:hover {
  background: #d5a638;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.quick-strip {
  animation: heatShift 18s ease-in-out infinite alternate;
  background:
    linear-gradient(115deg, var(--ink), #25271e 35%, var(--moss) 62%, #231816),
    radial-gradient(circle at 80% 20%, rgba(226, 200, 76, 0.28), transparent 34%);
  background-size: 180% 180%;
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.quick-strip div {
  background: rgba(255, 255, 255, 0.045);
  display: grid;
  gap: 4px;
  padding: 24px clamp(18px, 4vw, 54px);
}

.quick-strip strong {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-strip span {
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 6vw, 88px);
}

.section-heading {
  margin-bottom: clamp(28px, 5vw, 56px);
  max-width: 780px;
}

.section-heading h2 {
  font-size: clamp(2.35rem, 7vw, 5.4rem);
  font-variation-settings: "opsz" 60, "wght" 620;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 18px 0 0;
  max-width: 600px;
}

.portfolio {
  background: #fff;
  overflow: hidden;
  position: relative;
}

.gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.16fr 0.84fr;
}

.gallery-item {
  background: #111;
  border: 1px solid var(--ink);
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.gallery-large {
  grid-row: span 2;
  min-height: 660px;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, filter 400ms ease;
  transform: translate3d(0, var(--card-parallax, 0px), 0) scale(1.03);
  width: 100%;
}

.gallery-item:hover img {
  filter: saturate(1.05) contrast(1.05);
  transform: translate3d(0, var(--card-parallax, 0px), 0) scale(1.07);
}

.gallery-item span {
  background: rgba(23, 23, 23, 0.82);
  bottom: 14px;
  color: #fff;
  font-weight: 850;
  left: 14px;
  padding: 10px 12px;
  position: absolute;
}

.about {
  background: var(--paper);
}

.local-links {
  background: #fff;
}

.local-link-grid,
.seo-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.local-link-grid,
.seo-grid {
  grid-template-columns: repeat(2, 1fr);
}

.local-link-card,
.seo-grid article,
.faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: clamp(22px, 4vw, 34px);
}

.local-link-card {
  display: grid;
  gap: 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.local-link-card:hover {
  border-color: var(--ink);
  box-shadow: 12px 12px 0 rgba(23, 23, 23, 0.08);
  transform: translateY(-2px);
}

.local-link-card span {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  font-variation-settings: "wdth" 122, "wght" 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.local-link-card strong,
.seo-grid h3 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 560;
  line-height: 1;
}

.local-link-card p,
.seo-grid p {
  color: var(--muted);
  margin: 0;
}

.local-hero picture img {
  filter: grayscale(0.82) contrast(1.04);
}

.seo-content {
  background: var(--paper);
}

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

.seo-grid article {
  min-height: 220px;
}

.seo-grid h3 {
  margin: 0 0 14px;
}

.faq-section {
  background: #fff;
}

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

.faq-list summary {
  cursor: pointer;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 620;
}

.faq-list p {
  color: var(--muted);
  margin: 0;
  max-width: 760px;
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:nth-child(2) {
  transform: translateY(28px);
}

.service-card:nth-child(3) {
  transform: translateY(-12px);
}

.service-card:nth-child(4) {
  transform: translateY(14px);
}

.service-card:hover {
  border-color: var(--ink);
  box-shadow: 12px 12px 0 rgba(23, 23, 23, 0.08);
}

.service-card:nth-child(2):hover {
  transform: translateY(24px);
}

.service-card:nth-child(3):hover {
  transform: translateY(-16px);
}

.service-card:nth-child(4):hover {
  transform: translateY(10px);
}

.service-card svg {
  color: var(--rust);
  height: 28px;
  width: 28px;
}

.service-card h3,
.steps h3 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0;
}

.service-card p,
.steps p {
  color: var(--muted);
  margin: 0;
}

.text-link {
  color: var(--gold-dark);
  font-weight: 850;
  margin-top: 8px;
}

.authority-section {
  background: var(--paper);
  padding-bottom: clamp(42px, 7vw, 86px);
  padding-top: clamp(42px, 7vw, 86px);
}

.authority-panel {
  align-items: end;
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.94), rgba(51, 72, 59, 0.94)),
    radial-gradient(circle at 80% 10%, rgba(226, 200, 76, 0.32), transparent 32%);
  color: #fff;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: 1fr 0.92fr;
  padding: clamp(28px, 5vw, 56px);
}

.authority-panel h2 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 6vw, 5rem);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  max-width: 760px;
}

.authority-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  margin: 20px 0 0;
  max-width: 650px;
}

.authority-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.authority-stats article {
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: 18px;
}

.authority-stats strong {
  color: #fff5c9;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 0.9;
}

.authority-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 760;
}

.instagram-section {
  background: #fff;
}

.instagram-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
}

.instagram-card {
  background: #111;
  border: 1px solid var(--ink);
  color: #fff;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.instagram-card:first-child {
  min-height: 520px;
}

.instagram-card img,
.instagram-card video {
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
  width: 100%;
}

.instagram-card:hover img,
.instagram-card:hover video {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.05);
}

.instagram-card span {
  background: rgba(23, 23, 23, 0.82);
  bottom: 14px;
  font-weight: 850;
  left: 14px;
  padding: 10px 12px;
  position: absolute;
}

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

.button-ink {
  background: var(--ink);
  color: #fff;
  font-weight: 850;
}

.button-ink:hover {
  background: #2a2a2a;
}

.social-hero picture img,
.lettering-hero picture img {
  filter: grayscale(0.65) contrast(1.04);
}

.social-link-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.social-link-card {
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
  min-height: 260px;
  padding: clamp(22px, 4vw, 34px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.social-link-card:hover {
  border-color: var(--ink);
  box-shadow: 12px 12px 0 rgba(23, 23, 23, 0.08);
  transform: translateY(-2px);
}

.social-link-card svg {
  color: var(--rust);
  height: 30px;
  width: 30px;
}

.social-link-card strong {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  font-weight: 560;
  line-height: 1;
}

.social-link-card span {
  color: var(--muted);
}

.process {
  background: #1e211c;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.process .section-heading h2 {
  max-width: 700px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.steps span {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0.18em;
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
}

.testimonial-band {
  animation: heatShift 20s ease-in-out infinite alternate-reverse;
  background:
    linear-gradient(135deg, var(--olive), #243229 42%, #7b392f 100%);
  background-size: 180% 180%;
  color: #fff;
  padding: clamp(54px, 8vw, 90px) clamp(18px, 12vw, 150px);
}

.testimonial-band blockquote {
  margin: 0;
  max-width: 980px;
}

.testimonial-band p {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0 0 22px;
}

.testimonial-band cite {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 800;
}

.booking {
  align-items: start;
  background: #fff;
  display: grid;
  gap: clamp(32px, 6vw, 90px);
  grid-template-columns: 0.92fr 1.08fr;
}

.booking-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.booking-form label {
  color: var(--muted);
  display: grid;
  font-size: 0.88rem;
  font-weight: 850;
  gap: 8px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  background: #fff;
  border: 1px solid #c9c4b8;
  border-radius: 0;
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.booking-form textarea {
  min-height: 132px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold-dark);
  outline: 3px solid rgba(201, 154, 44, 0.22);
  transform: translateX(3px);
}

.booking-form .button {
  margin-top: 6px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 30px clamp(18px, 6vw, 88px);
}

.site-footer div:first-child {
  display: grid;
  gap: 3px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a,
.floating-whatsapp {
  align-items: center;
  border-radius: 0;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.footer-links a {
  background: rgba(255, 255, 255, 0.1);
}

.floating-whatsapp {
  background: #25d366;
  bottom: 18px;
  box-shadow: var(--shadow);
  color: #071f10;
  position: fixed;
  right: 18px;
  z-index: 30;
}

.paper-cut {
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.paper-cut::before {
  background: transparent;
  border: 2px solid currentColor;
  content: "";
  display: block;
  height: 76px;
  transform: rotate(-7deg);
  width: 160px;
}

.paper-cut-one {
  color: rgba(138, 64, 50, 0.42);
  right: 7vw;
  top: 74px;
}

.paper-cut-two {
  bottom: 80px;
  color: rgba(226, 200, 76, 0.36);
  right: 8vw;
}

.section-heading,
.gallery,
.service-grid,
.steps,
.booking-form {
  position: relative;
  z-index: 1;
}

@keyframes heatShift {
  0% {
    background-position: 0% 48%;
  }
  100% {
    background-position: 100% 54%;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 0;
    left: 0;
    padding: 10px 18px 18px;
    position: absolute;
    right: 0;
    top: 72px;
    max-height: calc(100svh - 72px);
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .nav-locations {
    border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  }

  .nav-locations summary {
    padding: 14px 0;
  }

  .nav-location-menu {
    background: rgba(23, 23, 23, 0.04);
    border: 1px solid rgba(23, 23, 23, 0.1);
    box-shadow: none;
    gap: 0;
    margin-bottom: 12px;
    min-width: 0;
    padding: 6px 12px;
    position: static;
  }

  .nav-location-menu a {
    font-size: 0.96rem;
    padding: 9px 0;
  }

  .hero {
    min-height: 84svh;
  }

  .quick-strip,
  .local-link-grid,
  .seo-grid,
  .service-grid,
  .authority-panel,
  .authority-stats,
  .instagram-grid,
  .social-link-grid,
  .steps,
  .booking {
    grid-template-columns: 1fr;
  }

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

  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(2):hover,
  .service-card:nth-child(3):hover,
  .service-card:nth-child(4):hover {
    transform: none;
  }

  .gallery-large,
  .gallery-item,
  .instagram-card,
  .instagram-card:first-child {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 66px;
  }

  .site-nav {
    top: 66px;
    max-height: calc(100svh - 66px);
  }

  .brand span {
    font-size: 1.05rem;
  }

  .brand small {
    font-size: 0.6rem;
  }

  .hero {
    min-height: 82svh;
    padding-top: 96px;
  }

  .hero picture img {
    object-position: center top;
  }

  .hero picture img,
  .gallery-item img {
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.44) 60%, rgba(0, 0, 0, 0.18) 100%);
  }

  .hero h1 {
    font-size: clamp(3.25rem, 18vw, 5rem);
    max-width: 8ch;
  }

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

  .gallery-large,
  .gallery-item {
    min-height: 360px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  body::before,
  .paper-cut {
    display: none;
  }
}

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

  .hero picture img,
  .gallery-item img {
    transform: none !important;
  }
}

.ad-page {
  background: #0f0f0e;
}

.ad-header {
  align-items: center;
  background: rgba(247, 247, 244, 0.92);
  border-bottom: 1px solid rgba(23, 23, 23, 0.18);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 70px;
  padding: 12px clamp(18px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
}

.ad-header-cta {
  min-height: 42px;
  padding: 10px 14px;
}

.ad-hero {
  align-items: end;
  color: #fff;
  display: grid;
  min-height: min(760px, 86svh);
  overflow: hidden;
  padding: clamp(84px, 10vw, 130px) clamp(18px, 6vw, 88px) clamp(58px, 7vw, 82px);
  position: relative;
}

.ad-hero video,
.ad-hero-overlay {
  inset: 0;
  position: absolute;
}

.ad-hero video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ad-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 44%);
}

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

.ad-hero h1 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 10vw, 8.3rem);
  font-variation-settings: "opsz" 72, "wght" 760;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
  max-width: 10ch;
}

.ad-hero h1 span {
  color: #fff5c9;
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 360;
}

.ad-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 24px 0 0;
  max-width: 650px;
}

.ad-hero-actions,
.ad-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ad-proof-row span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 820;
  padding: 8px 10px;
}

.ad-strip {
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ad-strip div {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 8px;
  padding: clamp(22px, 4vw, 42px);
}

.ad-strip strong {
  color: var(--gold);
  letter-spacing: 0.16em;
}

.ad-strip span {
  color: rgba(255, 255, 255, 0.82);
}

.ad-gallery-section,
.ad-faq {
  background: #fff;
}

.ad-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.ad-gallery figure {
  background: #111;
  border: 1px solid var(--ink);
  margin: 0;
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.ad-gallery img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ad-gallery figcaption {
  background: rgba(23, 23, 23, 0.82);
  bottom: 12px;
  color: #fff;
  font-weight: 850;
  left: 12px;
  padding: 9px 11px;
  position: absolute;
}

.ad-split-proof {
  align-items: stretch;
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 0.78fr;
}

.ad-split-proof > div {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 6vw, 88px);
}

.ad-split-proof h2 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 6vw, 5rem);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.ad-split-proof p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 20px 0 0;
  max-width: 620px;
}

.ad-split-proof img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ad-booking {
  background: #fff;
}

.ad-sticky-cta {
  align-items: center;
  background: #25d366;
  bottom: 14px;
  box-shadow: var(--shadow);
  color: #071f10;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  left: 50%;
  min-height: 48px;
  opacity: 0;
  padding: 12px 18px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, calc(100% + 24px));
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 60;
}

.ad-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.ad-sticky-cta svg {
  height: 20px;
  width: 20px;
}

@media (max-width: 900px) {
  .ad-strip,
  .ad-gallery,
  .ad-split-proof {
    grid-template-columns: 1fr;
  }

  .ad-gallery figure {
    min-height: 360px;
  }

  .ad-split-proof img {
    max-height: 520px;
  }
}

@media (max-width: 560px) {
  .ad-header-cta {
    flex: 0 0 48px;
    font-size: 0;
    padding: 0;
    width: 48px;
  }

  .ad-header-cta svg {
    margin: 0;
  }

  .ad-hero {
    min-height: 82svh;
    padding-top: 92px;
    padding-bottom: 132px;
  }

  .ad-hero h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .ad-hero-actions .button {
    width: 100%;
  }

  .ad-proof-row {
    display: none;
  }
}
