/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --bg:        #0D0D0D;
  --bg-soft:   #141414;
  --bg-card:   #161616;
  --cream:     #E8E0D0;
  --cream-dim: #A89F92;
  --accent:    #8B1A2F;
  --accent-hi: #B02340;
  --text:      #F5F0E8;
  --gold:      #C9A84C;
  --line:      rgba(232, 224, 208, 0.10);
  --line-med:  rgba(232, 224, 208, 0.18);

  /* Typography */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  --section-pad: clamp(4rem, 10vw, 8rem);

  /* Transitions */
  --t-fast:  150ms ease;
  --t-base:  300ms ease;
  --t-slow:  600ms ease;
  --t-crawl: 1000ms ease;

  /* Easing */
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--ff-display);
  color: var(--cream);
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
}

.label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background: var(--accent);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  text-decoration: none;
  z-index: 10000;
  transition: top var(--t-fast);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: 0;
  cursor: pointer;
  transition: background var(--t-fast),
              border-color var(--t-fast),
              transform var(--t-fast);
}

.btn-primary:hover {
  background: var(--accent-hi);
  border-color: var(--accent-hi);
  transform: translateY(-1px);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid var(--line-med);
  border-radius: 0;
  cursor: pointer;
  transition: border-color var(--t-fast),
              transform var(--t-fast);
}

.btn-secondary:hover {
  border-color: var(--cream);
  transform: translateY(-1px);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--space-md);
  transition: background var(--t-base),
              backdrop-filter var(--t-base),
              border-color var(--t-base),
              padding var(--t-base);
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(26, 20, 16, 0.1);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#nav.nav--light .nav__logo {
  color: #1A1410;
}

#nav.nav--light .nav__menu a:not(.btn-secondary) {
  color: #1A1410;
}

#nav.nav--light .nav__burger span {
  background: #1A1410;
}

#nav.nav--light .btn-secondary {
  color: #8B1A2F;
  border-color: #8B1A2F;
}

#nav.nav--light .btn-secondary:hover {
  background: #8B1A2F;
  color: #FDFAF6;
  border-color: #8B1A2F;
}

.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-decoration: none;
  z-index: 1001;
}

.nav__logo img {
  display: block;
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
  transition: filter var(--t-base);
}

#nav.nav--light .nav__logo img {
  filter: none;
}

.nav__logo:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

/* Desktop nav links — hidden by default (mobile-first) */
.nav__menu {
  display: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav__menu a {
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #E8E0D0;
  text-decoration: none;
  transition: color var(--t-fast);
}

.nav__menu a:not(.btn-secondary):hover {
  color: var(--cream);
}

#nav:not(.nav--light) .btn-secondary {
  color: #E8E0D0;
  border-color: #E8E0D0;
}

.nav__menu a:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.nav__burger:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--cream);
  transition: opacity var(--t-fast),
              transform var(--t-fast);
}

.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav__menu.is-open {
  display: flex;
  position: fixed;
  inset: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  background: var(--bg);
  z-index: 1000;
}

.nav__menu.is-open a {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav__menu.is-open .btn-secondary {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  margin-top: var(--space-sm);
}

@media (min-width: 768px) {
  #nav {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .nav__menu {
    display: flex;
  }

  .nav__burger {
    display: none;
  }
}

/* ============================================================
   UTILITY
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#hero-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--t-slow);
}

.hero-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.hero-loader__logo {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--cream);
}

.hero-loader__text {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.hero-loader__track {
  width: 200px;
  height: 2px;
  background: rgba(232, 224, 208, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.hero-loader__fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* ============================================================
   HERO — scroll-driven canvas
   ============================================================ */
#hero {
  position: relative;
  height: 250vh;
}

@media (min-width: 768px) {
  #hero {
    height: 160vh;
  }
}


.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--cream-dim);
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity var(--t-base);
}

.hero__scroll-hint.is-hidden {
  opacity: 0;
}

/* ============================================================
   ANNOTATION CARDS
   ============================================================ */
