/* ========================================
   Essential Bodywork — Styles
   ======================================== */

/* --- Design Tokens --- */
:root {
  --terra: #3D8B8B; --terra-deep: #2D6B6B; --terra-glow: #5EAEAD;
  --bark: #2C3E4A; --bark-soft: #4A6070;
  --cream: #F8F6F3; --linen: #EFE9E1; --sand: #DDD5CA;
  --sage: #7EB5A0; --sage-muted: #9CCAB8;
  --gold: #C9A96E; --gold-light: #DBBE86;
  --white: #FFFFFF; --text: #2C3E4A; --text-soft: #6A7C88;
  --shadow-s: 0 1px 3px rgba(44,62,74,0.06);
  --shadow-m: 0 4px 20px rgba(44,62,74,0.08);
  --shadow-l: 0 12px 40px rgba(44,62,74,0.10);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--terra); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--terra-deep); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; color: var(--bark); }
h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--linen); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 4px; }

/* --- Accessibility --- */
.skip-link { position: absolute; top: -100%; left: 1rem; z-index: 200; padding: 0.75rem 1.5rem; background: var(--terra); color: var(--white); border-radius: 0 0 8px 8px; font-size: 0.88rem; font-weight: 500; text-decoration: none; transition: top 0.2s; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--terra); outline-offset: 2px; border-radius: 4px; }
button:focus-visible, .btn:focus-visible { outline: 2px solid var(--terra); outline-offset: 2px; }
.nav-links a:focus-visible, .mobile-menu-links a:focus-visible { outline: 2px solid var(--terra); outline-offset: 2px; }

/* --- Layout --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
@media (max-width: 639px) { .section { padding: 3rem 0; } }

/* --- Utilities --- */
.text-soft { color: var(--text-soft); }
.text-center { text-align: center; }
.fw-500 { font-weight: 500; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 1.5rem; }
.mb-lg { margin-bottom: 2rem; }
.mb-xl { margin-bottom: 2.5rem; }
.mt-lg { margin-top: 2rem; }
.mt-xl { margin-top: 2.5rem; }

.label { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); display: block; margin-bottom: 0.75rem; }
.divider { display: flex; align-items: center; gap: 0.75rem; width: 80px; margin: 1.25rem 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--sand); }
.divider .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }
.divider-center { margin-left: auto; margin-right: auto; }
.botanical { display: block; margin: 0 auto; opacity: 0.18; color: var(--terra); }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.02em; border: none; border-radius: 100px; cursor: pointer; transition: all 0.35s var(--ease); text-decoration: none; line-height: 1.2; }
.btn-fill { background: var(--terra); color: var(--white); }
.btn-fill:hover { background: var(--terra-deep); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(61,139,139,0.3); }
.btn-outline { background: transparent; color: var(--terra); border: 1.5px solid var(--terra); }
.btn-outline:hover { background: var(--terra); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.15); color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); color: var(--white); transform: translateY(-2px); }
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn-lg { padding: 1rem 2.4rem; font-size: 0.95rem; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }
.btn-svc { font-size: 0.85rem; padding: 0.6rem 1.4rem; }

