/* ==========================================================
   PAWLINE · main.css
   Editorial, calm, tactile. Hunter green / tan / cream.
   ========================================================== */

@font-face {
  font-family: "Agatho";
  src: url("../assets/fonts/Agatho_Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --hunter:       #2d4837;
  --hunter-deep:  #1f3327;
  --hunter-ink:   #16241b;
  --hunter-soft:  #3e5b48;
  --tan:          #9b7f65;
  --tan-light:    #c4a98a;
  --cream:        #f5efe6;
  --bone:         #faf6ef;
  --paper:        #ffffff;

  --ink-600: #5a4f43;
  --ink-500: #87796a;
  --ink-400: #b3a895;

  --border-subtle:  rgba(45, 72, 55, 0.10);
  --border-default: rgba(45, 72, 55, 0.18);
  --border-cream:   rgba(245, 239, 230, 0.18);

  --font-display: "Agatho", "Cormorant Garamond", Georgia, serif;
  --font-body: "Quattrocento Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 76px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-dur: 0.85s;
}

/* ---------- 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-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--hunter);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
section[id], [id="reviews"] { scroll-margin-top: calc(var(--header-h) - 8px); }
::selection { background: var(--tan-light); color: var(--hunter-ink); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(84px, 11vw, 150px) 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--hunter); color: var(--bone); }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--tan);
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--tan); flex: none; }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.section-lede { max-width: 560px; color: var(--ink-600); font-size: 1.05rem; }
.section-dark .section-lede { color: rgba(245, 239, 230, 0.75); }
.section-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head .eyebrow { justify-content: flex-start; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 34px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 999px; border: 1px solid transparent;
  transition: transform 0.35s var(--ease-out), background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--hunter); color: var(--bone); }
.btn-primary:hover { background: var(--hunter-deep); box-shadow: 0 12px 28px -12px rgba(31, 51, 39, 0.55); }
.btn-cream { background: var(--bone); color: var(--hunter); }
.btn-cream:hover { background: #fff; box-shadow: 0 14px 32px -14px rgba(0, 0, 0, 0.45); }
.btn-ghost { border-color: rgba(250, 246, 239, 0.55); color: var(--bone); }
.btn-ghost:hover { border-color: var(--bone); background: rgba(250, 246, 239, 0.1); }
.btn-ghost-dark { border-color: var(--border-default); color: var(--hunter); }
.btn-ghost-dark:hover { border-color: var(--hunter); }
.btn-sm { padding: 12px 24px; font-size: 12px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity var(--reveal-dur) var(--ease-out),
    transform var(--reveal-dur) var(--ease-out);
  transition-delay: calc(var(--d, 0) * 90ms);
  will-change: opacity, transform;
}
.reveal[data-delay="1"] { --d: 1; } .reveal[data-delay="2"] { --d: 2; }
.reveal[data-delay="3"] { --d: 3; } .reveal[data-delay="4"] { --d: 4; }
.reveal[data-delay="5"] { --d: 5; } .reveal[data-delay="6"] { --d: 6; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-out);
}
.header-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex; align-items: center; gap: 28px;
}
.site-header.is-scrolled {
  background: rgba(250, 246, 239, 0.88);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border-subtle);
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { width: 40px; height: 40px; border-radius: 50%; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.55rem; letter-spacing: 0.04em; line-height: 1;
  color: var(--bone);
  transition: color 0.4s;
}
.site-header.is-scrolled .brand-word { color: var(--hunter); }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  position: relative;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(250, 246, 239, 0.85);
  padding: 6px 0;
  transition: color 0.3s;
}
.site-header.is-scrolled .main-nav a { color: var(--ink-600); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.main-nav a:hover, .main-nav a.is-active { color: var(--bone); }
.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a.is-active { color: var(--hunter); }

.header-cta { background: var(--bone); color: var(--hunter); }
.site-header.is-scrolled .header-cta { background: var(--hunter); color: var(--bone); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px; border: 0; background: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  z-index: 210;
}
.menu-toggle span {
  width: 26px; height: 2px; background: var(--bone); border-radius: 2px;
  transition: transform 0.35s var(--ease-out), background 0.3s;
}
.site-header.is-scrolled .menu-toggle span { background: var(--hunter); }
body.menu-open .menu-toggle span { background: var(--bone); }
body.menu-open .menu-toggle span:first-child { transform: translateY(4.5px) rotate(45deg); }
body.menu-open .menu-toggle span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* Keep header (logo + close button) above the open menu overlay */
body.menu-open .site-header {
  z-index: 300;
  background: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  box-shadow: none;
}
body.menu-open .site-header .brand-word { color: var(--bone); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  min-height: 100vh; min-height: 100dvh;
  background: var(--hunter-ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--gutter);
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  color: var(--bone); line-height: 1.35;
  padding: 6px 0;
  display: flex; align-items: baseline; gap: 18px;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.mobile-menu nav a em {
  font-family: var(--font-body); font-style: normal;
  font-size: 12px; letter-spacing: 0.2em; color: var(--tan-light);
}
body.menu-open .mobile-menu nav a { opacity: 1; transform: none; }
body.menu-open .mobile-menu nav a:nth-child(1) { transition-delay: 0.08s; }
body.menu-open .mobile-menu nav a:nth-child(2) { transition-delay: 0.14s; }
body.menu-open .mobile-menu nav a:nth-child(3) { transition-delay: 0.20s; }
body.menu-open .mobile-menu nav a:nth-child(4) { transition-delay: 0.26s; }
body.menu-open .mobile-menu nav a:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu-foot {
  position: absolute; bottom: 36px; left: var(--gutter); right: var(--gutter);
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: rgba(245, 239, 230, 0.6);
}
.mobile-menu-foot a { color: var(--tan-light); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--hunter-ink);
}
.hero-media { position: absolute; inset: -6% 0; will-change: transform; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 38%;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.09) translate(-1.2%, -1%); }
}
@media (prefers-reduced-motion: reduce) { .hero-media img { animation: none; } }

