:root {
  --bg:       #faf8f5;
  --text:     #1a1a1a;
  --accent:   #8b7355;
  --accent-lt:#cdb89a;
  --warm:     #f0ebe1;
  --dark:     #111111;
  --dark-2:   #1c1c1c;
  --line:     rgba(26,26,26,0.14);
  --line-lt:  rgba(44,36,22,0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: Jost, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.9;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
.container { width: min(1220px, calc(100% - 64px)); margin: 0 auto; }
.section { padding: 90px 0; }

.heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 400; line-height: 1.03;
  letter-spacing: -0.02em;
}
.heading em, .heading .ital { color: var(--accent); font-style: italic; }

.intro {
  max-width: 640px; font-size: 17px; line-height: 1.85;
  color: rgba(26,26,26,0.75);
}

.label-mono {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--line);
  display: inline-block; padding: 5px 14px;
  color: rgba(26,26,26,0.55);
}

.eyebrow {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(26,26,26,0.5);
}

/* BUTTON */
.btn {
  display: inline-block; border: 1px solid currentColor;
  border-radius: 10px; background: transparent;
  padding: 13px 26px; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 10.5px; font-weight: 400;
  transition: background 0.22s ease, color 0.22s ease;
  cursor: pointer; font-family: inherit;
}
.btn:hover { background: var(--text); color: var(--bg); }
.btn-white { color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-white:hover { background: #fff; color: #111; }

/* NAV */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250,248,245,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; }
.logo img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 28px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; }
.nav-links a { position: relative; padding-bottom: 3px; }
.nav-links a::after {
  content:''; position: absolute; bottom:0; left:0;
  width:0; height:1px; background:var(--text); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

/* HERO */
.hero { min-height: 100vh; position: relative; overflow: hidden; display: grid; place-items: center; }
.hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.40) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; color: #fff;
  animation: fadeUp 1.2s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.25s; padding: 0 24px;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
.hero-label { text-transform: uppercase; letter-spacing: 0.24em; font-size: 10px; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.hero h1 {
  font-family: "Cormorant Garamond", serif; font-weight: 400;
  font-size: clamp(62px, 9vw, 120px); line-height: 0.95; letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--accent-lt); }
.hero-sub { margin: 24px auto 36px; max-width: 480px; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.78); }

/* LOGO BAR */
.logo-bar {
  background: #f0ebe1; border-top: 1px solid var(--line-lt);
  border-bottom: 1px solid var(--line-lt); padding: 36px 0;
}
.logo-bar-label { text-align: center; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(44,36,22,0.5); margin-bottom: 24px; }
.logo-bar-row { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.logo-bar-row img { height: 36px; width: auto; filter: grayscale(100%); opacity: 0.55; transition: filter 0.3s, opacity 0.3s, transform 0.3s; }
.logo-bar-row img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }

/* SERVICES */
.services-section { padding: 0; }
.services-header {
  padding: 90px 0 60px; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px; border-bottom: 1px solid var(--line);
}
.service-row {
  display: grid; grid-template-columns: 120px 1fr 1.15fr;
  gap: 60px; align-items: center; padding: 72px 0; border-bottom: 1px solid var(--line);
}
.service-num {
  font-family: "Cormorant Garamond", serif; font-size: 80px; font-weight: 300;
  line-height: 1; color: rgba(26,26,26,0.1); letter-spacing: -0.04em; user-select: none;
}
.service-tag { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.service-title { font-family: "Cormorant Garamond", serif; font-size: clamp(36px, 4vw, 56px); font-weight: 400; line-height: 1.05; }
.service-title em { color: var(--accent); font-style: italic; }
.service-body { margin-top: 18px; font-size: 16px; line-height: 1.85; color: rgba(26,26,26,0.7); max-width: 400px; }
.service-image { overflow: hidden; }
.service-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.6s ease; }
.service-image:hover img { transform: scale(1.04); }

