/* ============================================================
   LOXLEY FOREST — GLOBAL DESIGN SYSTEM
   Version 3.0 · March 2026
   ============================================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Design Tokens --- */
:root {
  /* Primary */
  --forest-deep: #1a2e1a;
  --forest: #2d4a2d;
  --forest-light: #3d6b3d;

  /* Warm neutrals */
  --bark: #2c2219;
  --stone: #6b6357;
  --driftwood: #9c9486;

  /* Light backgrounds */
  --linen: #f7f3ed;
  --cream: #faf8f4;
  --parchment: #eee9e0;

  /* Accent */
  --gold: #c4a265;
  --gold-light: #d4b87a;
  --gold-dark: #a8894f;

  /* Utility */
  --white: #ffffff;
  --overlay-dark: rgba(26, 46, 26, 0.7);
  --overlay-light: rgba(247, 243, 237, 0.85);

  /* Spacing */
  --section-pad: 140px;
  --section-pad-mobile: 80px;
  --content-max: 1200px;
  --text-max: 720px;

  /* Transitions */
  --ease-natural: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 0.4s var(--ease-natural);
}

/* --- Typography Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- Text Selection --- */
::selection {
  background-color: #c4a265;
  color: #1a2e1a;
}
::-moz-selection {
  background-color: #c4a265;
  color: #1a2e1a;
}

/* --- Page Load Fade-In --- */
@keyframes pageLoadFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Base Styles --- */
html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--bark);
  background-color: var(--linen);
  overflow-x: hidden;
  animation: pageLoadFadeIn 0.6s ease both;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography Scale --- */
.headline-hero {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.headline-page {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--forest-deep);
}

.headline-section {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--forest-deep);
}

.subheadline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.4;
}

.body-large {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.7;
}

.body-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.7;
}

.eyebrow {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.caption {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--stone);
}

/* --- Layout Utilities --- */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.container--narrow {
  max-width: var(--text-max);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section--linen { background-color: var(--linen); }
.section--cream { background-color: var(--cream); }
.section--parchment { background-color: var(--parchment); }
.section--dark { background-color: var(--forest-deep); color: var(--linen); }

.text-center { text-align: center; }

.pull-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--forest-deep);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 0;
  transition: all var(--transition-smooth);
  cursor: pointer;
  text-align: center;
  line-height: 1;
}

.btn--primary {
  background-color: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}
.btn--primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 162, 101, 0.4);
}

.btn--secondary {
  background-color: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}
.btn--secondary:hover {
  background-color: var(--forest);
  color: var(--white);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Cards --- */
.card {
  background: var(--cream);
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.card:hover {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.card__body {
  padding: 32px;
}

/* --- Dividers --- */
.divider {
  width: 60px;
  height: 1px;
  background-color: var(--gold);
  border: none;
  margin: 32px auto;
}

/* --- Placeholder Images --- */
.placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(145deg, #2d4a2d 0%, #1a2e1a 40%, #3d6b3d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.placeholder-img::after {
  content: attr(data-label);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-natural), transform 0.8s var(--ease-natural);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.25s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.4s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.55s; }

/* hero-specific stagger */
.hero .reveal:nth-child(1) { transition-delay: 0.2s; }
.hero .reveal:nth-child(2) { transition-delay: 0.4s; }
.hero .reveal:nth-child(3) { transition-delay: 0.6s; }
.hero .reveal:nth-child(4) { transition-delay: 0.8s; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  width: 100%;
  height: 40px;
  background-color: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1001;
  overflow: hidden;
  transition: height 0.5s var(--ease-natural);
}

.announcement-bar__track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-bar__message {
  position: absolute;
  width: 100%;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 0 50px;
}

.announcement-bar__message.active {
  opacity: 1;
}

.announcement-bar__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--driftwood);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  z-index: 2;
  transition: color 0.3s ease;
}

.announcement-bar__close:hover {
  color: var(--gold);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 40px; /* below announcement bar */
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: all var(--transition-smooth);
}

.nav--no-bar {
  top: 0;
}

.nav--scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav--transparent {
  background-color: transparent;
}

.nav__wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition-smooth);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav--scrolled .nav__wordmark {
  color: var(--forest-deep);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--white);
  transition: color var(--transition-smooth);
  white-space: nowrap;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav--scrolled .nav__link {
  color: var(--bark);
}

