/* ================================================
   THE GILDED EDGE
   Mobile-first stylesheet
   Palette: Black · Champagne Gold · Charcoal · Linen
   ================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--linen);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
}

/* --- DESIGN TOKENS ------------------------------ */
:root {
  /* Colors */
  --black:          #0C0C0C;
  --charcoal:       #181818;
  --charcoal-mid:   #222222;
  --charcoal-light: #2E2E2E;
  --brass:          #C4A870;
  --brass-light:    #D8BF90;
  --brass-dim:      rgba(196, 168, 112, 0.4);

  /* Metallic gold gradient — deep shadow → antique gold → champagne highlight → antique gold → shadow */
  --gold-metallic: linear-gradient(
    135deg,
    #2C1800 0%,
    #6A4C20 18%,
    #C4A870 35%,
    #EDD8A8 50%,
    #C4A870 65%,
    #6A4C20 82%,
    #2C1800 100%
  );
  --linen:          #F2EDE4;
  --linen-dark:     #E2DAD0;
  --linen-mid:      #B8B0A6;
  --linen-faint:    rgba(242, 237, 228, 0.08);

  /* Type */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Josefin Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --nav-h:    60px;
  --max-w:    1100px;
  --pad-h:    1.25rem;
  --section-v: 5rem;
}

/* --- TYPOGRAPHY --------------------------------- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.75rem, 11vw, 5.5rem); }
h2 { font-size: clamp(2rem,    6vw,  3rem);   }
h3 { font-size: clamp(1.1rem,  3vw,  1.35rem);}

/* --- UTILITY ------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

/* --- BUTTONS ------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn--brass {
  background: var(--brass);
  color: var(--black);
  border-color: var(--brass);
}
.btn--brass:hover {
  background: var(--brass-light);
  border-color: var(--brass-light);
}

.btn--outline {
  background: transparent;
  color: var(--linen);
  border-color: var(--brass);
}
.btn--outline:hover {
  background: var(--brass);
  color: var(--black);
}

.btn--dark {
  background: var(--black);
  color: var(--linen);
  border-color: var(--black);
}
.btn--dark:hover {
  background: var(--charcoal-mid);
  border-color: var(--charcoal-mid);
}

.btn--sm {
  font-size: 0.65rem;
  padding: 0.6rem 1.25rem;
}

/* --- SECTION SHARED ----------------------------- */
.section {
  padding: var(--section-v) var(--pad-h);
}

.section--light   { background: var(--linen);       color: var(--black);   }
.section--dark    { background: var(--charcoal);     color: var(--linen);   }
.section--linen   { background: var(--linen-dark);   color: var(--black);   }
.section--charcoal{ background: var(--charcoal-mid); color: var(--linen);   }

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__accent {
  width: 36px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto 1.25rem;
}

.section__accent--left {
  margin-left: 0;
}

.section__header--light h2 { color: var(--linen); }
.section__header--light .section__sub { color: var(--linen-mid); }

.section__sub {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-top: 0.75rem;
}

.section--light   .section__sub { color: #555; }
.section--linen   .section__sub { color: #555; }

.section__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 300;
  color: var(--brass);
  margin-top: 0.5rem;
}

/* --- HERO LOAD ANIMATION ----------------------- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.hero__mark,
.hero__the,
.hero__name,
.hero__divider,
.hero__studio,
.hero__content .btn {
  opacity: 0;
  animation: heroFadeUp 0.9s ease forwards;
}

.hero__mark         { animation-delay: 0.1s; }
.hero__the          { animation-delay: 0.5s; }
.hero__name         { animation-delay: 0.75s; }
.hero__divider      { animation-delay: 1.05s; }
.hero__studio       { animation-delay: 1.25s; }
.hero__content .btn { animation-delay: 1.5s;  }

/* Scroll indicator fades in separately — no transform so centering isn't disturbed */
@keyframes heroFadeScroll {
  from { opacity: 0; }
  to   { opacity: 0.45; }
}

.hero__scroll {
  opacity: 0;
  animation: heroFadeScroll 0.9s ease 1.8s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero__mark,
  .hero__the,
  .hero__name,
  .hero__divider,
  .hero__studio,
  .hero__content .btn {
    opacity: 1;
    animation: none;
  }
  .hero__scroll {
    opacity: 0.45;
    animation: none;
  }
}

/* --- SCROLL ANIMATIONS ------------------------- */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: none;
}


