/* ── Clautics — shared styles ── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Syne:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:    #cc785c;
  --orange-lt: #d9936e;
  --orange-dk: #a85e44;
  --bg:        #faf9f7;
  --bg2:       #f3f1ee;
  --bg3:       #ede9e4;
  --surface:   #ffffff;
  --border:    #e0dbd4;
  --text:      #1a1714;
  --text2:     #4a443e;
  --text3:     #7a7168;
  --text4:     #a8a09a;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  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.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000; opacity: 0.4;
}

/* ── Utilities ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.serif { font-family: 'Cormorant Garamond', serif; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(250,249,247,0.94);
  backdrop-filter: blur(16px);
  border-color: var(--border);
  padding: 13px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; letter-spacing: 0.04em;
  color: var(--text); text-decoration: none;
}
.nav-logo svg { width: 26px; height: 26px; }
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text3);
  text-decoration: none; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--orange);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after,
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  font-size: 12px !important; font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  color: #ffffff !important; background: var(--orange);
  border-radius: 6px; padding: 9px 20px !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85 !important; }
.nav-cta::after { display: none !important; }
.nav-mobile-btn {
  display: none; background: none; border: none;
  color: var(--text3); font-size: 22px; cursor: pointer; padding: 4px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(204,120,92,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.page-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--orange); }
.page-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 300; line-height: 0.92;
  letter-spacing: -0.02em; margin-bottom: 28px;
}
.page-h1 em { color: var(--orange); font-style: italic; display: block; }
.page-sub {
  font-size: 17px; color: var(--text2);
  max-width: 560px; line-height: 1.75;
}

/* ── Section ── */
.section { padding: 100px 0; }
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--orange); }
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 300; line-height: 0.97;
  letter-spacing: -0.01em; margin-bottom: 20px;
}
.section-h2 em { color: var(--orange); font-style: italic; }
.section-sub {
  font-size: 17px; color: var(--text2); max-width: 560px; line-height: 1.7;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #ffffff;
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  padding: 16px 32px; border-radius: 8px;
  transition: transform 0.25s, box-shadow 0.25s, opacity 0.2s;
  position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(204,120,92,0.3); opacity: 0.9; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text2); font-size: 14px; font-weight: 500;
  text-decoration: none; padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--orange); border-color: var(--orange); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text2); font-size: 13px; font-weight: 600;
  text-decoration: none; padding: 14px 28px;
  border: 1px solid var(--border); border-radius: 8px;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ── Dividers ── */
.divider { height: 1px; background: var(--border); margin: 0; }
.divider-orange { height: 1px; background: linear-gradient(90deg, var(--orange), transparent); }

/* ── Star sparkle ── */
.star {
  position: absolute; background: var(--orange);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  opacity: 0; animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%,100% { opacity:0; transform:scale(0.5) rotate(0deg); }
  50%      { opacity:0.6; transform:scale(1.2) rotate(20deg); }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg2); padding: 48px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; letter-spacing: 0.04em;
  color: var(--text); text-decoration: none; margin-bottom: 14px;
}
.footer-brand-logo svg { width: 22px; height: 22px; }
.footer-brand-desc { font-size: 13px; color: var(--text3); line-height: 1.65; max-width: 220px; }
.footer-col-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text4); margin-bottom: 16px;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
  font-size: 13px; color: var(--text3); text-decoration: none;
  transition: color 0.2s;
}
.footer-col-links a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--text4); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--orange); }

/* ── Mini CTA Banner (bottom of inner pages) ── */
.mini-cta {
  background: var(--bg3); border-top: 1px solid var(--border);
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.mini-cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(204,120,92,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.mini-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 300;
  line-height: 1; margin-bottom: 24px; position: relative;
}
.mini-cta h2 em { color: var(--orange); font-style: italic; }
.mini-cta p {
  font-size: 16px; color: var(--text2); margin-bottom: 32px;
  position: relative;
}
.mini-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FAQ items ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; cursor: pointer;
  font-size: 17px; font-weight: 600; color: var(--text);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--orange); }
.faq-icon { font-size: 24px; color: var(--orange); transition: transform 0.3s; flex-shrink: 0; margin-left: 24px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 15px; color: var(--text2); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 28px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 20px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg); padding: 100px 32px 40px; gap: 32px; z-index: 99; }
  .nav-links.open a { font-size: 20px; }
  .nav-mobile-btn { display: block; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .container { padding: 0 20px; }
}

/* ── Logo image ── */
.logo-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}
.footer-brand-logo .logo-img {
  width: 22px;
  height: 22px;
}
