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

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

:root {
  --terra:        #8b4a2f;
  --terra-deep:   #6b3520;
  --terra-soft:   #c47a5a;
  --terra-pale:   #e8c4a8;
  --sage:         #6b7c5e;
  --sage-deep:    #4a5c3e;
  --sage-light:   #98a88a;
  --sage-pale:    #d4dcc8;
  --bark:         #5c4a35;
  --bark-light:   #8c7a65;
  --parchment:    #f5edd8;
  --parchment-dark: #ede0c4;
  --mist:         #c8c4b8;
  --mist-deep:    #8a8678;
  --cream:        #faf6ee;
  --rust:         #a85c35;
  --gold-leaf:    #c8a45a;
  --text-dark:    #3a2e1e;
  --text-mid:     #5c4e38;
  --text-muted:   #8a7a65;
  --white:        #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(245, 237, 216, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 74, 47, 0.15);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 44px;
  width: auto;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--terra-deep);
  line-height: 1.2;
}

.nav-brand-sub {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--sage);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--terra); }

.nav-links .nav-cta {
  background: var(--terra);
  color: var(--parchment) !important;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
  margin-left: 8px;
  transition: background 0.2s !important;
}

.nav-links .nav-cta:hover { background: var(--terra-deep) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-mid);
}

/* FOOTER */
.site-footer {
  background: var(--bark);
  padding: 4rem 3rem 2rem;
  border-top: 1px solid rgba(200, 164, 88, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--parchment);
  margin-bottom: 0.4rem;
}

.footer-brand-tag {
  font-family: 'Dancing Script', cursive;
  font-size: 14px;
  color: var(--gold-leaf);
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--mist);
  line-height: 1.7;
  max-width: 280px;
  opacity: 0.7;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-leaf);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--mist);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-col ul li a:hover { opacity: 1; }

.footer-contact-item {
  font-size: 13px;
  color: var(--mist);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.footer-divider {
  height: 1px;
  background: rgba(200, 164, 88, 0.12);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--mist);
  opacity: 0.5;
  letter-spacing: 0.04em;
}

.footer-credit svg { width: 32px; height: 32px; }

.footer-copy {
  font-size: 11px;
  color: var(--mist);
  opacity: 0.3;
  letter-spacing: 0.06em;
}

.footer-privacy {
  font-size: 11px;
  color: var(--mist);
  opacity: 0.4;
}

.footer-privacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* PAGE HERO */
.page-hero {
  background: var(--sage-deep);
  padding: 5rem 3rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(139,74,47,0.15);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(139,74,47,0.15) 0%, transparent 70%);
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero-label {
  font-family: 'Dancing Script', cursive;
  font-size: 18px;
  color: var(--gold-leaf);
  margin-bottom: 0.8rem;
  display: block;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 300;
  color: var(--parchment);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--terra-pale);
}

.page-hero p {
  font-size: 15px;
  color: var(--sage-pale);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.85;
}

/* SECTIONS */
.section { padding: 5rem 3rem; max-width: 1100px; margin: 0 auto; }
.section-full { padding: 5rem 3rem; }
.section-parchment { background: var(--parchment-dark); }
.section-sage { background: var(--sage-deep); }
.section-bark { background: var(--bark); }

.section-label {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
  color: var(--terra-soft);
  display: block;
  margin-bottom: 0.4rem;
}

.section-label-small {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--terra); }
.section-title.light { color: var(--parchment); }
.section-title.light em { color: var(--terra-pale); }

.section-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 560px;
}

.section-body.light { color: var(--sage-pale); opacity: 0.85; }

/* BUTTONS */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-terra {
  background: var(--terra);
  color: var(--parchment);
}
.btn-terra:hover { background: var(--terra-deep); transform: translateY(-2px); }

.btn-outline-terra {
  background: transparent;
  color: var(--terra);
  border: 1px solid rgba(139,74,47,0.4);
}
.btn-outline-terra:hover { border-color: var(--terra); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: var(--parchment);
  border: 1px solid rgba(245,237,216,0.4);
}
.btn-outline-light:hover { border-color: var(--parchment); transform: translateY(-2px); }

.btn-parchment {
  background: var(--parchment);
  color: var(--terra-deep);
}
.btn-parchment:hover { background: var(--cream); transform: translateY(-2px); }

/* FORMS */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.form-group label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra-soft);
  box-shadow: 0 0 0 3px rgba(139,74,47,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* CHECKBOX */
.check-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.check-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--terra); flex-shrink: 0; margin-top: 2px; }
.check-item span { font-size: 14px; color: var(--text-mid); line-height: 1.5; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* EXPANDABLE */
.expand-card {
  background: var(--white);
  border: 1px solid rgba(139,74,47,0.12);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  transition: box-shadow 0.2s;
}

.expand-card:hover { box-shadow: 0 8px 32px rgba(139,74,47,0.08); }

.expand-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  gap: 1rem;
}

.expand-header-left { flex: 1; }

.expand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.expand-price {
  font-size: 13px;
  color: var(--terra-soft);
  letter-spacing: 0.04em;
}

.expand-toggle {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  border: 1px solid rgba(139,74,47,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.expand-toggle:hover { background: var(--terra); color: var(--parchment); }

.expand-body {
  display: none;
  padding: 0 1.6rem 1.6rem;
  border-top: 1px solid rgba(139,74,47,0.08);
}

.expand-body.open { display: block; }

.expand-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.expand-list { list-style: none; margin-bottom: 1rem; }
.expand-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.expand-list li::before { content: '✦'; color: var(--gold-leaf); font-size: 10px; flex-shrink: 0; }

/* LANG TOGGLE */
.lang-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 2rem auto 0;
  border: 1px solid rgba(139,74,47,0.2);
  border-radius: 30px;
  overflow: hidden;
  width: fit-content;
  background: var(--parchment-dark);
}

.lang-btn {
  padding: 10px 28px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  transition: all 0.2s;
  background: transparent;
  color: var(--text-muted);
}

.lang-btn.active {
  background: var(--terra);
  color: var(--parchment);
}

.lang-content { display: none; }
.lang-content.active { display: block; }

/* DISCLAIMER BOX */
.disclaimer {
  background: rgba(139,74,47,0.06);
  border: 1px solid rgba(139,74,47,0.2);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* MOBILE */
@media (max-width: 768px) {
  .site-nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--parchment);
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(139,74,47,0.15);
    z-index: 199;
  }
  .section { padding: 3rem 1.5rem; }
  .section-full { padding: 3rem 1.5rem; }
  .page-hero { padding: 4rem 1.5rem 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