.annotation-card {
  position: absolute;
  bottom: 8vh;
  left: 5vw;
  max-width: 340px;
  background: rgba(13, 13, 13, 0.72);
  border: 1px solid rgba(232, 224, 208, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-md) var(--space-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.45s var(--ease-expo),
              transform 0.45s var(--ease-expo);
}

.annotation-card.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.annotation-card__num {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.annotation-card__title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.4em;
}

.annotation-card__desc {
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.55;
}

.annotation-card--cta {
  max-width: 380px;
}

.annotation-card__btn {
  display: inline-flex;
  margin-top: var(--space-md);
}

@media (max-width: 767px) {
  .annotation-card {
    bottom: 2vh;
    left: 3vw;
    right: 3vw;
    max-width: none;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .annotation-card--cta {
    max-width: none;
  }

  .annotation-card__desc,
  .annotation-card__btn {
    display: none;
  }

  .annotation-card__num {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .annotation-card__title {
    font-size: 1rem;
    margin-bottom: 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes scroll-hint-bob {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
    50%       { opacity: 1;   transform: translateX(-50%) translateY(4px); }
  }

  .hero__scroll-hint {
    animation: scroll-hint-bob 2s ease-in-out 1.5s infinite;
  }

  .hero__scroll-hint.is-hidden {
    animation: none;
  }
}

/* ============================================================
   HERO FADE TRANSITION
   ============================================================ */
.hero__fade {
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, #0D0D0D, #F5F0EA);
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: #F5F0EA;
  padding: var(--section-pad) var(--space-md);
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about__text h2 {
  margin-top: var(--space-xs);
}

.about__text p {
  color: #1A1410;
  max-width: 520px;
}

#about h2 {
  color: #1A1410;
}

#about .label {
  color: #6B5D52;
}

.about__quote {
  border-left: 2px solid var(--accent);
  padding-left: var(--space-md);
  margin-top: var(--space-xs);
}

.about__quote p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 300;
  color: #4A3728;
  line-height: 1.3;
}

.about__quote cite {
  display: block;
  margin-top: var(--space-xs);
  font-family: var(--ff-body);
  font-style: normal;
  font-size: 0.875rem;
  color: #6B5D52;
}

.about__stars {
  color: #1A1410;
  font-size: 0.875rem;
  font-weight: 400;
}

.about__image {
  position: relative;
  overflow: visible;
  padding-bottom: 3rem;
}

.about__image-main {
  overflow: hidden;
}

.about__image-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  transition: transform var(--t-slow);
}

.about__image:hover .about__image-main img {
  transform: scale(1.03);
}

.about__image-accent {
  position: absolute;
  bottom: 0;
  left: -1.25rem;
  width: 55%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border: 4px solid #F5F0EA;
  outline: 1px solid rgba(26, 20, 16, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

@media (min-width: 768px) {
  #about {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .about__image-main img {
    height: 500px;
  }

  .about__image-accent {
    height: 220px;
    left: -1.5rem;
  }
}

@media (min-width: 1024px) {
  .about__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }

  .about__text {
    flex: 1;
  }

  .about__image {
    flex: 1;
  }

  .about__image-main img {
    height: 600px;
  }

  .about__image-accent {
    height: 260px;
    left: -2rem;
    width: 50%;
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  background: #FDFAF6;
  padding: var(--section-pad) var(--space-md);
}

#services h2 {
  color: #1A1410;
}

#services .label {
  color: #6B5D52;
}

.services__header {
  max-width: 1200px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.services__header h2 {
  margin-top: var(--space-xs);
}

.services__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.service-card {
  background: #F5F0EA;
  border: 1px solid rgba(26, 20, 16, 0.08);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: border-color var(--t-base);
}

.service-card:hover {
  border-color: #8B1A2F;
}

.service-card__icon {
  color: #1A1410;
  opacity: 0.8;
  flex-shrink: 0;
}

.service-card__name {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  color: #1A1410;
}

.service-card__desc {
  color: #6B5D52;
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (min-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  #services {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  background: #EDE8E0;
  padding: var(--section-pad) 0;
}

#gallery h2 {
  color: #1A1410;
}

#gallery .label {
  color: #6B5D52;
}

.gallery__header {
  max-width: 1200px;
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-md);
  text-align: center;
}

.gallery__header h2 {
  margin-top: var(--space-xs);
}

.gallery__strip {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--space-md) var(--space-sm);
  scrollbar-width: none;
  cursor: grab;
}

.gallery__strip.is-dragging {
  cursor: grabbing;
}

.gallery__strip::-webkit-scrollbar {
  display: none;
}

.gallery__strip:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

.gallery__item {
  position: relative;
  flex: 0 0 300px;
  height: 400px;
  scroll-snap-align: start;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--t-slow);
}

.gallery__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  background: linear-gradient(
    to top,
    rgba(26, 20, 16, 0.6) 0%,
    transparent 60%
  );
  color: #F5F0EA;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  opacity: 0;
  transition: opacity var(--t-base);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
}

@media (min-width: 768px) {
  .gallery__header {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .gallery__strip {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .gallery__item {
    flex: 0 0 380px;
    height: 480px;
  }
}

@media (min-width: 1024px) {
  .gallery__item {
    flex: 0 0 400px;
    height: 500px;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background: #F5F0EA;
  padding: var(--section-pad) var(--space-md);
}

#testimonials h2 {
  color: #1A1410;
}

#testimonials .label {
  color: #6B5D52;
}

.testimonials__header {
  max-width: 1200px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.testimonials__header h2 {
  margin-top: var(--space-xs);
}

.testimonials__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.review-card {
  background: #FDFAF6;
  border: 1px solid rgba(26, 20, 16, 0.08);
  border-left: 2px solid var(--accent);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
}

.review-card__quote::before {
  content: '\201C';
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: var(--ff-display);
  font-size: 5rem;
  line-height: 1;
  color: #8B1A2F;
  opacity: 0.2;
  pointer-events: none;
}

.review-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.review-card__quote {
  border: none;
  padding: 0;
}

.review-card__quote p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: #1A1410;
  line-height: 1.6;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: auto;
}

.review-card__name {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: #1A1410;
}

.review-card__tag {
  font-size: 0.75rem;
  font-weight: 400;
  color: #6B5D52;
  background: #F5F0EA;
  padding: 0.2em 0.75em;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  #testimonials {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .testimonials__grid {
    flex-direction: row;
    align-items: stretch;
  }

  .review-card {
    flex: 1;
  }
}