/* STATS */
.stats-section { background: var(--dark-2); color: #fff; padding: 80px 0; overflow: hidden; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 40px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(60px, 7vw, 96px); font-weight: 300;
  line-height: 1; letter-spacing: -0.02em;
}
.stat-num span { font-size: 0.55em; color: var(--accent-lt); }

/* PHOTO STRIP */
.photo-strip { padding: 40px 0 0; overflow: hidden; }
.photo-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.photo-strip-grid img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; will-change: transform; transition: transform 0.1s linear; }

/* METHOD */
.method-section { background: var(--warm); }
.method-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(2, 1fr); }
.method-item { padding: 48px 44px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.method-item:nth-child(2n) { border-right: none; }
.method-item:nth-child(3), .method-item:nth-child(4) { border-bottom: none; }
.method-num { font-family: "Cormorant Garamond", serif; font-size: 50px; font-weight: 300; color: rgba(26,26,26,0.1); line-height: 1; margin-bottom: 18px; }
.method-title { font-family: "Cormorant Garamond", serif; font-size: 26px; font-weight: 400; letter-spacing: 0.02em; margin-bottom: 10px; }
.method-desc { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(26,26,26,0.5); line-height: 1.7; }

/* ALT ROWS */
.alt-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.alt-row + .alt-row { margin-top: 100px; }
.alt-row.reverse .alt-image { order: 2; }
.alt-row.reverse .alt-text  { order: 1; }
.alt-image { overflow: hidden; }
.alt-image img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.alt-image:hover img { transform: scale(1.03); }
.alt-title { font-family: "Cormorant Garamond", serif; font-size: clamp(38px, 4.5vw, 68px); font-weight: 400; line-height: 1.06; }
.alt-title em { color: var(--accent); font-style: italic; }
.alt-text p { max-width: 520px; font-size: 17px; color: rgba(26,26,26,0.75); margin-top: 16px; }

/* ABOUT */
.about-caitlyn { background: #f0ebe1; }
.about-row { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: center; }
.about-image img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; }
.about-eyebrow { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.about-title { font-family: "Cormorant Garamond", serif; font-size: clamp(44px, 5vw, 72px); font-weight: 400; line-height: 1.05; margin-bottom: 28px; }
.about-title em { color: var(--accent); font-style: italic; }
.about-text p { font-size: 16px; line-height: 1.85; color: rgba(26,26,26,0.82); margin-bottom: 18px; max-width: 520px; }
.about-pull { font-family: "Cormorant Garamond", serif !important; font-size: 24px !important; font-style: italic; color: var(--text) !important; line-height: 1.5 !important; margin: 24px 0 !important; }

/* PROCESS */
.process-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.process-step { padding: 40px 32px; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: none; }
.process-step-num { font-family: "Cormorant Garamond", serif; font-size: 48px; font-weight: 300; color: rgba(26,26,26,0.1); line-height: 1; margin-bottom: 20px; }
.process-step-title { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 400; margin-bottom: 12px; }
.process-step-desc { font-size: 14px; line-height: 1.8; color: rgba(26,26,26,0.65); }

/* BOOK */
.book-section { background: #f0ebe1; border-top: 1px solid var(--line-lt); border-bottom: 1px solid var(--line-lt); }
.book-cta-row { margin-top: 52px; display: flex; align-items: stretch; border: 1px solid rgba(44,36,22,0.14); }
.book-cta-card { flex: 1; padding: 40px 44px; background: rgba(255,255,255,0.5); }
.book-cta-card:first-child { border-right: 1px solid rgba(44,36,22,0.14); }
.book-cta-label { font-family: "Cormorant Garamond", serif; font-size: 28px; font-weight: 400; font-style: italic; color: var(--accent); margin-bottom: 10px; }
.book-cta-desc { font-size: 15px; color: rgba(26,26,26,0.7); line-height: 1.7; margin-bottom: 24px; max-width: 380px; }
.book-inline-list { margin-top: 22px; border-top: 1px solid rgba(44,36,22,0.12); }
.book-inline-category { font-family: "Cormorant Garamond", serif; font-size: 16px; font-style: italic; color: var(--accent); padding: 14px 0 4px; letter-spacing: 0.04em; }
.book-row { display: grid; grid-template-columns: 2.2fr 0.8fr 0.8fr auto; gap: 20px; align-items: center; padding: 14px 0; font-size: 14px; border-bottom: 1px solid var(--line); border-radius: 4px; transition: background 0.2s ease, padding-left 0.2s ease; }
.book-row:hover { background: rgba(139,115,85,0.08); padding-left: 10px; }
.book-link { text-transform: uppercase; letter-spacing: 0.14em; font-size: 10px; }

/* PORTFOLIO / CAROUSEL */
.portfolio-section { padding-bottom: 36px; }
.portfolio-toggle { margin-top: 40px; display: flex; justify-content: center; width: fit-content; margin-left: auto; margin-right: auto; border: 1px solid var(--line); }
.toggle-link { border: none; background: none; padding: 12px 36px; font: inherit; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; color: rgba(26,26,26,0.5); transition: background 0.2s ease, color 0.2s ease; }
.toggle-link:first-child { border-right: 1px solid var(--line); }
.toggle-link.active { background: var(--text); color: #fff; }
.toggle-link:hover:not(.active) { background: rgba(26,26,26,0.06); color: var(--text); }
.carousel-viewport { margin-top: 30px; overflow: hidden; position: relative; }
.carousel-track { display: flex; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.carousel-slide { flex-shrink: 0; width: 25%; min-width: 25%; }
.carousel-slide img { width: 100%; height: 600px; object-fit: cover; object-position: center center; display: block; }
.carousel-slide video { width: 100%; height: 600px; object-fit: cover; object-position: center center; display: block; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.85); border: none; color: var(--text); width: 42px; height: 42px; border-radius: 50%; font-size: 28px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; backdrop-filter: blur(4px); }
.carousel-arrow:hover { background: #fff; }
.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.carousel-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(44,36,22,0.2); border: none; cursor: pointer; padding: 0; transition: background 0.2s ease, transform 0.2s ease; }
.carousel-dot.active { background: var(--text); transform: scale(1.2); }

/* PACKAGES */
.packages-section { background: var(--dark-2); color: #fff; }
.packages-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.package { border: 1px solid rgba(255,255,255,0.18); padding: 36px 30px; transition: transform 0.3s ease, border-color 0.3s ease; }
.package:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.45); }
.package.popular { background: rgba(255,255,255,0.05); position: relative; }
.popular-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--accent-lt); color: #1c1c1c; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; padding: 6px 16px; font-weight: 500; white-space: nowrap; }
.package h3 { font-family: "Cormorant Garamond", serif; font-size: 38px; font-weight: 400; margin-bottom: 20px; }
.price-line { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 14px; margin-bottom: 18px; font-family: "Cormorant Garamond", serif; font-size: 44px; line-height: 1; }
.package ul { list-style: none; padding: 0; margin: 0 0 28px; }
.package li { margin: 10px 0; font-size: 14px; padding-left: 16px; position: relative; }
.package li::before { content:'—'; position:absolute; left:0; color:var(--accent-lt); }
.packages-section .btn:hover { background: #fff; color: #111; }

/* TESTIMONIALS */
.testimonials-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
.testimonial { padding: 52px 48px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 24px; }
.testimonial:nth-child(2) { border-right: none; }
.testimonial:nth-child(3) { border-bottom: none; }
.testimonial:nth-child(4) { border-right: none; border-bottom: none; }
.testimonial-quote { font-family: "Cormorant Garamond", serif; font-size: 18px; font-style: italic; line-height: 1.7; color: rgba(26,26,26,0.85); }
.testimonial-attribution { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-top: auto; }
.testimonial-role { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(26,26,26,0.45); margin-top: 4px; }

/* CONTACT */
.contact-section { background: var(--dark-2); color: #fff; }
.contact-wrap { max-width: 820px; margin: 52px auto 0; }
.field { margin-top: 26px; }
.field input, .field textarea { width: 100%; border: none; border-bottom: 1px solid rgba(255,255,255,0.2); background: transparent; padding: 14px 0; font: inherit; color: #fff; outline: none; transition: border-color 0.2s ease; font-size: 15px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.38); }
.field input:focus, .field textarea:focus { border-color: var(--accent-lt); }
.field textarea { min-height: 130px; resize: vertical; }
.contact-meta { margin-top: 40px; text-align: center; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* FOOTER */
/* INSTAGRAM SECTION */
.instagram-section { padding: 80px 0 72px; background: var(--cream, #faf8f5); }
.instagram-header { text-align: center; margin-bottom: 40px; }
.instagram-title { font-family: "Cormorant Garamond", serif; font-size: clamp(36px, 5vw, 60px); font-weight: 400; line-height: 1.1; margin-top: 12px; }
.instagram-sub { margin-top: 14px; font-size: 15px; color: rgba(26,26,26,0.6); line-height: 1.7; }
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; max-width: 1200px; margin: 0 auto; padding: 0 24px; text-decoration: none; cursor: pointer; }
.instagram-tile { overflow: hidden; aspect-ratio: 1 / 1; }
.instagram-tile img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease, opacity 0.3s ease; }
.instagram-grid:hover .instagram-tile img { opacity: 0.85; }
.instagram-grid:hover .instagram-tile:hover img { transform: scale(1.05); opacity: 1; }

.footer { background: var(--dark); color: #fff; text-align: center; padding: 90px 0 44px; }
.footer-logo img { height: 44px; width: auto; margin: 0 auto; filter: invert(1) brightness(2); }
.footer-links { margin-top: 20px; display: flex; justify-content: center; gap: 22px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; }
.footer-links a { position: relative; padding-bottom: 3px; }
.footer-links a::after { content:''; position: absolute; bottom:0; left:0; width:0; height:1px; background:rgba(255,255,255,0.5); transition: width 0.3s ease; }
.footer-links a:hover::after { width: 100%; }
.footer-copy { margin-top: 22px; font-size: 11px; letter-spacing: 0.08em; opacity: 0.5; }

/* RESPONSIVE */

/* ── HAMBURGER BUTTON ─────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  cursor: pointer;
  background: none; border: none;
  padding: 8px;
  z-index: 200;
  position: relative;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down menu — uses visibility+opacity, no display toggle */
.mobile-menu {
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(250,248,245,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 150;
  padding: 28px 32px 36px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0s;
}
.mobile-menu a {
  display: block;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  color: var(--text);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a:active { color: var(--accent); }
.mobile-menu .mobile-cta {
  margin-top: 24px; display: block;
  border: 1px solid var(--text); text-align: center;
  padding: 14px 24px; letter-spacing: 0.14em;
  font-size: 10.5px; text-transform: uppercase;
  transition: background 0.22s, color 0.22s;
  border-radius: 10px;
}
.mobile-menu .mobile-cta:hover { background: var(--text); color: var(--bg); }

@media (max-width: 1000px) {
  /* NAV */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* SERVICES */
  .service-row { grid-template-columns: 80px 1fr; grid-template-rows: auto auto; }
  .service-num { grid-column: 1; grid-row: 1; }
  .service-text { grid-column: 2; grid-row: 1; }
  .service-image { display: block !important; grid-column: 1 / span 2; grid-row: 2; margin-top: 16px; }
  .service-image img { border-radius: 8px; width: 100%; }
  .services-header { flex-direction: column; align-items: flex-start; }

  /* STATS — keep 2 across on tablet */
  .stats-section { padding: 50px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item { padding: 28px 16px; }
  .stat-num { font-size: clamp(44px, 8vw, 72px); }

  /* PROCESS — hide on mobile, show on tablet */
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .process-step:nth-child(4) { border-right: none; border-top: 1px solid var(--line); }

  /* ALT ROWS */
  .alt-row, .alt-row.reverse { grid-template-columns: 1fr; }
  .alt-row.reverse .alt-image, .alt-row.reverse .alt-text { order: initial; }
  .alt-row + .alt-row { margin-top: 60px; }

  /* ABOUT */
  .about-row { grid-template-columns: 1fr; gap: 40px; }

  /* PACKAGES */
  .packages-grid { grid-template-columns: 1fr; }

  /* TESTIMONIALS */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial { border-right: none !important; }

  /* BOOK SECTION — compact on tablet */
  .book-cta-row { flex-direction: column; }
  .book-cta-card:first-child { border-right: none; border-bottom: 1px solid rgba(44,36,22,0.14); }
  .book-cta-card { padding: 28px 28px; }
  .book-row { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 16px; padding: 12px 0; }
  .book-row > div:first-child { flex: 1 1 100%; font-weight: 500; }
  .book-row > div:nth-child(2) { color: rgba(26,26,26,0.5); font-size: 12px; }
  .book-row > div:nth-child(3) { font-weight: 500; color: var(--accent); margin-left: auto; }
  .book-link { padding: 8px 16px; font-size: 10px; }

  /* LOGO BAR */
  .logo-bar-row img { height: 28px; }

  /* CAROUSEL */
  .carousel-slide { width: 50%; min-width: 50%; }
}

@media (max-width: 640px) {
  /* HERO VIDEO — left justified on mobile */
  .hero video { object-position: left center; }

  /* HIDE PROCESS SECTION ENTIRELY */
  #process { display: none; }

  /* STATS — horizontal 2x2 but compact */
  .stats-section { padding: 36px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item {
    padding: 20px 12px;
    border-right: 1px solid rgba(255,255,255,0.1) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:nth-child(2) { border-right: none !important; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1) !important; border-bottom: none; }
  .stat-item:nth-child(4) { border-right: none !important; border-bottom: none; }
  .stat-num { font-size: clamp(36px, 10vw, 52px); }
  .stat-label { font-size: 9px; margin-bottom: 8px; }

  /* CAROUSEL */
  .carousel-slide { width: 100%; min-width: 100%; }
  .carousel-slide img,
  .carousel-slide video { width: 100%; height: 500px; object-fit: cover; object-position: center center; display: block; }

  /* INSTAGRAM */
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .instagram-section { padding: 56px 0 48px; }

  /* BOOK SECTION — ultra compact */
  .book-section { padding: 48px 0; }
  .book-cta-card { padding: 24px 20px; }
  .book-inline-list { margin-top: 14px; }
  .book-row { padding: 10px 0; gap: 4px 12px; }
  .book-row > div:first-child { font-size: 13px; }
  .book-row > div:nth-child(2) { display: none; }
  .book-link { padding: 7px 14px; }

  /* PACKAGES */
  .package { padding: 28px 22px; }
  .price-line { font-size: 36px; }

  /* SECTION PADDING */
  .section { padding: 60px 0; }

  /* METHOD GRID */
  .method-grid { grid-template-columns: 1fr; }
  .method-item { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .method-item:last-child { border-bottom: none !important; }

  /* PHOTO STRIP */
  .photo-strip-grid { grid-template-columns: repeat(2, 1fr); }

  /* TESTIMONIALS */
  .testimonial { padding: 32px 24px; }

  /* CONTACT FORM */
  .contact-wrap { margin-top: 36px; }
}

/* WEBSITE STATS SECTION */
.website-stats-section {
  background: var(--cream, #f9f6f2);
  padding: 80px 0;
}
.website-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.website-stat-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 2px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
}
.website-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 10vw, 110px);
  font-weight: 300;
  line-height: 1;
  color: var(--dark, #1a1a1a);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.website-stat-body {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(0,0,0,0.6);
  max-width: 280px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .website-stats-grid { grid-template-columns: 1fr; }
  .website-stat-card { padding: 36px 28px; }
  .website-stat-num { font-size: 80px; }
  .website-stats-section { padding: 60px 0; }
}
