/* ===== GLOWBORA — Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --cream: #FFF8F0;
  --cream-dark: #F5EDE3;
  --peach: #FDDCB5;
  --peach-light: #FEE8CE;
  --coral: #E8734A;
  --coral-dark: #D4623B;
  --coral-light: #F09E7A;
  --text-primary: #2C1810;
  --text-secondary: #6B4F3E;
  --text-muted: #9B8579;
  --white: #FFFFFF;
  --border: rgba(107,79,62,.12);
  --shadow-sm: 0 1px 3px rgba(44,24,16,.06);
  --shadow-md: 0 4px 16px rgba(44,24,16,.08);
  --shadow-lg: 0 12px 40px rgba(44,24,16,.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w: 1180px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ===== UTILITY ===== */
.container { width: 92%; max-width: var(--max-w); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,248,240,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--coral);
  letter-spacing: -.02em;
}
.logo span { color: var(--text-primary); }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: .88rem; font-weight: 500; color: var(--text-secondary);
  position: relative; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--coral); border-radius: 2px; transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--coral); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--coral); color: var(--white) !important;
  padding: 9px 22px; border-radius: 50px; font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--coral-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text-primary);
  border-radius: 2px; transition: var(--transition);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    flex-direction: column; gap: 0;
    background: var(--cream);
    padding: 20px 0;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    display: block; padding: 14px 24px; font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 20px 24px; text-align: center; display: block; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  border: none; cursor: pointer; border-radius: 50px;
  transition: all var(--transition); line-height: 1;
}
.btn-primary {
  background: var(--coral); color: var(--white);
  padding: 15px 34px;
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--coral);
  padding: 13px 30px; border: 2px solid var(--coral);
}
.btn-outline:hover { background: var(--coral); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: .85rem; }

.btn svg { width: 18px; height: 18px; }

/* ===== HERO ===== */
.hero {
  padding: 60px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--peach-light) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15; color: var(--text-primary); margin-bottom: 20px;
}
.hero-text h1 em {
  font-style: italic; color: var(--coral);
}
.hero-text p {
  font-size: 1.08rem; color: var(--text-secondary); margin-bottom: 32px;
  max-width: 480px;
}
.hero-img {
  position: relative;
}
.hero-img img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero-img::after {
  content: ''; position: absolute; inset: -12px;
  border: 2px dashed var(--peach); border-radius: 38px;
  pointer-events: none; opacity: .5;
}

@media (max-width: 768px) {
  .hero { padding: 36px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-img { max-width: 340px; margin: 0 auto; }
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-peach { background: linear-gradient(135deg, var(--peach-light) 0%, var(--cream) 100%); }

.section-header {
  text-align: center; max-width: 640px; margin: 0 auto 50px;
}
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 14px; line-height: 1.2;
}
.section-header p { color: var(--text-secondary); font-size: 1.02rem; }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--coral); margin-bottom: 10px;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid; gap: 26px;
}
.card-grid-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card-grid-2 { grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--peach-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--coral); font-size: 1.4rem;
}

.card h3 {
  font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 10px;
}
.card p { color: var(--text-secondary); font-size: .93rem; }

/* ===== GALLERY ===== */
.gallery-scroll {
  display: flex; gap: 18px; overflow-x: auto; padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--peach); border-radius: 10px; }
.gallery-item {
  flex: 0 0 320px; scroll-snap-align: start;
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 600px) {
  .gallery-item { flex: 0 0 80vw; }
}