.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(76deg, rgba(22, 36, 27, 0.88) 0%, rgba(22, 36, 27, 0.62) 38%, rgba(22, 36, 27, 0.18) 68%, rgba(22, 36, 27, 0.42) 100%),
    linear-gradient(to top, rgba(22, 36, 27, 0.55), transparent 36%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--wrap); width: 100%;
  margin: 0 auto; padding: calc(var(--header-h) + 40px) var(--gutter) 120px;
  color: var(--bone);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 30px;
}
.hero-eyebrow .rule { width: 44px; height: 1px; background: var(--tan-light); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.1rem, 9.2vw, 7.4rem);
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin-bottom: 30px;
  text-wrap: balance;
}
.hero-title .line { display: block; }
.hero-title em { font-style: italic; color: var(--tan-light); }
.hero-sub {
  max-width: 480px;
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  color: rgba(250, 246, 239, 0.88);
  margin-bottom: 40px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-caption {
  position: absolute; right: var(--gutter); bottom: 34px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250, 246, 239, 0.72);
}
.hero-caption .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tan-light); }
.hero-scrollcue {
  position: absolute; left: var(--gutter); bottom: 30px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(250, 246, 239, 0.65);
}
.hero-scrollcue .cue-line {
  width: 1px; height: 44px; background: rgba(250, 246, 239, 0.4);
  position: relative; overflow: hidden;
}
.hero-scrollcue .cue-line::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%; background: var(--bone);
  animation: cueDrop 2.2s var(--ease-out) infinite;
}
@keyframes cueDrop { 0% { top: -50%; } 70%, 100% { top: 110%; } }

/* ==========================================================
   MARQUEE
   ========================================================== */