/* --- Nav --- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem 0; transition: all 0.4s var(--ease); }
.nav.scrolled { background: rgba(248,246,243,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: var(--shadow-s); padding: 0.6rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-body); font-size: 1.05rem; font-weight: 500; letter-spacing: 0.04em; color: rgba(255,255,255,0.9); text-decoration: none; display: flex; align-items: center; gap: 0.6rem; transition: color 0.4s var(--ease); }
.nav.scrolled .nav-logo { color: var(--bark); }
.nav-logo .mark { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.nav-logo .mark svg, .nav-logo .mark img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.nav-links { display: none; align-items: center; gap: 0; }
.nav-links a { padding: 0.45rem 0.75rem; font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.65); border-radius: 6px; transition: all 0.4s var(--ease); }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links a.active { color: rgba(255,255,255,0.9); }
.nav.scrolled .nav-links a { color: var(--bark-soft); }
.nav.scrolled .nav-links a:hover { color: var(--terra); background: rgba(61,139,139,0.05); }
.nav.scrolled .nav-links a.active { color: var(--terra); }
.nav-book { display: none; margin-left: 0.5rem; }
.nav-phone { display: none; font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.65); margin-right: 0.25rem; transition: color 0.4s var(--ease); }
.nav.scrolled .nav-phone { color: var(--bark-soft); }
@media (min-width: 600px) { .nav-phone { display: inline-flex; } }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 1.5px; background: rgba(255,255,255,0.8); border-radius: 1px; transition: all 0.3s var(--ease); }
.nav.scrolled .nav-toggle span { background: var(--bark); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }
@media (min-width: 900px) { .nav-links { display: flex; } .nav-book { display: inline-flex; } .nav-phone { display: inline-flex; } .nav-toggle { display: none; } }

/* --- Mobile Menu --- */
.mobile-menu { position: fixed; top: 0; right: 0; width: 100%; max-width: 340px; height: 100vh; background: var(--cream); z-index: 102; transform: translateX(100%); transition: transform 0.4s var(--ease); padding: 0; box-shadow: -8px 0 30px rgba(0,0,0,0.08); display: flex; flex-direction: column; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--sand); flex-shrink: 0; }
.mobile-menu-header span { font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: var(--bark); letter-spacing: 0.04em; }
.mobile-menu-close { width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--linen); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--bark-soft); transition: all 0.25s; }
.mobile-menu-close:hover { background: var(--sand); }
.mobile-menu-close svg { width: 18px; height: 18px; }
.mobile-menu-links { flex: 1; overflow-y: auto; padding: 0.5rem 1.5rem; }
.mobile-menu-links a { display: block; padding: 0.9rem 0; font-size: 1rem; color: var(--bark); border-bottom: 1px solid var(--sand); text-decoration: none; }
.mobile-menu-links a:last-child { border-bottom: none; }
.mobile-menu-links a.mob-active { color: var(--terra); font-weight: 500; }
.mobile-menu-footer { padding: 1.25rem 1.5rem; flex-shrink: 0; border-top: 1px solid var(--sand); }
.mobile-menu-footer .btn { width: 100%; justify-content: center; }
.overlay { position: fixed; inset: 0; background: rgba(44,62,74,0.3); z-index: 101; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.overlay.open { opacity: 1; pointer-events: all; }

/* --- Hero --- */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #1A2830 0%, #2C4450 35%, #3A5565 60%, #2C3E4A 100%); }
.hero-img { position: absolute; inset: 0; z-index: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.hero-img .img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; color: rgba(255,255,255,0.25); font-size: 0.85rem; padding: 2rem; background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 40px); }
.hero-bg .wash1 { position: absolute; width: 900px; height: 900px; top: -20%; right: -15%; background: radial-gradient(ellipse, rgba(61,139,139,0.3) 0%, rgba(61,139,139,0.08) 40%, transparent 70%); border-radius: 50%; filter: blur(40px); animation: breathe 8s ease-in-out infinite; }
.hero-bg .wash2 { position: absolute; width: 600px; height: 600px; bottom: -10%; left: -10%; background: radial-gradient(ellipse, rgba(196,162,101,0.2) 0%, transparent 60%); border-radius: 50%; filter: blur(30px); animation: breathe 10s ease-in-out 2s infinite; }
.hero-bg .wash3 { position: absolute; width: 400px; height: 400px; top: 30%; left: 40%; background: radial-gradient(ellipse, rgba(138,158,120,0.12) 0%, transparent 60%); border-radius: 50%; filter: blur(40px); animation: breathe 12s ease-in-out 4s infinite; }
.hero-line { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); opacity: 0.06; z-index: 1; }
@keyframes breathe { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.85; } }
.hero-bg::after { content: ''; position: absolute; inset: 0; opacity: 0.3; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"); background-size: 200px; pointer-events: none; }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 600px; padding: 7rem 0 5rem; }
@media (max-width: 639px) { .hero-content { padding: 5.5rem 0 4rem; } }
.hero-content .label { color: var(--gold-light); }
.hero-label-anim { opacity: 0; animation: rise 0.8s var(--ease) 0.1s forwards; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; font-weight: 400; opacity: 0; animation: rise 0.8s var(--ease) 0.2s forwards; }
.hero h1 em { font-style: italic; color: var(--terra-glow); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 460px; margin-bottom: 2.25rem; line-height: 1.7; opacity: 0; animation: rise 0.8s var(--ease) 0.45s forwards; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; opacity: 0; animation: rise 0.8s var(--ease) 0.65s forwards; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; }
.hero-wave svg { display: block; width: 100%; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }


/* --- Noosa Strip --- */
.noosa-strip { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; padding: 1.25rem 0; font-size: 0.82rem; color: var(--text-soft); letter-spacing: 0.04em; }
.noosa-strip span { display: flex; align-items: center; gap: 0.4rem; }
.noosa-strip svg { width: 14px; height: 14px; color: var(--terra); }

/* --- Intro & Service Cards (Home) --- */
.intro { text-align: center; max-width: 560px; margin: 0 auto; }
.services-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 3rem; }
@media (max-width: 639px) { .services-row { margin-top: 2rem; } }
.s-card { background: var(--white); border-radius: 20px; border: 1px solid rgba(232,221,208,0.6); overflow: hidden; transition: all 0.4s var(--ease); text-decoration: none; display: block; }
.s-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-l); border-color: transparent; }
.s-card-visual { height: 210px; position: relative; overflow: hidden; }
.s-card-visual img { width: 100%; height: 100%; object-fit: cover; }
.s-card-visual .img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; color: rgba(255,255,255,0.6); font-size: 0.75rem; padding: 1rem; line-height: 1.4; }
.s-card:nth-child(1) .s-card-visual { background: linear-gradient(135deg, #B8CDD4, #9CBCC8, #82AABA); }
.s-card:nth-child(2) .s-card-visual { background: linear-gradient(135deg, #C8D4DA, #B0C4CC, #9AB4BE); }
.s-card:nth-child(3) .s-card-visual { background: linear-gradient(135deg, #C0CDD4, #A8BCC5, #96ADB8); }
.s-card:nth-child(4) .s-card-visual { background: linear-gradient(135deg, #B8D8CC, #A0CCB8, #9CCAB8); }
.s-card-visual::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 30px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.s-card-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.7); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.s-card-icon svg { width: 22px; height: 22px; color: var(--terra); }
.s-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.s-card-body h3 { margin-bottom: 0.4rem; font-size: 1.15rem; }
.s-card-body p { color: var(--text-soft); font-size: 0.88rem; margin-bottom: 0.75rem; line-height: 1.6; }
.s-card-body .price { font-family: var(--font-display); font-size: 1rem; color: var(--terra); font-weight: 500; }
@media (min-width: 640px) { .services-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .services-row { grid-template-columns: repeat(4, 1fr); } }

/* Welcome image */
.welcome-img { border-radius: 20px; overflow: hidden; margin: 2.5rem auto; max-width: 720px; aspect-ratio: 16/7; }
.welcome-img img { width: 100%; height: 100%; object-fit: cover; }
.welcome-img .img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--text-soft); font-size: 0.85rem; padding: 2rem; background: var(--linen); border: 2px dashed var(--sand); border-radius: 20px; }

/* --- Bands --- */
.band { background: var(--linen); }
.band-dark { background: var(--bark); color: var(--white); }
.band-dark h3 { color: var(--white); }
.hf-bar { display: flex; align-items: center; gap: 1rem; background: var(--sage); color: var(--white); padding: 1.1rem 1.5rem; border-radius: 12px; font-size: 0.92rem; }
.hf-check { width: 28px; height: 28px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* --- Testimonials --- */
.test-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.test-card { background: var(--white); border-radius: 20px; padding: 2rem; border: 1px solid rgba(232,221,208,0.5); position: relative; transition: all 0.3s var(--ease); }
.test-card:hover { box-shadow: var(--shadow-m); }
.test-card .quote-mark { position: absolute; top: 1rem; left: 1.5rem; font-family: var(--font-display); font-size: 4.5rem; line-height: 1; color: var(--terra); opacity: 0.12; }
.test-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.test-text { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--bark-soft); font-size: 1rem; line-height: 1.65; margin-bottom: 1.25rem; }
.test-author { display: flex; align-items: center; gap: 0.75rem; }
.test-av { width: 36px; height: 36px; border-radius: 50%; background: var(--linen); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--terra); }
.test-meta { flex: 1; }
.test-name { font-weight: 500; font-size: 0.88rem; }
.test-src { font-size: 0.7rem; padding: 0.2rem 0.5rem; border-radius: 100px; font-weight: 500; }
.src-ta { background: #E6F7F2; color: #00875A; }
.src-g { background: #E8F0FE; color: #1A73E8; }
@media (min-width: 640px) { .test-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- About --- */
.about-split { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.about-photo { border-radius: 24px; background: linear-gradient(145deg, #9CBCC8, #82AABA, #5298B0); aspect-ratio: 3/4; position: relative; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: 1; }
.about-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(44,62,74,0.15)); }
.about-photo .ph-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; color: rgba(255,255,255,0.7); z-index: 1; }
.about-photo .ph-inner svg { margin: 0 auto 0.5rem; color: rgba(255,255,255,0.4); }
.about-subtitle { font-family: var(--font-display); font-style: italic; color: var(--terra); font-size: 1.05rem; margin: 0.25rem 0 1.25rem; }
.placeholder-note { font-size: 0.75rem; opacity: 0.7; }
.quals { margin: 1.5rem 0; padding: 1.25rem 1.5rem; background: var(--linen); border-radius: 12px; border-left: 3px solid var(--terra); }
.quals li { list-style: none; padding: 0.3rem 0; font-size: 0.92rem; color: var(--text-soft); display: flex; align-items: baseline; gap: 0.5rem; }
.quals li::before { content: '✦'; color: var(--terra); font-size: 0.6rem; flex-shrink: 0; }
@media (min-width: 768px) { .about-split { grid-template-columns: 0.8fr 1fr; } }

/* --- Services & Pricing --- */
.pricing-wrap { overflow-x: auto; }
.pricing-tbl { width: 100%; min-width: 480px; border-collapse: collapse; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-m); }
.pricing-tbl thead { background: var(--bark); color: var(--white); }
.pricing-tbl th { padding: 0.9rem 1.25rem; text-align: left; font-weight: 500; font-size: 0.85rem; }
.pricing-tbl td { padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--linen); font-size: 0.92rem; }
.pricing-tbl tbody tr:last-child td { border-bottom: none; }
.pricing-tbl .t-name { font-weight: 500; color: var(--bark); }
.pricing-tbl .t-price { color: var(--terra); font-weight: 500; }
.pricing-tbl .t-note { font-size: 0.78rem; color: var(--sage); font-style: italic; }

.svc-img { border-radius: 14px; overflow: hidden; aspect-ratio: 1; flex-shrink: 0; width: 100%; max-width: 200px; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-block { padding: 2.5rem 0; border-bottom: 1px solid var(--sand); max-width: 720px; margin-left: auto; margin-right: auto; display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
.svc-img { margin-top: 0.3rem; }
@media (min-width: 600px) { .svc-block { grid-template-columns: 160px 1fr; } }
.svc-block:last-child { border-bottom: none; }
.svc-block h3 { margin-bottom: 0.5rem; color: var(--terra-deep); }
.svc-block p { color: var(--text-soft); font-size: 0.95rem; }
.svc-prices { font-family: var(--font-display); font-weight: 500; color: var(--terra); margin: 0.75rem 0; font-size: 0.95rem; }
.svc-subtitle { font-weight: 400; color: var(--text-soft); font-size: 0.85em; }
.svc-tag { display: inline-block; font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.65rem; background: var(--sage-muted); color: var(--white); border-radius: 100px; margin-top: 0.35rem; }

/* --- Review Highlights --- */
.highlights-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 640px) { .highlights-row { grid-template-columns: repeat(3, 1fr); } }
.highlight-item { text-align: center; padding: 1.5rem 1.25rem; }
.highlight-item svg { width: 28px; height: 28px; color: var(--terra); margin-bottom: 0.75rem; }
.highlight-item h4 { font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--bark); }
.highlight-item p { font-size: 0.85rem; color: var(--text-soft); line-height: 1.6; }

/* --- Reviews --- */
.review-card { background: var(--white); border-radius: 20px; padding: 2rem; border: 1px solid rgba(232,221,208,0.5); }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.reviewer { display: flex; align-items: center; gap: 0.65rem; }
.reviewer-av { width: 40px; height: 40px; border-radius: 50%; background: var(--linen); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--terra); }
.reviewer-name { font-weight: 500; font-size: 0.9rem; }
.reviewer-date { font-size: 0.78rem; color: var(--text-soft); }
.review-links { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* --- Contact --- */
.contact-split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.c-item { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1.25rem; }
.c-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--linen); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--terra); }
.c-icon svg { width: 18px; height: 18px; }
.c-item h4 { font-size: 0.9rem; margin-bottom: 0.15rem; }
.c-item p, .c-item a { font-size: 0.92rem; color: var(--text-soft); }
.contact-split h3.hours-heading { margin: 2rem 0 0.75rem; }
.hours-note { color: var(--text-soft); font-size: 0.9rem; line-height: 1.7; }
.booking-note { color: var(--terra); font-size: 0.85rem; font-weight: 500; margin-top: 0.75rem; }
.hours-tbl { width: 100%; font-size: 0.88rem; }
.hours-tbl td { padding: 0.35rem 0; border-bottom: 1px solid var(--sand); }
.hours-tbl td:first-child { font-weight: 500; color: var(--bark); padding-right: 1.5rem; }
.hours-tbl td:last-child { color: var(--text-soft); }
.hours-tbl .closed { color: var(--terra); font-style: italic; }
.contact-form { background: var(--white); border-radius: 20px; padding: 2rem; box-shadow: var(--shadow-m); }
.contact-form-intro { font-size: 0.88rem; margin-bottom: 1.25rem; }
.contact-form-submit { width: 100%; justify-content: center; }
.fg { margin-bottom: 1.15rem; }
.fg label { display: block; font-size: 0.82rem; font-weight: 500; margin-bottom: 0.3rem; }
.fg input, .fg textarea { width: 100%; padding: 0.7rem 0.9rem; font-family: var(--font-body); font-size: 0.92rem; border: 1px solid var(--sand); border-radius: 10px; background: var(--cream); color: var(--bark); transition: all 0.25s; }
.fg input:focus, .fg textarea:focus { outline: none; border-color: var(--terra); box-shadow: 0 0 0 3px rgba(61,139,139,0.08); }
.fg textarea { resize: vertical; min-height: 100px; }
.social-row { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--linen); display: flex; align-items: center; justify-content: center; color: var(--bark-soft); transition: all 0.3s var(--ease); }
.social-btn:hover { background: var(--terra); color: var(--white); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; }
.shopfront-img { border-radius: 20px; overflow: hidden; margin-top: 2.5rem; aspect-ratio: 21/9; }
.shopfront-img img { width: 100%; height: 100%; object-fit: cover; }
.shopfront-img .img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0.75rem; color: var(--text-soft); font-size: 0.85rem; padding: 2rem; background: var(--linen); border: 2px dashed var(--sand); border-radius: 20px; min-height: 180px; }
.shopfront-img .img-placeholder svg { color: var(--sand); }
.shopfront-img .img-placeholder small { font-size: 0.75rem; opacity: 0.7; }
.map-box { border-radius: 20px; overflow: hidden; height: 300px; background: var(--linen); margin-top: 2.5rem; box-shadow: var(--shadow-m); }
.map-box iframe { width: 100%; height: 100%; border: 0; }
.map-loading { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--text-soft); font-size: 0.88rem; }
@media (min-width: 768px) { .contact-split { grid-template-columns: 1fr 1fr; } }