/* ===== FORM ===== */
.order-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 44px 38px;
  max-width: 520px; margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.order-form-wrap h3 {
  font-family: var(--font-display); font-size: 1.45rem;
  text-align: center; margin-bottom: 6px;
}
.order-form-wrap .price {
  text-align: center; color: var(--coral); font-weight: 700;
  font-size: 1.7rem; margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  margin-bottom: 6px; color: var(--text-primary);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem;
  background: var(--cream); color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,115,74,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-disclaimer {
  font-size: .78rem; color: var(--text-muted);
  text-align: center; margin-top: 18px; line-height: 1.5;
  padding: 14px; background: var(--cream); border-radius: var(--radius-sm);
}

.form-submit-btn {
  width: 100%; padding: 16px; font-size: 1rem;
  justify-content: center;
}

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; background: none; border: none;
  padding: 22px 0; font-family: var(--font-body);
  font-size: 1rem; font-weight: 600; color: var(--text-primary);
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-question::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  color: var(--coral); transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-answer-inner {
  padding-bottom: 22px; color: var(--text-secondary); font-size: .93rem;
  line-height: 1.7;
}

/* ===== STEPS / TIMELINE ===== */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px; counter-reset: step;
}
.step-card {
  text-align: center; padding: 30px 20px;
  position: relative;
}
.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--coral); color: var(--white);
  font-weight: 700; font-size: 1.1rem;
  margin: 0 auto 18px;
}
.step-card h3 {
  font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 10px;
}
.step-card p { color: var(--text-secondary); font-size: .9rem; }

/* ===== CONTACT INFO ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-item {
  display: flex; gap: 14px; margin-bottom: 24px;
}
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--peach-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral); font-size: 1.1rem;
}
.contact-info-item h4 {
  font-size: .88rem; font-weight: 600; margin-bottom: 2px;
}
.contact-info-item p { color: var(--text-secondary); font-size: .9rem; }
.contact-info-item a { color: var(--coral); font-weight: 500; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-primary); color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
}
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 14px; display: inline-block; }
.footer-brand .logo span { color: rgba(255,255,255,.9); }
.footer-brand p { font-size: .88rem; line-height: 1.6; max-width: 280px; }

.footer-col h4 {
  color: var(--white); font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: .88rem; padding: 5px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--coral-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; text-align: center;
  font-size: .8rem;
}
.footer-bottom a { color: var(--coral-light); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== COOKIE MODAL ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(44,24,16,.1);
  padding: 22px 0;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex; align-items: center; gap: 24px; justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: .88rem; color: var(--text-secondary); flex: 1; min-width: 240px; }
.cookie-inner p a { color: var(--coral); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 50px 0 40px; text-align: center;
  background: linear-gradient(180deg, var(--peach-light) 0%, var(--cream) 100%);
}
.page-header h1 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}
.page-header p { color: var(--text-secondary); font-size: 1rem; max-width: 540px; margin: 0 auto; }

/* ===== PRODUCT DISCLAIMER BANNER ===== */
.product-disclaimer {
  background: var(--cream-dark); padding: 12px 0;
  text-align: center; font-size: .78rem; color: var(--text-muted);
}

/* ===== SUCCESS PAGE ===== */
.success-wrap {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 60px 20px;
}
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--white); font-size: 2.2rem;
}
.success-wrap h1 {
  font-family: var(--font-display); font-size: 2rem; margin-bottom: 14px;
}
.success-wrap p { color: var(--text-secondary); max-width: 460px; margin: 0 auto 30px; }

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 780px; margin: 0 auto; padding: 40px 0 80px;
}
.legal-content h2 {
  font-family: var(--font-display); font-size: 1.4rem;
  margin: 36px 0 14px;
}
.legal-content h3 { font-size: 1.05rem; font-weight: 600; margin: 24px 0 10px; }
.legal-content p, .legal-content li {
  color: var(--text-secondary); font-size: .93rem; margin-bottom: 12px;
}
.legal-content ul { padding-left: 20px; }
.legal-content ul li { list-style: disc; margin-bottom: 6px; }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger */
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.stagger.visible > *:nth-child(1) { transition-delay: .05s; }
.stagger.visible > *:nth-child(2) { transition-delay: .12s; }
.stagger.visible > *:nth-child(3) { transition-delay: .19s; }
.stagger.visible > *:nth-child(4) { transition-delay: .26s; }
.stagger.visible > *:nth-child(5) { transition-delay: .33s; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }
