/* ============================================
   TULIPS & A CUNT, SHARED STYLES
   Brand palette derived from lush tulip imagery:
   deep forest green, warm cream, dusty rose, dark charcoal
   ============================================ */

:root {
  --white: #FFFFFF;
  --cream: #F8F4EF;
  --cream-2: #F0EAE1;
  --paper: #FDFCFA;
  --ink: #0F120C;
  --ink-2: #1E2219;
  --muted: #5C6155;
  --muted-2: #8C9184;
  --forest: #2D5016;
  --forest-dark: #1A300D;
  --forest-light: #E6EEE0;
  --rose: #C97A72;
  --rose-dark: #9E4A40;
  --rose-light: #F2C4BE;
  --sand: #C9A878;
  --line: rgba(15, 18, 12, 0.10);
  --line-strong: rgba(15, 18, 12, 0.22);
  --radius: 2px;
  --max: 1280px;
  --max-narrow: 920px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.08;
}
h1 { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 400; }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 500; font-family: var(--font-body); letter-spacing: 0; }

p { font-size: 1.0625rem; color: var(--muted); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-forest { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn-forest:hover { background: var(--forest-dark); border-color: var(--forest-dark); }
.btn-rose { background: var(--rose-dark); color: var(--white); border-color: var(--rose-dark); }
.btn-rose:hover { background: #7a3530; border-color: #7a3530; }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--white); }
.btn-outline-forest { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline-forest:hover { background: var(--forest); color: var(--white); }
.btn-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn .arrow { transition: transform 0.2s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }
section { padding: clamp(5rem, 10vw, 9rem) 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Utility bar */
.utility {
  background: var(--forest);
  color: rgba(255,255,255,0.9);
  padding: 0.65rem 1.75rem;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.utility a { color: var(--rose-light); text-decoration: none; font-weight: 500; margin-left: 0.5rem; }
.utility a:hover { color: var(--white); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); line-height: 1; }
.brand-name { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 1.5rem; letter-spacing: 0.005em; }
.brand-sub { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--rose-dark); font-weight: 600; margin-top: 4px; }
.nav-links { display: flex; gap: 2.25rem; list-style: none; font-size: 0.85rem; font-weight: 500; }
.nav-links a { text-decoration: none; color: var(--ink-2); transition: color 0.15s; padding: 0.25rem 0; }
.nav-links a:hover { color: var(--forest); }
.nav-cta { white-space: nowrap; padding: 0.75rem 1.4rem; font-size: 0.75rem; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 0.55rem 0.9rem; cursor: pointer; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); font-family: var(--font-body); font-weight: 500; }
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1.75rem; gap: 1.4rem; border-bottom: 1px solid var(--line); z-index: 99; }
  .nav.open .nav-cta { display: inline-flex; margin: 0 1.75rem 1.75rem; align-self: flex-start; }
}

/* Floating mobile CTA */
.fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90; display: none; box-shadow: 0 12px 30px -8px rgba(45, 80, 22, 0.5); }
@media (max-width: 1080px) { .fab { display: inline-flex; } }

/* Section head */
.section-head { max-width: 720px; margin: 0 auto 4rem; text-align: center; padding: 0 1.75rem; }
.section-head .eyebrow { display: block; margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 1.25rem; }
.section-head h2 em { font-style: italic; color: var(--forest); }
.section-head p { font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* FAQ */
.faq-list { max-width: var(--max-narrow); margin: 0 auto; padding: 0 1.75rem; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 0.85rem; overflow: hidden; border: 1px solid var(--line); transition: border-color 0.2s var(--ease); }
.faq-item[open] { border-color: var(--forest); }
.faq-item summary { padding: 1.5rem 1.75rem; cursor: pointer; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-body); font-size: 1.5rem; color: var(--forest); font-weight: 300; transition: transform 0.3s var(--ease); line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.75rem 1.5rem; }
.faq-item .faq-body p { font-size: 1rem; line-height: 1.65; color: var(--muted); }

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,0.65); padding: 5rem 0 2rem; font-size: 0.9rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 1.8rem; color: var(--white); letter-spacing: 0.005em; line-height: 1; margin-bottom: 0.4rem; }
.footer-brand-sub { font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.36em; text-transform: uppercase; color: var(--rose-light); font-weight: 600; margin-bottom: 1.25rem; }
.footer h5 { font-family: var(--font-body); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--white); margin-bottom: 1.25rem; font-weight: 600; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.65rem; }
.footer a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.15s; }
.footer a:hover { color: var(--rose-light); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 1rem; color: rgba(255,255,255,0.5); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* Contact form */
.contact-form { background: var(--white); padding: 2.5rem; border-radius: var(--radius); position: relative; overflow: hidden; border: 1px solid var(--line); }
.contact-form h3 { margin-bottom: 0.5rem; }
.contact-form > p { font-size: 0.92rem; margin-bottom: 1.75rem; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.form-field label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea { padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 0.95rem; border: 1px solid var(--line-strong); background: var(--white); color: var(--ink); border-radius: var(--radius); transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1); }
.form-field input.invalid { border-color: #C84A38; }
.form-field textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-submit:disabled { opacity: 0.6; cursor: wait; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 1rem; line-height: 1.5; }
.form-success { position: absolute; inset: 0; background: var(--white); display: none; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 3rem 2.5rem; border-radius: var(--radius); }
.form-success.show { display: flex; }
.form-success-mark { width: 64px; height: 64px; border-radius: 50%; background: var(--forest); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 1.5rem; animation: pop 0.4s var(--ease); }
@keyframes pop { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { margin-bottom: 0.85rem; }
.form-success p { font-size: 1rem; max-width: 32ch; line-height: 1.6; }
@media (max-width: 900px) { .form-row { grid-template-columns: 1fr; } }

/* Policy pages */
.policy-body { max-width: 800px; margin: 0 auto; padding: clamp(4rem, 8vw, 7rem) 1.75rem; }
.policy-body h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.5rem; }
.policy-body .eyebrow { display: block; margin-bottom: 1rem; }
.policy-body h2 { font-size: 1.5rem; margin: 2.5rem 0 0.75rem; }
.policy-body p { font-size: 1rem; line-height: 1.75; margin-bottom: 1.25rem; color: var(--muted); }
.policy-body ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.policy-body ul li { font-size: 1rem; line-height: 1.75; color: var(--muted); margin-bottom: 0.5rem; }
.policy-body a { color: var(--forest); text-decoration: underline; }