.marquee {
  background: var(--hunter-deep); color: var(--tan-light);
  overflow: hidden; padding: 18px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.08);
}
.marquee-track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track i { font-style: normal; opacity: 0.55; font-size: 10px; }
@keyframes marquee { to { transform: translateX(calc(-100% / 3)); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ==========================================================
   MISSION
   ========================================================== */
.mission .eyebrow { justify-content: center; }
.mission .eyebrow::before { display: none; }
.mission .eyebrow::after { display: none; }
.statement {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.14; font-weight: 400;
  text-align: center;
  max-width: 860px; margin: 0 auto clamp(56px, 8vw, 96px);
  text-wrap: balance;
}
.statement em { font-style: italic; color: var(--tan); }
.mission .eyebrow { text-align: center; display: block; }
.mission-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.mission-item { border-top: 1px solid var(--border-default); padding-top: 26px; }
.mission-item .num {
  font-family: var(--font-display); font-size: 1rem; color: var(--tan);
  letter-spacing: 0.1em;
}
.mission-item h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.55rem; margin: 12px 0 12px;
}
.mission-item p { color: var(--ink-600); font-size: 0.98rem; }

/* ==========================================================
   BEFORE / AFTER
   ========================================================== */
.transform .section-head { margin-left: auto; margin-right: auto; text-align: center; }
.transform .section-head .eyebrow { justify-content: center; }
.transform .section-head .eyebrow::before { display: none; }
.transform .section-lede { margin: 0 auto; }

.ba-slider { max-width: 620px; margin: 0 auto; position: relative; }
.ba-frame {
  position: relative; overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 3 / 3.4;
  width: 100%;
  box-shadow: 0 30px 80px -30px rgba(31, 51, 39, 0.45);
  touch-action: pan-y;
  cursor: ew-resize;
}
.ba-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 30%;
  user-select: none; -webkit-user-drag: none;
}
.ba-before-wrap {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--ba, 50%)) 0 0);
  will-change: clip-path;
}
.ba-before-wrap .ba-img { position: absolute; inset: 0; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--ba, 50%);
  transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; will-change: left;
}
.ba-handle-line { position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(250, 246, 239, 0.9); box-shadow: 0 0 12px rgba(0,0,0,0.35); }
.ba-handle-knob {
  position: relative; z-index: 1;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bone); color: var(--hunter);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(22, 36, 27, 0.4);
}
.ba-tag {
  position: absolute; top: 18px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(22, 36, 27, 0.55); color: var(--bone);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.ba-tag-before { left: 18px; }
.ba-tag-after { right: 18px; }
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize;
}
.ba-caption {
  text-align: center; margin-top: 22px;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-500);
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.about-figure { position: relative; }
.portrait-frame {
  border-radius: 300px 300px 18px 18px;
  overflow: hidden;
  aspect-ratio: 3 / 3.9;
  box-shadow: 0 30px 70px -28px rgba(31, 51, 39, 0.4);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; transition: transform 1.4s var(--ease-out); }
.about-figure:hover .portrait-frame img { transform: scale(1.04); }
.about-figure figcaption {
  margin-top: 16px; text-align: center;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.02rem; color: var(--ink-500);
}
.about-text p + p { margin-top: 1em; }
.about-text > .reveal > p { color: var(--ink-600); }
.signature {
  margin-top: 34px; display: flex; align-items: center; gap: 16px;
}
.sig-paw { width: 44px; opacity: 0.85; }
.sig-name { display: block; font-family: var(--font-display); font-size: 1.45rem; line-height: 1.2; }
.sig-role { display: block; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tan); margin-top: 3px; }

/* ==========================================================
   PRICING
   ========================================================== */