/* ================================================
   NAV
   ================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav.scrolled {
  background: rgba(12, 12, 12, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 168, 112, 0.18);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 var(--pad-h);
}

/* Logo */
.nav__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  line-height: 1;
}

.nav__mark {
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav__logo-the {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.65rem;
  color: var(--linen-dark);
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--linen);
  line-height: 1;
}

.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.45rem;
  font-weight: 200;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 2px;
}

/* Right side */
.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 28px;
  height: 28px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--linen);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav dropdown */
.nav__menu {
  display: none;
  flex-direction: column;
  background: rgba(12, 12, 12, 0.98);
  border-top: 1px solid var(--linen-faint);
  padding: 0.5rem 0;
}

.nav__menu.open {
  display: flex;
}

.nav__menu a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.65);
  padding: 1rem var(--pad-h);
  border-bottom: 1px solid var(--linen-faint);
  transition: color 0.2s;
}

.nav__menu a:last-child {
  border-bottom: none;
}

.nav__menu a:hover,
.nav__menu .nav__menu-book {
  color: var(--brass);
}


/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}


/* Wood grain texture */
.hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.50;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__texture svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Geometric diamond accent */
.hero__diamond {
  position: absolute;
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  border: 1.5px solid rgba(196, 168, 112, 0.25);
  transform: rotate(45deg);
  pointer-events: none;
}

/* Vignette overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem var(--pad-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero__mark {
  opacity: 0.9;
}

/* Brand kit lockup */
.hero__lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero__the {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 4vw, 1.67rem);
  letter-spacing: 0.12em;
  color: var(--linen-dark);
  margin-bottom: 0.1em;
}

.hero__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 10vw, 5.5rem);
  letter-spacing: 0.16em;
  color: var(--linen);
  line-height: 1;
}

.hero__divider {
  display: flex;
  align-items: center;
  gap: 0;
  width: min(280px, 70vw);
  margin: 0.85rem 0;
}

.hero__divider span:not(.hero__dot) {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C4A870 30%, #EDD8A8 50%, #C4A870 70%, transparent);
}

.hero__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #EDD8A8, #C4A870 50%, #4A3000);
  flex: 0 0 5px;
}

.hero__content .btn {
  font-size: 0.6rem;
  padding: 0.7rem 1.6rem;
}

.hero__studio {
  font-family: var(--font-sans);
  font-size: clamp(0.6rem, 2vw, 0.75rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--linen);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.45;
  pointer-events: none;
}

.hero__scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
}

.hero__scroll-line {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--brass);
  border-bottom: 1.5px solid var(--brass);
  transform: rotate(45deg);
  animation: scrollPulse 2.2s ease-in-out infinite;
  margin-top: 4px;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: rotate(45deg) translateY(-2px); }
  50%       { opacity: 1;   transform: rotate(45deg) translateY(2px); }
}


/* ================================================
   BAND
   ================================================ */
.band {
  background: var(--brass);
  color: var(--black);
  padding: 0.85rem var(--pad-h);
  overflow: hidden;
}

.band__track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.band__sep {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: rgba(12, 12, 12, 0.3);
  flex-shrink: 0;
}


/* ================================================
   SERVICES
   ================================================ */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.service__card {
  padding: 2rem 1.5rem;
  border-left: 2px solid transparent;
  transition: border-left-color 0.3s;
}

.service__card:last-child {
  border-bottom: none;
}

.service__card:hover {
  border-left-color: var(--brass);
}

/* Accordion toggle button */
.service__toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  color: inherit;
  margin-bottom: 0.5rem;
}

