/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --cream:        #FAF5EE;
  --parchment:    #EDE5D6;
  --taupe:        #B09980;
  --caramel:      #6B1628;
  --rose:         #C4A090;
  --espresso:     #1C0504;
  --espresso-mid: #390007;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Josefin Sans', Arial, sans-serif;

  --max-width: 1200px;
  --section-padding: 100px 24px;
  --transition: 0.35s ease;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.15;
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.12em;
  text-align: center;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--caramel);
}
.rule {
  width: 40px;
  height: 1px;
  background: var(--caramel);
  margin: 16px auto;
}

/* ============================================================
   LOGO MARK (inline HTML — fonts render reliably)
   ============================================================ */
.logo-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.22em;
  color: var(--espresso);
  text-transform: uppercase;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: var(--espresso);
  text-transform: uppercase;
  line-height: 1;
  opacity: 0.65;
}
.logo-light .logo-name { color: var(--cream); }
.logo-light .logo-sub  { color: var(--cream); opacity: 0.6; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 2px;
  transition: var(--transition);
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
}
.btn-primary { background: var(--caramel); color: var(--cream); }
.btn-primary:hover { background: var(--espresso); }
.btn-ghost {
  border: 1px solid var(--caramel);
  color: var(--caramel);
  background: transparent;
}
.btn-ghost:hover { background: var(--caramel); color: var(--cream); }
.btn-ghost-light {
  border: 1px solid rgba(250,245,238,0.7);
  color: var(--cream);
  background: transparent;
}
.btn-ghost-light:hover { background: rgba(250,245,238,0.12); }
.btn-outline-cream {
  border: 1px solid rgba(250,245,238,0.6);
  color: var(--cream);
  background: transparent;
}
.btn-outline-cream:hover { background: var(--cream); color: var(--espresso); }

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.section { padding: var(--section-padding); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .rule { margin: 18px auto 0; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250,245,238,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(176,153,128,0.3);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(250,245,238,0.98);
  box-shadow: 0 1px 0 rgba(176,153,128,0.5);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--espresso);
  transition: color var(--transition);
  padding: 12px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 9px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--caramel);
  transition: right var(--transition);
}
.nav-links a:hover { color: var(--caramel); }
.nav-links a:hover::after { right: 0; }
.nav-book { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--espresso);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  overflow-y: auto;
  border-top: 1px solid rgba(176,153,128,0.4);
  padding: 24px 32px 36px;
  z-index: 99;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--espresso);
  padding: 18px 0;
  border-bottom: 1px solid rgba(176,153,128,0.25);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu .btn { margin-top: 28px; text-align: center; }

/* ============================================================
   HERO — full-bleed editorial
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

/* Mobile: left panel overlays the full-screen photo */
.hero-left {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px 88px;
  text-align: center;
}

/* Mobile: right panel fills the hero (the photo) */
.hero-right {
  position: absolute;
  inset: 0;
}

/* Slideshow container */
.hero-slides {
  position: absolute;
  inset: 0;
}

/* Individual slides — stack and crossfade */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide.active { opacity: 1; }

/* All slide images */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

/* Three distinct Ken Burns directions — 9s, quicker & punchier */
.hero-slide:nth-child(1) img {
  animation: kb1 9s ease-in-out infinite alternate;
  transform-origin: center 35%;
}
.hero-slide:nth-child(2) img {
  animation: kb2 9s ease-in-out infinite alternate;
  transform-origin: 60% 40%;
}
.hero-slide:nth-child(3) img {
  animation: kb3 9s ease-in-out infinite alternate;
  transform-origin: 40% 50%;
}

/* Zoom in from center */
@keyframes kb1 {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, 1%); }
}
/* Pan right + slight zoom */
@keyframes kb2 {
  0%   { transform: scale(1.1) translate(-3%, 0); }
  100% { transform: scale(1.18) translate(2%, -1%); }
}
/* Pan left + zoom up */
@keyframes kb3 {
  0%   { transform: scale(1.08) translate(2.5%, 1%); }
  100% { transform: scale(1.15) translate(-1.5%, -1.5%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,5,4,0.08) 0%,
    rgba(28,5,4,0.15) 45%,
    rgba(28,5,4,0.72) 100%
  );
}
.hero-logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 7vw, 76px);
  letter-spacing: 0.28em;
  color: var(--cream);
  line-height: 1;
  text-transform: uppercase;
}
.hero-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(10px, 1.4vw, 13px);
  letter-spacing: 0.26em;
  color: rgba(250,245,238,0.65);
  text-transform: uppercase;
}
.hero-rule {
  width: 32px;
  height: 1px;
  background: rgba(250,245,238,0.5);
  margin: 20px auto;
}
.hero-location {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,245,238,0.45);
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ============================================================
   HERO — DESKTOP SPLIT (text left / slideshow right)
   ============================================================ */