/* --- Footer --- */
.footer { background: var(--bark); color: rgba(255,255,255,0.7); padding: 2.5rem 0 1.25rem; }
@media (max-width: 899px) { .footer { padding-bottom: 5rem; } }
.footer-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
.footer-brand { font-family: var(--font-body); font-size: 1.05rem; font-weight: 500; letter-spacing: 0.04em; color: var(--white); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 0.25rem; }
.footer-top .btn { flex-shrink: 0; }
.footer-mid { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; align-items: baseline; margin-bottom: 1.5rem; font-size: 0.85rem; }
.footer-mid a { color: rgba(255,255,255,0.55); }
.footer-mid a:hover { color: var(--gold-light); }
.footer-mid span { color: rgba(255,255,255,0.4); }
.footer-mid .footer-socials { display: flex; gap: 0.4rem; align-items: center; }
.footer-socials a { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.3s var(--ease); }
.footer-socials a:hover { background: var(--terra); color: var(--white); }
.footer-socials svg { width: 14px; height: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.5rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-bottom .footer-rebate { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* --- Page Top Banners --- */
.page-top { color: var(--white); padding: 7.5rem 0 3.5rem; text-align: center; position: relative; overflow: hidden; }
@media (max-width: 639px) { .page-top { padding: 6rem 0 2.5rem; } }
.page-top-bg { position: absolute; inset: 0; overflow: hidden; }
.page-top-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }
#page-about .page-top-bg { background: linear-gradient(145deg, #3A5060, #4A6575, #3A5565); }
#page-services .page-top-bg { background: linear-gradient(145deg, #2C3E4A, #4A6070, #3A5060); }
#page-reviews .page-top-bg { background: linear-gradient(145deg, #283840, #3A4D58, #2C3E4A); }
#page-contact .page-top-bg { background: linear-gradient(145deg, #2C3E4A, #3A5060, #1F3040); }
.page-top-bg::after { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; bottom: -30%; right: 10%; background: radial-gradient(ellipse, rgba(61,139,139,0.2) 0%, transparent 60%); filter: blur(30px); }
.page-top h1 { color: var(--white); font-weight: 400; position: relative; z-index: 1; }
.page-top p { color: rgba(255,255,255,0.82); max-width: 420px; margin: 0.5rem auto 0; font-size: 1rem; position: relative; z-index: 1; }
.page-top .label { color: var(--gold-light); position: relative; z-index: 1; }
.page-top .divider { position: relative; z-index: 1; }
.page-top .divider::before, .page-top .divider::after { background: rgba(255,255,255,0.2); }
.page-top .divider .dot { background: var(--gold-light); }

/* --- Animations --- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); animation: revealFallback 0s 1.5s forwards; }
.reveal.vis { opacity: 1; transform: translateY(0); animation: none; }
@keyframes revealFallback { to { opacity: 1; transform: translateY(0); } }

/* --- SPA Pages --- */
.page { display: none; }
.page.active { display: block; animation: pageFade 0.4s var(--ease); }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

/* --- Sticky Mobile Book Bar --- */
.sticky-book-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: rgba(248,246,243,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--sand); padding: 0.75rem 1.25rem; align-items: center; justify-content: space-between; gap: 0.75rem; box-shadow: 0 -4px 20px rgba(44,62,74,0.08); }
.sticky-book-bar .sticky-info { font-size: 0.82rem; color: var(--bark-soft); line-height: 1.3; }
.sticky-book-bar .sticky-info strong { color: var(--bark); display: block; font-size: 0.88rem; }
.sticky-book-bar .btn { flex-shrink: 0; padding: 0.7rem 1.5rem; font-size: 0.85rem; }
@media (min-width: 900px) { .sticky-book-bar { display: none; } }