.pricing .eyebrow { color: var(--tan-light); }
.pricing .eyebrow::before { background: var(--tan-light); }
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  align-items: start;
}
.price-card {
  position: relative;
  background: rgba(250, 246, 239, 0.05);
  border: 1px solid var(--border-cream);
  border-radius: 16px;
  padding: clamp(28px, 3vw, 40px);
  transition: transform 0.5s var(--ease-out), background 0.5s, border-color 0.5s;
}
.price-card:hover { transform: translateY(-6px); background: rgba(250, 246, 239, 0.08); border-color: rgba(245, 239, 230, 0.3); }
.price-card h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.8rem; margin-bottom: 12px;
}
.price-desc { font-size: 0.92rem; color: rgba(245, 239, 230, 0.68); margin-bottom: 26px; min-height: 0; }
.price-list { list-style: none; }
.price-list li {
  display: flex; align-items: baseline; gap: 10px;
  padding: 13px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.12);
  font-size: 0.98rem;
}
.price-list li span { color: rgba(245, 239, 230, 0.85); }
.price-list li::after { content: ""; order: 2; flex: 1; border-bottom: 1px dotted rgba(245, 239, 230, 0.25); transform: translateY(-4px); }
.price-list li span { order: 1; }
.price-list li b { order: 3; font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; color: var(--tan-light); }
.price-card-featured {
  background: var(--bone); color: var(--hunter);
  border-color: transparent;
  box-shadow: 0 32px 70px -28px rgba(0, 0, 0, 0.5);
}
.price-card-featured:hover { background: #fff; }
.price-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--tan); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card-featured .price-desc { color: var(--ink-600); }
.price-card-featured .price-list li { border-top-color: var(--border-default); }
.price-card-featured .price-list li span { color: var(--hunter); }
.price-card-featured .price-list li::after { border-bottom-color: var(--ink-400); }
.price-card-featured .price-list li b { color: var(--hunter); }
.price-note {
  max-width: 640px; margin: clamp(40px, 5vw, 60px) auto 0;
  text-align: center;
  font-size: 0.95rem; color: rgba(245, 239, 230, 0.7);
}
.price-note a { color: var(--tan-light); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.price-note a:hover { color: var(--bone); }

/* ==========================================================
   GALLERY
   ========================================================== */
.gallery .section-head { text-align: center; margin-left: auto; margin-right: auto; }
.gallery .section-head .eyebrow { justify-content: center; }
.gallery .section-head .eyebrow::before { display: none; }
.gallery .section-lede { margin: 0 auto; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 10px;
}
.insta-tile {
  position: relative; overflow: hidden;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--cream);
}
.insta-tile img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%;
  transition: transform 1.1s var(--ease-out), filter 1.1s var(--ease-out);
}
.insta-tile:hover img { transform: scale(1.06); }
.insta-tile figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(22, 36, 27, 0.82), transparent);
  color: var(--bone);
  display: flex; flex-direction: column; gap: 1px;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.insta-tile:hover figcaption { opacity: 1; transform: none; }
.insta-tile figcaption span { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tan-light); }
.insta-tile figcaption em { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; }
.gallery-foot {
  display: flex; align-items: baseline; justify-content: center; gap: 14px;
  margin-top: clamp(34px, 4vw, 50px);
}
.gallery-foot span { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-500); }
.gallery-foot a {
  font-family: var(--font-display); font-size: 1.35rem; color: var(--hunter);
  border-bottom: 1px solid var(--tan); padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.gallery-foot a:hover { color: var(--tan); }

/* ==========================================================
   REVIEWS
   ========================================================== */
.reviews .section-head { text-align: center; margin-left: auto; margin-right: auto; }
.reviews .section-head .eyebrow { justify-content: center; }
.reviews .section-head .eyebrow::before { display: none; }
.reviews .section-lede { margin: 0 auto; }
.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}
.review-card {
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 44px -22px rgba(31, 51, 39, 0.25);
  display: flex; flex-direction: column;
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out);
}
.review-card:hover { transform: translateY(-7px); box-shadow: 0 30px 60px -24px rgba(31, 51, 39, 0.35); }
.review-photo { aspect-ratio: 4 / 3.1; overflow: hidden; }
.review-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; transition: transform 1.2s var(--ease-out); }
.review-card:hover .review-photo img { transform: scale(1.05); }
.review-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.stars { color: var(--tan); letter-spacing: 4px; font-size: 0.85rem; margin-bottom: 14px; }
.review-body blockquote {
  font-family: var(--font-display);
  font-size: 1.14rem; line-height: 1.5; font-style: italic;
  color: var(--hunter);
  flex: 1;
}
.review-body footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-subtle); }
.review-body footer b { display: block; font-size: 0.95rem; }
.review-body footer span { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-500); }
.review-summary { text-align: center; margin-top: clamp(36px, 4vw, 52px); color: var(--ink-500); font-size: 0.95rem; }
.review-summary b { font-family: var(--font-display); font-size: 1.8rem; color: var(--hunter); margin-right: 8px; }