/* ============================================================
   BOOKING CTA
   ============================================================ */
#book {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #1A1410;
  padding: var(--section-pad) var(--space-md);
}

.book__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.book__content h2 {
  text-align: center;
}

.book__body {
  color: var(--cream-dim);
  text-align: center;
  line-height: 1.8;
}

.book__hours-badge {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.4em 1em;
  border: 1px solid currentColor;
  opacity: 0.9;
}

.book__hours-badge.is-open {
  color: #5CB87A;
}

.book__hours-badge.is-closed {
  color: var(--cream-dim);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #F5F0EA;
  border-top: 1px solid rgba(26, 20, 16, 0.1);
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #1A1410;
}

.footer__handle {
  color: #6B5D52;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.footer__tagline {
  color: #6B5D52;
  font-size: 0.875rem;
}

.footer__col--label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6B5D52;
}

.footer__col address {
  color: #6B5D52;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__links a {
  color: #6B5D52;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer__links a:hover {
  color: #8B1A2F;
}

.footer__links a:focus-visible {
  outline: 2px solid #8B1A2F;
  outline-offset: 3px;
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(26, 20, 16, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__bottom p {
  font-size: 0.75rem;
  color: #9A8C82;
}

.footer__bottom a {
  color: #9A8C82;
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer__bottom a:hover {
  color: #8B1A2F;
}

.footer__bottom a:focus-visible {
  outline: 2px solid #8B1A2F;
  outline-offset: 3px;
}

@media (min-width: 768px) {
  footer {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .footer__inner {
    flex-direction: row;
    gap: var(--space-2xl);
  }

  .footer__col--brand {
    flex: 1.5;
  }

  .footer__col {
    flex: 1;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================================
   CUSTOM CURSOR — desktop only
   ============================================================ */
@media (min-width: 769px) {
  body {
    cursor: none;
  }

  a, button {
    cursor: none;
  }

  .cursor-dot {
    position: fixed;
    top: -6px;
    left: -6px;
    width: 12px;
    height: 12px;
    background: var(--cream);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 300ms var(--ease-expo),
                height 300ms var(--ease-expo),
                top 300ms var(--ease-expo),
                left 300ms var(--ease-expo),
                background 300ms ease;
    will-change: transform;
  }

  .cursor-dot.is-hovering {
    width: 40px;
    height: 40px;
    top: -20px;
    left: -20px;
  }

  .cursor-ring {
    position: fixed;
    top: -18px;
    left: -18px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(139, 26, 47, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    will-change: transform;
  }
}

/* ============================================================
   FLOATING BOOK BUTTON
   ============================================================ */
.floating-book {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #8B1A2F;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid #8B1A2F;
  border-radius: 0;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity var(--t-base),
              transform var(--t-base),
              background var(--t-fast);
}

.floating-book.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-book:hover {
  background: var(--accent-hi);
  border-color: var(--accent-hi);
}

.floating-book:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

/* ============================================================
   REVEAL — scroll-triggered animations
   Classes toggled by IntersectionObserver in main.js
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 0;
    transition: opacity 0.8s var(--ease-expo),
                transform 0.8s var(--ease-expo);
  }

  .reveal {
    transform: translateY(40px);
  }

  .reveal-left {
    transform: translateX(-40px);
  }

  .reveal-right {
    transform: translateX(40px);
  }

  .reveal.visible,
  .reveal-left.visible,
  .reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
  }

  /* Stagger for grid children */
  .reveal:nth-child(2),
  .reveal-left:nth-child(2),
  .reveal-right:nth-child(2) { transition-delay: 100ms; }

  .reveal:nth-child(3),
  .reveal-left:nth-child(3),
  .reveal-right:nth-child(3) { transition-delay: 200ms; }

  .reveal:nth-child(4),
  .reveal-left:nth-child(4),
  .reveal-right:nth-child(4) { transition-delay: 300ms; }

  .reveal:nth-child(5),
  .reveal-left:nth-child(5),
  .reveal-right:nth-child(5) { transition-delay: 400ms; }

  .reveal:nth-child(6),
  .reveal-left:nth-child(6),
  .reveal-right:nth-child(6) { transition-delay: 500ms; }

  /* animate-on-scroll — JS compatibility alias */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-expo),
                transform 0.8s var(--ease-expo);
  }

  .animate-on-scroll.from-left {
    transform: translateX(-40px);
  }

  .animate-on-scroll.from-right {
    transform: translateX(40px);
  }

  .animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0);
  }

  /* Stagger for services/testimonials grid */
  .services__grid .animate-on-scroll:nth-child(2),
  .testimonials__grid .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }

  .services__grid .animate-on-scroll:nth-child(3),
  .testimonials__grid .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }

  .services__grid .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
  .services__grid .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
  .services__grid .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }
}