.service__toggle h3 {
  margin: 0;
  color: var(--black);
  transition: color 0.2s;
  font-weight: 600;
  font-size: clamp(1.2rem, 4.5vw, 1.45rem);
  letter-spacing: 0.02em;
}

.service__toggle:hover h3 {
  color: var(--charcoal-mid);
}

/* Chevron indicator */
.service__chevron {
  display: inline-block;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--brass);
  border-bottom: 1.5px solid var(--brass);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -3px;
}

.service__card.is-open .service__chevron {
  transform: rotate(-135deg);
  margin-top: 3px;
}

/* Card description (always visible) */
.service__desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: #3a3a3a;
  line-height: 1.75;
}

/* Collapsible menu */
.service__menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.service__card.is-open .service__menu {
  max-height: 1400px;
}

.service__list {
  list-style: none;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--linen-dark);
}

.service__item {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.service__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service__item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.2rem;
}

.service__item-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
}

.service__item-price {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--brass);
  white-space: nowrap;
}

.service__item-desc {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.55;
}

.services__cta {
  text-align: center;
  margin-top: 3rem;
}


/* ================================================
   GALLERY
   ================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.gallery__item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__item.gallery--revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .gallery__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.gallery__item img,
.gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}


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

/* Caption overlay */
.gallery__caption {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  text-align: center;
  gap: 0.5rem;
}

.gallery__item:hover .gallery__caption,
.gallery__item.caption-open .gallery__caption {
  opacity: 1;
}

.gallery__caption-text {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--linen);
  line-height: 1.7;
}

.gallery__caption-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--brass);
  letter-spacing: 0.06em;
}

/* Subtle brass dot marks video items */
.gallery__item--video::after {
  content: '';
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(196, 168, 112, 0.85);
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery__item--video:hover::after {
  opacity: 0;
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  background: var(--charcoal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.gallery__item:hover .gallery__placeholder {
  background: var(--charcoal-light);
}

/* Crosshair placeholder icon */
.gallery__placeholder-icon {
  position: relative;
  width: 24px;
  height: 24px;
  opacity: 0.2;
}

.gallery__placeholder-icon::before,
.gallery__placeholder-icon::after {
  content: '';
  position: absolute;
  background: var(--brass);
}

.gallery__placeholder-icon::before {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.gallery__placeholder-icon::after {
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
}

/* --- LIGHTBOX ----------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--linen);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  padding: 0.25rem;
}
.lightbox__close:hover { opacity: 1; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(196, 168, 112, 0.15);
  border: 1px solid rgba(196, 168, 112, 0.25);
  color: var(--linen);
  font-size: 1.1rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox__nav:hover { background: rgba(196, 168, 112, 0.3); }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }


/* --- BOOKING MODAL ------------------------------ */
.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.booking-modal.open {
  display: flex;
}

.booking-modal__inner {
  position: relative;
  width: min(820px, 100%);
  height: min(680px, 90vh);
  background: var(--charcoal);
  border: 1px solid var(--brass-dim);
}

.booking-modal__close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  background: none;
  border: none;
  color: var(--linen);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s;
  padding: 0.25rem;
}
.booking-modal__close:hover { opacity: 1; }

.booking-modal__frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* "Book This Service" button inside service cards */
.service__book-btn {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.7rem 1.25rem;
  background: transparent;
  border: 1px solid var(--brass-dim);
  color: var(--brass);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.service__book-btn:hover {
  background: rgba(196, 168, 112, 0.08);
  border-color: var(--brass);
  color: var(--brass-light);
}


/* ================================================
   ABOUT
   ================================================ */
.about__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about__image-col {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.about__image-col img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 1px solid rgba(196, 168, 112, 0.2);
}

.about__img-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--linen);
  border: 1px solid var(--linen-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--linen-mid);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Person silhouette */
.about__img-icon {
  position: relative;
  width: 36px;
  opacity: 0.35;
}

.about__img-icon::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  margin: 0 auto 4px;
}

.about__img-icon::after {
  content: '';
  display: block;
  width: 36px;
  height: 20px;
  border: 1px solid var(--brass);
  border-radius: 18px 18px 0 0;
}

/* About text column */
.about__text h2 {
  margin-bottom: 0.5rem;
}

.about__name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9A8454;
  margin-bottom: 0.2rem;
}

.about__since {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
  color: #6A5030;
  letter-spacing: 0.06em;
  margin-bottom: 1.75rem;
}

.about__bio {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: #2e2e2e;
  margin-bottom: 1.25rem;
}


/* ================================================
   VISIT
   ================================================ */
.visit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.visit__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
}

.visit__phone {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 300;
  color: var(--linen);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.visit__phone:hover { color: var(--brass); }

.visit__note {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--linen-dark);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* Hours */
.hours__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.hours__table tr {
  border-bottom: 1px solid var(--linen-faint);
}

.hours__table tr:last-child {
  border-bottom: none;
}

.hours__table td {
  padding: 0.65rem 0;
  font-size: 0.95rem;
  font-weight: 300;
}

.hours__table td:first-child {
  color: var(--linen-dark);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
}

.hours__table td:last-child {
  text-align: right;
  color: var(--linen);
}

/* Map */
.map__placeholder {
  width: 100%;
  height: 240px;
  background: var(--charcoal-light);
  border: 1px solid rgba(196, 168, 112, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

/* Map pin graphic */
.map__pin {
  position: relative;
  width: 20px;
  height: 28px;
  opacity: 0.3;
}

.map__pin::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50% 50% 50% 0;
  border: 1px solid var(--brass);
  transform: translateX(-50%) rotate(-45deg);
}

.map__pin::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 10px;
  background: var(--brass);
}

.map__addr {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--linen-mid);
  letter-spacing: 0.06em;
}

/* Google Maps iframe (when added) */
.map__embed {
  width: 100%;
  height: 240px;
  border: none;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}


/* ================================================
   FAQ
   ================================================ */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--linen-dark);
}

.faq__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq__q {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.6rem;
}

.faq__a {
  font-size: 0.95rem;
  font-weight: 300;
  color: #3a3a3a;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .faq__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 4rem;
  }
}


/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(196, 168, 112, 0.15);
  padding: 2.5rem var(--pad-h);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--linen);
}

.footer__name em {
  font-style: italic;
  font-weight: 300;
  color: rgba(196, 168, 112, 0.7);
}

.footer__sub {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__links a {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--linen-dark);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--brass); }

.footer__copy {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(242, 237, 228, 0.25);
  letter-spacing: 0.06em;
  border-top: 1px solid var(--linen-faint);
  padding-top: 1.5rem;
}


/* ================================================
   RESPONSIVE — TABLET (600px+)
   ================================================ */
@media (min-width: 600px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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


/* ================================================
   RESPONSIVE — DESKTOP (768px+)
   ================================================ */
@media (min-width: 768px) {
  :root {
    --nav-h:     68px;
    --section-v: 7rem;
    --pad-h:     2rem;
  }

  /* Nav — show links, hide hamburger */
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    background: none;
    border: none;
    padding: 0;
    position: static;
  }

  .nav__menu a {
    font-size: 0.65rem;
    color: rgba(242, 237, 228, 0.6);
    padding: 0;
    border: none;
  }

  .nav__menu a:hover { color: var(--brass); }
  .nav__menu .nav__menu-book { display: none; }

  .nav__inner {
    padding: 0 2rem;
  }

  /* Hero */
  .hero__diamond {
    width: 520px;
    height: 520px;
  }

  /* About — side by side */
  .about__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .about__image-col {
    flex: 0 0 300px;
    max-width: 300px;
    margin: 0;
  }

  .about__text {
    flex: 1;
    padding-top: 0.5rem;
  }

  /* Visit — 3 columns */
  .visit__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  /* Footer — horizontal */
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer__links {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}


/* ================================================
   RESPONSIVE — WIDE (1024px+)
   ================================================ */
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }


  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about__image-col {
    flex: 0 0 360px;
    max-width: 360px;
  }
}