/* ==========================================================
   CONTACT / BOOKING
   ========================================================== */
.contact { position: relative; overflow: hidden; }
.contact-paw {
  position: absolute; right: -80px; top: -60px;
  width: 380px; opacity: 0.07; transform: rotate(14deg);
  pointer-events: none;
}
.contact-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  position: relative;
}
.contact-intro p { color: var(--ink-600); }
.contact-intro p + p { margin-top: 1em; }
.contact-details { list-style: none; margin-top: 34px; }
.contact-details li {
  display: flex; gap: 18px; align-items: baseline;
  padding: 14px 0; border-top: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}
.contact-details .lab {
  flex: none; width: 64px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tan);
}
.contact-details a { border-bottom: 1px solid var(--tan-light); padding-bottom: 1px; word-break: break-all; }
.contact-details a:hover { color: var(--tan); }

.booking-form {
  background: var(--paper);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 34px 80px -30px rgba(31, 51, 39, 0.3);
  border: 1px solid var(--border-subtle);
}
.hp { position: absolute; left: -9999px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  font: inherit; font-size: 15.5px;
  color: var(--hunter);
  background: var(--bone);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 13px 16px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  width: 100%;
  -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239b7f65' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--tan);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(155, 127, 101, 0.12);
}
.submit-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin-top: 6px; flex-wrap: wrap;
}
.submit-note { font-size: 12.5px; color: var(--ink-500); max-width: 300px; line-height: 1.5; }

.form-success { text-align: center; padding: 30px 10px; }
.form-success img { width: 54px; margin: 0 auto 18px; opacity: 0.9; }
.form-success h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.9rem; margin-bottom: 10px; }
.form-success p { color: var(--ink-600); margin-bottom: 24px; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer { background: var(--hunter-ink); color: rgba(245, 239, 230, 0.75); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 60px);
  padding-top: clamp(60px, 7vw, 90px);
  padding-bottom: clamp(40px, 5vw, 60px);
}
.footer-brand img { width: 170px; margin-bottom: 18px; filter: brightness(0) saturate(100%) invert(93%) sepia(9%) saturate(313%) hue-rotate(346deg) brightness(103%); opacity: 0.92; }
.footer-brand p { font-size: 0.92rem; max-width: 280px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tan-light); margin-bottom: 16px;
}
.footer-col a, .footer-col span { display: block; padding: 4px 0; font-size: 0.95rem; }
.footer-col a { transition: color 0.3s; }
.footer-col a:hover { color: var(--bone); }
.footer-base {
  max-width: var(--wrap); margin: 0 auto;
  padding: 22px var(--gutter) 30px;
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(245, 239, 230, 0.5);
}
.footer-motto { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--tan-light); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1020px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .price-card-featured { order: -1; }
  .review-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-figure { max-width: 420px; margin: 0 auto; }
  .mission-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-caption { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .insta-grid { gap: 6px; padding: 0 6px; }
  .insta-tile { border-radius: 6px; }
  .hero-content { padding-bottom: 100px; }
  .hero-sub { font-size: 1rem; }
  .btn { padding: 15px 28px; width: 100%; }
  .hero-cta .btn { width: auto; flex: 1; min-width: 150px; padding: 15px 20px; }
  .submit-row .btn { width: 100%; }
  .ba-frame { border-radius: 14px; }
  .ba-handle-knob { width: 44px; height: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-base { flex-direction: column; text-align: center; align-items: center; }
}