.nav__link:hover {
  color: var(--gold);
}

.nav__cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.nav--scrolled .nav__hamburger span {
  background-color: var(--bark);
}

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background-color: var(--forest-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav__overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__overlay .nav__link {
  font-size: 18px;
  color: var(--linen);
  letter-spacing: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--forest-deep);
  padding: 100px 0 40px;
  color: var(--linen);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 40px;
}

.footer__heading {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer__wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--linen);
  margin-bottom: 20px;
}

.footer__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--driftwood);
}

.footer__link {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  color: var(--driftwood);
  padding: 4px 0;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--gold);
}

.footer__bottom {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 40px 40px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.5px;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  color: var(--stone);
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--gold);
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img,
.hero__media .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes kenBurnsZoom {
  from { transform: scale(1.0); }
  to { transform: scale(1.05); }
}

.hero__media img {
  animation: kenBurnsZoom 20s ease-in-out forwards;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 46, 26, 0.75) 0%,
    rgba(26, 46, 26, 0.35) 40%,
    rgba(26, 46, 26, 0.2) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 40px 14vh;
}

.hero__eyebrow {
  margin-bottom: 24px;
}

.hero__headline {
  margin-bottom: 28px;
}

.hero__sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto 44px;
}

.hero__buttons {
  justify-content: center;
}

.hero--half {
  height: 50vh;
  min-height: 400px;
}

/* ============================================================
   SPLIT LAYOUTS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split--55-45 {
  grid-template-columns: 55fr 45fr;
}

.split__image {
  position: relative;
  overflow: hidden;
}

.split__image .placeholder-img,
.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__image img {
  transition: transform 0.8s var(--ease-natural);
}
.split__image:hover img {
  transform: scale(1.03);
}

.pillar__image-wrap {
  overflow: hidden;
}
.pillar__image-wrap img {
  transition: transform 0.8s var(--ease-natural);
}
.pillar__image-wrap:hover img {
  transform: scale(1.04);
}

.gallery-item img {
  transition: transform 0.6s var(--ease-natural);
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}

.split__content .eyebrow {
  margin-bottom: 16px;
}

.split__content .headline-section {
  margin-bottom: 24px;
}

.split__content .body-large {
  margin-bottom: 36px;
  color: var(--stone);
}

/* ============================================================
   TESTIMONIAL CAROUSEL
   ============================================================ */
.testimonials {
  overflow: hidden;
  position: relative;
}

.testimonials__track {
  display: flex;
  transition: transform 0.6s var(--ease-natural);
}

.testimonial {
  flex: 0 0 calc(100% / 3);
  padding: 0 16px;
}

.testimonial__card {
  background: var(--cream);
  padding: 48px 40px;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-natural), box-shadow 0.4s var(--ease-natural);
}

.testimonial__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.testimonial__quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.7;
  color: var(--bark);
  flex: 1;
  margin-bottom: 28px;
}

.testimonial__author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--driftwood);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.testimonials__dot.active {
  background-color: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.proof-bar {
  background-color: var(--forest-deep);
  padding: 28px 0;
}

.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 40px;
}

.proof-bar__item {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--linen);
  white-space: nowrap;
}

.proof-bar__sep {
  color: var(--gold);
  font-size: 8px;
}

/* ============================================================
   FULL-WIDTH CTA SECTIONS
   ============================================================ */
.cta-block {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-block__bg {
  position: absolute;
  inset: 0;
}

.cta-block__bg .placeholder-img,
.cta-block__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-block__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 26, 0.65);
}

.cta-block__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 40px;
}

.cta-block__content .headline-section {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-block__content .subheadline {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9999;
  width: 0%;
  transition: none;
  pointer-events: none;
}

/* --- Drop Cap --- */
.story-paragraph--drop-cap::first-letter {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.8em;
  float: left;
  line-height: 0.8;
  margin-right: 12px;
  margin-top: 6px;
  color: var(--forest-deep);
  font-weight: 600;
}

/* --- Rating Badge --- */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 46, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(196, 162, 101, 0.3);
}

.rating-badge__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.rating-badge__text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Page Transition --- */
.page-transition {
  position: fixed;
  inset: 0;
  background-color: var(--linen);
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.5s var(--ease-natural);
  pointer-events: none;
}

