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

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

:root {
  --cream:    #fdf8f3;
  --cream-2:  #faf2e8;
  --cream-3:  #f5e9d8;
  --white:    #ffffff;
  --peach:    #e8956a;
  --peach-l:  #f5b899;
  --peach-ll: #fde3d0;
  --rose:     #c96b8a;
  --rose-l:   #e099b5;
  --rose-ll:  #f5d6e5;
  --lav:      #9a8ec2;
  --lav-l:    #c2b8e0;
  --lav-ll:   #ece8f7;
  --text:     #2a1f1a;
  --dark:     #3d2e28;
  --gray:     #8a7a70;
  --gray-l:   #b8aaa0;
  --gray-ll:  #d8cec8;
  --border:   #ead8cc;
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Nunito Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(253,248,243,0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 700;
  color: var(--text); text-decoration: none; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--peach), var(--rose));
}
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: 0.86rem; font-weight: 500; color: var(--gray);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  font-size: 0.84rem; font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--peach), var(--rose));
  padding: 0.62rem 1.5rem; border-radius: 100px;
  text-decoration: none; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-mobile-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); margin: 4px 0; border-radius: 2px; }

/* ===== STICKY BAR ===== */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: rgba(253,248,243,0.97);
  border-top: 1px solid var(--border);
  padding: 0.85rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-text { font-size: 0.88rem; color: var(--gray); }
.sticky-bar-text strong { color: var(--text); }
.sticky-bar-btn {
  font-size: 0.84rem; font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--peach), var(--rose));
  padding: 0.65rem 1.8rem; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer;
  white-space: nowrap; transition: opacity 0.2s;
}
.sticky-bar-btn:hover { opacity: 0.88; }

/* ===== PAGE HERO (inner) ===== */
.page-hero {
  padding: 140px 5% 70px; background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 740px; }
.page-tag {
  font-size: 0.73rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--peach); margin-bottom: 1.2rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; line-height: 1.2; color: var(--text); margin-bottom: 1.1rem;
}
.page-hero h1 em { font-style: italic; color: var(--rose); }
.page-hero p { font-size: 1rem; color: var(--gray); max-width: 560px; line-height: 1.8; }
.petal-line {
  width: 48px; height: 3px; border-radius: 8px; margin: 1.5rem 0;
  background: linear-gradient(90deg, var(--peach), var(--rose));
}

/* ===== SECTIONS ===== */
section { padding: 90px 5%; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-label {
  font-size: 0.73rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--peach); margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; line-height: 1.2; color: var(--text); margin-bottom: 0.9rem;
}
.section-title em { font-style: italic; color: var(--rose); }
.section-sub {
  font-size: 1rem; color: var(--gray); max-width: 520px;
  line-height: 1.8; margin-bottom: 2.8rem;
}

/* ===== BUTTONS ===== */
.btn-gradient {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.9rem 2.2rem; color: var(--white);
  background: linear-gradient(135deg, var(--peach), var(--rose));
  font-family: var(--sans); font-size: 0.88rem; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer; border-radius: 100px;
  transition: opacity 0.2s;
}
.btn-gradient:hover { opacity: 0.88; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.9rem 2.2rem; background: transparent; color: var(--text);
  font-family: var(--sans); font-size: 0.88rem; font-weight: 700;
  text-decoration: none; border: 2px solid var(--border);
  cursor: pointer; border-radius: 100px; transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--peach-l); }

/* ===== FORMS ===== */
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray); margin-bottom: 0.45rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%; background: var(--white);
  border: 1.5px solid var(--border); color: var(--text);
  font-family: var(--sans); font-size: 0.95rem;
  padding: 0.85rem 1.1rem; outline: none; border-radius: 14px;
  transition: border-color 0.2s; appearance: none;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--gray-l); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--peach-l); }

/* ===== FOOTER ===== */
footer { background: var(--text); padding: 4rem 5% 2rem; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { font-family: var(--serif); font-size: 1.1rem; color: var(--cream); margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.footer-logo-dot { width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg, var(--peach), var(--rose)); }
.footer-desc { font-size: 0.84rem; color: rgba(255,255,255,0.4); line-height: 1.75; max-width: 280px; }
.footer-col-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--peach-l); margin-bottom: 1.2rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1rem; }
.footer-legal { font-size: 0.75rem; color: rgba(255,255,255,0.3); line-height: 1.7; }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-legal a:hover { color: var(--peach-l); }
.footer-contact a { font-size: 0.84rem; color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact a:hover { color: var(--cream); }
.footer-contact p { font-size: 0.74rem; color: rgba(255,255,255,0.3); margin-top: 0.3rem; }

/* ===== ANIMATIONS ===== */
.animate { opacity:0; transform:translateY(16px); transition:opacity .65s ease,transform .65s ease; }
.animate.visible { opacity:1; transform:translateY(0); }

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .nav-links{display:none}
  .nav-mobile-toggle{display:block}
  .nav-links.open{display:flex;flex-direction:column;gap:0;position:fixed;top:62px;left:0;right:0;background:var(--cream);padding:1rem 0;border-bottom:1px solid var(--border);z-index:199}
  .nav-links.open li{width:100%}
  .nav-links.open a{display:block;padding:.85rem 5%;border-bottom:1px solid var(--border)}
  .footer-top{grid-template-columns:1fr 1fr;gap:2rem}
  .sticky-bar{justify-content:center;text-align:center}
}
@media(max-width:600px){
  section{padding:60px 5%}
  .page-hero{padding:120px 5% 50px}
  .footer-top{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column}
}
