/* ============================================================
   GATHER + BLOOM — styles.css
============================================================ */

/* ---- Reset & Base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #FAF7F2;
  --cream-dark:   #F2EDE4;
  --white:        #FFFFFF;
  --accent:       #C8A97E;
  --accent-dark:  #A8885C;
  --text:         #3B2F2F;
  --text-muted:   #7A6A5A;
  --border:       #E4DDD3;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  --container: 1100px;
  --section-gap: 100px;
  --radius: 4px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }

/* ---- Typography ------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

/* ---- Container ------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---- Buttons --------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

/* ---- Section shared -------------------------------------- */
.section { padding-block: var(--section-gap); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 64px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* ============================================================
   NAVIGATION
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--cream-dark);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, #EEE4D4 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 80px;
  grid-column: 1;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-tagline {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-image-placeholder {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 88vh;
  background: linear-gradient(135deg, #EEE4D6 0%, #DDD0BE 100%);
  position: relative;
}

.hero-image-inner {
  opacity: 0.45;
}
.hero-image-inner svg {
  width: 180px;
  height: 180px;
}

/* ============================================================
   PACKAGES
============================================================ */
.packages { background: var(--white); }

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.package-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}
.package-card:hover {
  box-shadow: 0 8px 32px rgba(59,47,47,0.08);
}

.package-image-placeholder {
  height: 240px;
  background: linear-gradient(135deg, #EEE4D6 0%, #DDD0BE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.package-image-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

.package-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-name {
  font-size: 1.65rem;
  font-weight: 400;
  margin-bottom: 24px;
}

.package-includes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.package-includes li {
  padding-left: 18px;
  position: relative;
}
.package-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

.include-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.include-desc {
  display: block;
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.package-pricing {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  padding-block: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-label {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.price-amount {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
}

.price-row--featured .price-label {
  color: var(--text);
}
.price-row--featured .price-amount {
  color: var(--accent-dark);
  font-size: 1.75rem;
}

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--cream-dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #EEE4D6 0%, #CFC0AD 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-inner { opacity: 0.4; }
.about-image-inner svg { width: 140px; height: 140px; }

.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.about-content p:last-child { margin-bottom: 0; }

/* ============================================================
   CONTACT
============================================================ */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row { display: flex; flex-direction: column; gap: 20px; }
.form-row--2col { flex-direction: row; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}

input::placeholder, textarea::placeholder { color: #B8A898; }

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%237A6A5A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 120px; }

/* Form status message */
.form-status {
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  display: none;
}
.form-status.success {
  display: block;
  background: #F0F7EE;
  color: #3A6B35;
  border: 1px solid #C3DFC0;
}
.form-status.error {
  display: block;
  background: #FDF3F2;
  color: #8B2E2E;
  border: 1px solid #F0C8C5;
}

/* Turnstile container spacing */
.cf-turnstile { margin-bottom: 4px; }

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 12px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail a, .contact-detail p:not(.contact-label) {
  font-size: 0.93rem;
  color: var(--text);
  text-decoration: none;
}
.contact-detail a:hover { color: var(--accent); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--text);
  color: #C8B8A8;
  padding-block: 56px;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
}

.footer-tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 0.95rem;
  color: #A89080;
  margin-bottom: 4px;
}

.footer-social {
  color: #A89080;
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.footer-social:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.78rem;
  color: #6A5A4A;
  margin-top: 4px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  :root { --section-gap: 72px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    grid-column: 1;
    grid-row: 2;
    padding-block: 64px;
  }
  .hero-image-placeholder {
    grid-column: 1;
    grid-row: 1;
    min-height: 320px;
  }

  .packages-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-placeholder { aspect-ratio: 16/9; max-height: 320px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { border-top: 1px solid var(--border); padding-top: 40px; }
}

@media (max-width: 640px) {
  :root { --section-gap: 56px; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
  }

  .site-header { position: sticky; }

  .hero-headline { font-size: 2.5rem; }
  .hero-content { padding-block: 48px; }

  .form-row--2col { flex-direction: column; }

  .package-body { padding: 24px; }
}