.page-transition--hidden {
  opacity: 0;
}

/* --- Page Load --- */
.hero--loading .hero__overlay {
  opacity: 0;
}

.hero--loading .hero__content {
  opacity: 0;
  transform: translateY(20px);
}

.hero--loaded .hero__overlay {
  transition: opacity 1s ease 0.3s;
  opacity: 1;
}

.hero--loaded .hero__content {
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
  opacity: 1;
  transform: translateY(0);
}

/* --- Accessibility --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest-deep);
  color: var(--gold);
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 100000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 8px;
}

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --- 404 Page --- */
.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--linen);
  padding: 40px;
}

.not-found__content {
  max-width: 600px;
}

/* --- Lightbox Enhancements --- */
.lightbox__counter {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.lightbox__image-wrap {
  transition: opacity 0.3s ease;
}

.lightbox__image-wrap--transitioning {
  opacity: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1199px) {
  .nav__links {
    gap: 20px;
  }

  .nav__link {
    font-size: 13px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .split__content {
    padding: 60px 48px;
  }

  .testimonial {
    flex: 0 0 50%;
  }
}

/* Tablet landscape */
@media (max-width: 1024px) {
  .nav__links {
    gap: 16px;
  }

  .nav__link {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .split__content {
    padding: 56px 40px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --section-pad: 80px;
  }

  body {
    font-size: 17px;
  }

  .container,
  .container--narrow {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Typography scaling */
  .headline-hero {
    font-size: clamp(28px, 8vw, 42px);
  }

  .headline-page {
    font-size: clamp(24px, 6vw, 36px);
  }

  .headline-section {
    font-size: clamp(22px, 5.5vw, 32px);
  }

  .body-large {
    font-size: 17px;
  }

  .eyebrow {
    font-size: 10px;
  }

  /* Nav */
  .nav {
    height: 64px;
    padding: 0 20px;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__wordmark {
    font-size: 17px;
    letter-spacing: 2.5px;
  }

  /* Mobile overlay improvements */
  .nav__overlay {
    overflow-y: auto;
    padding: 100px 24px 60px;
  }

  .nav__overlay .nav__link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding: 0 20px 10vh;
  }

  .hero__sub {
    font-size: 15px;
    max-width: 90vw;
    margin-bottom: 36px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Buttons */
  .btn {
    font-size: 12px;
    padding: 16px 32px;
    width: 100%;
    max-width: 100%;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  /* Rating badge */
  .rating-badge {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90vw;
  }

  /* Split */
  .split,
  .split--55-45 {
    grid-template-columns: 1fr;
  }

  .split__image {
    min-height: 280px;
    aspect-ratio: 3 / 2;
  }

  .split__content {
    padding: 40px 20px;
  }

  /* Footer */
  .footer {
    padding: 80px 0 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 32px 20px 0;
  }

  /* Testimonials */
  .testimonial {
    flex: 0 0 100%;
  }

  .testimonial__card {
    padding: 36px 28px;
  }

  /* Proof bar */
  .proof-bar__inner {
    flex-direction: column;
    gap: 8px;
    padding: 0 20px;
  }

  .proof-bar__sep {
    display: none;
  }

  /* Announcement bar */
  .announcement-bar__message {
    font-size: 10px;
    letter-spacing: 1px;
    padding: 0 40px;
    overflow: hidden;
  }

  /* CTA blocks */
  .cta-block__content {
    padding: 60px 20px;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .headline-hero {
    font-size: clamp(24px, 7vw, 32px);
  }

  .headline-page {
    font-size: clamp(22px, 6vw, 30px);
  }

  .headline-section {
    font-size: clamp(20px, 5vw, 26px);
  }

  .hero__content {
    padding: 0 16px 10vh;
  }

  .hero__sub {
    font-size: 14px;
  }

  .container,
  .container--narrow {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav {
    padding: 0 16px;
  }

  .announcement-bar__message {
    font-size: 9px;
    letter-spacing: 0.5px;
    padding: 0 32px;
  }

  .btn {
    font-size: 11px;
    padding: 14px 24px;
  }

  .footer__grid {
    padding: 0 16px;
  }

  .footer__bottom {
    padding: 28px 16px 0;
  }

  .rating-badge {
    padding: 8px 14px;
  }

  .rating-badge__text {
    font-size: 10px;
  }
}
