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

:root {
  --cream: #F4EFE6;
  --cream-dark: #E8E0D2;
  --ink: #1A1612;
  --ink-soft: #3D342A;
  --sage: #6B7A5C;
  --sand: #C8A97A;
  --white: #FDFAF5;
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* TOP BAR */
.topbar { background: var(--ink); color: var(--cream); text-align: center; padding: 0.7rem 1rem; }
.topbar-name { font-family: var(--fd); font-size: 1rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; display: block; }
.topbar-tagline { font-size: 0.73rem; font-weight: 300; letter-spacing: 0.06em; color: rgba(244,239,230,0.75); display: block; margin-top: 0.2rem; }
.topbar-location { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,239,230,0.4); display: block; margin-top: 0.2rem; }

/* SLIDESHOW */
.slideshow-wrap { width: 100%; max-width: 800px; margin: 0 auto; }
.slideshow-square { width: 100%; padding-top: 100%; position: relative; overflow: hidden; background: #111; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* TICKER */
.ticker-wrap { width: 100%; max-width: 800px; margin: 0 auto; overflow: hidden; background: var(--cream-dark); border-top: 1px solid rgba(26,22,18,0.08); padding: 0.6rem 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 24s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { font-family: var(--fd); font-size: 1rem; font-weight: 400; font-style: italic; color: var(--ink-soft); white-space: nowrap; padding: 0 0.4rem; }
.ticker-dot { color: var(--sage); padding: 0 0.3rem; font-size: 0.8rem; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* PRICING */
.pricing { padding: 4rem 2rem; background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto; }
.price-card { background: var(--white); border-radius: 2px; overflow: hidden; }
.price-card-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.price-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.price-card:hover .price-card-img img { transform: scale(1.04); }
.price-card-body { padding: 1.5rem 1.5rem 2rem; }
.price-card-body h3 { font-family: var(--fd); font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; }
.price-card-body p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.2rem; }
.price-tag { font-family: var(--fd); font-size: 1.9rem; font-weight: 300; color: var(--sage); }
.price-tag small { font-family: var(--fb); font-size: 0.72rem; color: var(--ink-soft); display: block; margin-top: 0.15rem; letter-spacing: 0.04em; }

/* FORM SECTION */
.form-section { background: var(--cream-dark); padding: 3.5rem 2rem; }
.form-inner { max-width: 600px; margin: 0 auto; }
.form-inner h3 { font-family: var(--fd); font-size: 1.8rem; font-weight: 300; color: var(--ink); margin-bottom: 1.5rem; }
.form-inner h3 em { font-style: italic; color: var(--sage); }

/* CAPTCHA */
.captcha-wrap { margin-top: 2rem; }
.captcha-label-text { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.6rem; display: block; }
.captcha-gate { background: var(--white); border-radius: 2px; padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.75rem; cursor: pointer; border: 1px solid rgba(26,22,18,0.12); user-select: none; }
.captcha-cb { width: 20px; height: 20px; flex-shrink: 0; border: 1.5px solid rgba(26,22,18,0.3); border-radius: 3px; background: var(--white); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.captcha-cb.checked { background: var(--sage); border-color: var(--sage); }
.captcha-cb.checked::after { content: '✓'; color: white; font-size: 12px; line-height: 1; }
.captcha-label { font-size: 0.85rem; color: var(--ink-soft); }
.captcha-branding { margin-left: auto; font-size: 0.65rem; color: rgba(26,22,18,0.3); text-align: center; line-height: 1.3; }
.contact-revealed { display: none; flex-direction: column; gap: 0.6rem; margin-top: 0.75rem; }
.contact-revealed.show { display: flex; }
.contact-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--ink-soft); }
.contact-item svg { width: 15px; height: 15px; color: var(--sage); flex-shrink: 0; }
.contact-item a { color: var(--sage); text-decoration: none; }

/* ABOUT */
.about-section { background: var(--cream); padding: 4rem 2rem; }
.about-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 3.5rem; align-items: start; }
.about-photo { border-radius: 2px; overflow: hidden; }
.about-photo img { width: 100%; display: block; border-radius: 2px; }
.about-text h2 { font-family: var(--fd); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 300; line-height: 1.15; color: var(--ink); margin-bottom: 1.2rem; }
.about-text h2 em { font-style: italic; color: var(--sage); }
.about-text p { font-size: 0.97rem; font-weight: 300; color: var(--ink-soft); line-height: 1.85; margin-bottom: 0.9rem; }
.about-sig { font-family: var(--fd); font-size: 1.7rem; font-style: italic; font-weight: 300; color: var(--sand); margin-top: 1.5rem; display: block; }

/* TESTIMONIALS */
.testimonials { background: var(--ink); padding: 4rem 2rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.testimonial { padding: 2rem; border: 1px solid rgba(244,239,230,0.12); border-radius: 2px; }
.testimonial-quote { font-family: var(--fd); font-style: italic; font-size: 1.1rem; font-weight: 300; color: var(--cream); line-height: 1.65; margin-bottom: 1.2rem; }
.testimonial-stars { color: var(--sand); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.6rem; }
.testimonial-author { font-size: 0.8rem; color: rgba(244,239,230,0.5); }
.testimonial-author strong { display: block; color: rgba(244,239,230,0.8); font-weight: 400; margin-bottom: 2px; }

footer { background: var(--ink); color: rgba(244,239,230,0.35); padding: 1.5rem 2rem; text-align: center; font-size: 0.78rem; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo { max-width: 260px; margin: 0 auto; }
  .about-text { text-align: center; }
  .form-section, .pricing, .testimonials, .about-section { padding: 2.5rem 1.25rem; }
}