@media (min-width: 1001px) {
  .hero {
    display: flex;
    flex-direction: row;
    height: 100vh;
  }
  .hero-left {
    position: relative;
    flex: 0 0 44%;
    inset: unset;
    background: var(--espresso);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 72px;
    text-align: left;
    z-index: 2;
  }
  .hero-right {
    position: relative;
    flex: 1;
    inset: unset;
  }
  .hero-overlay { display: none; }
  .hero-logo-mark { align-items: flex-start; }
  .hero-rule { margin: 20px 0; }
  .hero-ctas { justify-content: flex-start; }
}

/* ============================================================
   ABOUT — boho background
   ============================================================ */
.about {
  background: var(--caramel) url('images/about-bg.jpg') center/cover no-repeat;
  position: relative;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-photo-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--taupe);
}
.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(250,245,238,0.92);
  padding: 48px 44px;
  border: 1px solid rgba(250,245,238,0.4);
}
.about-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: 0.04em;
  line-height: 1.25;
}
.about-body {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(28,5,4,0.8);
}
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.badge {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--taupe);
  color: var(--espresso);
  padding: 8px 18px;
  border-radius: 1px;
}

/* ============================================================
   SERVICES — subtle boho texture
   ============================================================ */
.services {
  background: var(--cream) url('images/services-bg.jpg') center/cover no-repeat;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250,245,238,0.86);
  pointer-events: none;
}
.services .section-inner { position: relative; z-index: 1; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: rgba(250,245,238,0.95);
  border: 1px solid rgba(176,153,128,0.5);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.service-card:hover { box-shadow: 0 8px 32px rgba(28,5,4,0.1); }
.service-card-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-photo img { transform: scale(1.05); }
.service-card-body { padding: 24px 28px 28px; }
.service-name {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-meta {
  font-size: 13px;
  font-weight: 300;
  color: rgba(28,5,4,0.55);
  margin-bottom: 10px;
}
.service-meta .price { color: var(--caramel); font-weight: 400; }
.service-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(28,5,4,0.75);
  margin-bottom: 18px;
}
.service-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--caramel);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(107,22,40,0.4);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.service-link:hover { color: var(--espresso); border-color: var(--espresso); }
.services-view-all { text-align: center; margin-top: 52px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--espresso-mid); padding: var(--section-padding); }
.gallery .section-heading { color: var(--cream); }
.gallery .rule { background: rgba(176,153,128,0.6); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  aspect-ratio: 3/4;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(107,22,40,0);
  transition: background 0.5s ease;
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { background: rgba(107,22,40,0.18); }

/* ============================================================
   INSTAGRAM / FOLLOW ALONG
   ============================================================ */
.instagram { background: var(--parchment); overflow: visible; padding-bottom: 0; }
.instagram-handle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--caramel);
  text-align: center;
  display: block;
  margin-top: 10px;
  margin-bottom: 52px;
  transition: opacity var(--transition);
}
.instagram-handle:hover { opacity: 0.7; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  max-width: var(--max-width);
  margin: 0 auto -100px;
  position: relative;
  z-index: 2;
}
.reel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(28,5,4,0.28);
}
.reel-wrap a { display: block; }
.reel-wrap video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}
.instagram-cta { text-align: center; padding-bottom: 48px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--espresso);
  padding: 172px 40px 44px; /* 72px base + 100px reel overlap */
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/footer-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.22;
  z-index: 0;
}
.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  max-width: var(--max-width);
  margin: 0 auto 56px;
}
.footer-col-brand .logo-mark { margin-bottom: 32px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin-bottom: 32px;
}
.footer-nav a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,245,238,0.6);
  transition: color var(--transition);
  padding: 6px 0;
}
.footer-nav a:hover { color: var(--cream); }
.footer-col-heading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 20px;
}
.footer-detail {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: rgba(250,245,238,0.6);
  margin-bottom: 16px;
}
.footer-detail a {
  color: rgba(250,245,238,0.6);
  transition: color var(--transition);
  line-height: 1.7;
}
.footer-detail a:hover { color: var(--cream); }
.footer-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  align-items: baseline;
}
.footer-day {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(250,245,238,0.5);
}
.footer-time {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(250,245,238,0.75);
}
.footer-closed { color: rgba(176,153,128,0.45); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(176,153,128,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-policy {
  font-size: 11px;
  color: rgba(176,153,128,0.5);
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.footer-copy {
  font-size: 11px;
  color: rgba(176,153,128,0.35);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(176,153,128,0.5);
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: rgba(250,245,238,0.7); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-section {
  background: var(--cream);
  padding: 80px 24px 100px;
}
.legal-inner {
  max-width: 740px;
  margin: 0 auto;
}
.legal-heading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel);
  margin: 44px 0 12px;
}
.legal-heading:first-of-type { margin-top: 32px; }
.legal-body {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(28,5,4,0.75);
  margin-bottom: 0;
}
.legal-body a {
  color: var(--caramel);
  border-bottom: 1px solid rgba(107,22,40,0.3);
  transition: border-color var(--transition), color var(--transition);
}
.legal-body a:hover { color: var(--espresso); border-color: var(--espresso); }
.legal-back {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(176,153,128,0.3);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   INQUIRY PAGE — HERO BANNER
   ============================================================ */
.inquiry-hero {
  background: var(--espresso);
  padding: 148px 24px 88px;
  text-align: center;
}
.inquiry-hero-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}
.inquiry-hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(250,245,238,0.6);
}

/* ============================================================
   INQUIRY FORM
   ============================================================ */
.inquiry-section { background: var(--cream); padding: 88px 24px; }
.inquiry-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--parchment);
  border: 1px solid rgba(176,153,128,0.5);
  box-shadow: 0 4px 32px rgba(28,5,4,0.07);
  padding: 56px 64px;
}
.form-group { margin-bottom: 32px; }
.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 12px;
}
.form-label .optional {
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--taupe);
  margin-left: 6px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(176,153,128,0.6);
  border-radius: 1px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--espresso);
  outline: none;
  transition: border-color var(--transition);
  min-height: 44px;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--caramel); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B09980' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.radio-group { display: flex; flex-direction: column; gap: 12px; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  cursor: pointer;
  min-height: 44px;
}
.radio-label input[type="radio"] { display: none; }
.radio-dot {
  width: 18px;
  height: 18px;
  border: 1px solid var(--taupe);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition);
}
.radio-label input[type="radio"]:checked + .radio-dot { border-color: var(--caramel); }
.radio-label input[type="radio"]:checked + .radio-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--caramel);
  border-radius: 50%;
}
.file-drop {
  border: 1px dashed rgba(176,153,128,0.6);
  background: var(--cream);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition);
  border-radius: 1px;
  position: relative;
}
.file-drop:hover { border-color: var(--caramel); }
.file-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-drop-icon { font-size: 22px; color: var(--taupe); margin-bottom: 8px; }
.file-drop-text { font-family: var(--font-body); font-weight: 300; font-size: 13px; color: var(--taupe); letter-spacing: 0.06em; }
.file-drop-hint { font-size: 11px; color: var(--rose); margin-top: 4px; }
.form-submit { text-align: center; margin-top: 44px; }
.form-submit .btn { padding: 16px 52px; font-size: 11px; letter-spacing: 0.14em; }
.form-thankyou { display: none; text-align: center; padding: 72px 24px; }
.form-thankyou.visible { display: block; }
.form-thankyou-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 40px;
  letter-spacing: 0.1em;
  color: var(--espresso);
  margin-bottom: 16px;
}
.form-thankyou-sub { font-family: var(--font-body); font-weight: 300; font-size: 14px; color: rgba(28,5,4,0.65); }

/* ============================================================
   RESPONSIVE — TABLET (< 1000px)
   ============================================================ */
@media (max-width: 1000px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }

  .hero-name { font-size: clamp(32px, 10vw, 60px); }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { max-width: 440px; margin: 0 auto; aspect-ratio: 4/3; }
  .about-text { padding: 36px 32px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram { padding-bottom: var(--section-padding); }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 44px;
    box-shadow: none;
  }
  .instagram-cta { padding-bottom: 32px; }
  .footer { padding: 72px 40px 44px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-col-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .footer-col-brand .logo-mark { margin-bottom: 0; }
  .footer-col-brand .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 0;
  }
  .footer-col-brand .btn { margin-top: 0; }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 600px)
   ============================================================ */
@media (max-width: 600px) {
  :root { --section-padding: 72px 20px; }
  .nav { padding: 0 20px; }

  .hero-left { padding: 0 20px 80px; }
  .hero-ctas { gap: 12px; }
  .hero-ctas .btn { padding: 14px 24px; font-size: 10px; }

  .about { padding: 64px 20px; }
  .about-inner { gap: 28px; }
  .about-photo-wrap { aspect-ratio: 3/4; max-width: 100%; }
  .about-text { padding: 28px 20px; gap: 16px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-body { padding: 20px 20px 24px; }

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

  .instagram-grid {
    grid-template-columns: unset;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 8px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }
  .instagram-grid::-webkit-scrollbar { display: none; }
  .reel-wrap { flex-shrink: 0; width: 240px; scroll-snap-align: start; }

  /* Footer — single column stack */
  .footer { padding: 56px 24px 40px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-col-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-col-brand .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .inquiry-card { padding: 36px 24px; }
  .inquiry-hero-heading { font-size: clamp(28px, 8vw, 48px); }
}

@media (max-width: 420px) {
  .inquiry-card [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .hero-name { font-size: clamp(28px, 11vw, 44px); }
  .hero-tagline { font-size: 9px; }
}
