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

:root {
  --green:      #2D7A3E;
  --green-dark: #1F5C2E;
  --green-mid:  #3D9450;
  --green-light:#E8F5EB;
  --green-pale: #F3FAF4;
  --text:       #1A1A1A;
  --muted:      #6B7280;
  --border:     #E0EBE2;
  --white:      #FFFFFF;
  --bg:         #F8FBF8;
  --warn:       #E65C00;
  --r:          16px;
  --r-lg:       24px;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

.hero-section { background: var(--white); }

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  padding: 14px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  font-family: 'Raleway', sans-serif;
}
.logo-text { font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 15px; color: var(--text); line-height: 1.2; }
.logo-text span { display: block; font-weight: 400; font-size: 12px; color: var(--muted); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 72px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
@media(max-width:900px){ .hero { grid-template-columns: 1fr; padding: 48px 24px; } .hero-img { display: none; } }

.hero-eyebrow {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--green); }
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.65;
}
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.feat-icon {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.feat-card p { font-size: 13px; color: var(--muted); line-height: 1.45; }
.feat-card p strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.feat-card p em { color: var(--green); font-style: normal; font-weight: 600; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover   { background: var(--green-dark); }
.btn-primary:active  { transform: scale(0.98); }
.btn-primary svg     { flex-shrink: 0; }

.hero-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--green-light);
  min-height: 420px;
}
.hero-img img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.hero-img .img-placeholder {
  width: 100%; height: 420px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  color: var(--green);
}
.hero-img .img-placeholder svg { opacity: 0.4; }
.hero-img .img-placeholder p { font-size: 13px; color: var(--muted); }

/* ── SECTION ── */
.section { padding: 72px 48px; }
.section.bg { background: var(--bg); }
.section.green-bg { background: var(--green); }
@media(max-width:640px){ .section { padding: 48px 20px; } }

.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}
.section-label.white { background: rgba(255,255,255,0.15); color: #fff; }
.section h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.section h2 .accent { color: var(--green); }
.section h2.white-text { color: #fff; }
.section-sub { font-size: 16px; color: var(--muted); margin-bottom: 40px; max-width: 560px; }
.section-sub.white-text { color: rgba(255,255,255,0.75); }

/* ── WHO COMES ── */
.who-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
@media(max-width:700px){ .who-grid { grid-template-columns: 1fr; } }
.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.who-icon {
  font-size: 28px;
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.who-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.who-card p  { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media(max-width:700px){ .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
}
.step-num {
  font-family: 'Raleway', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 10px;
}
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-card p  { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── AFTER SESSION ── */
.after-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media(max-width:700px){ .after-grid { grid-template-columns: 1fr; } }
.after-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.after-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.after-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.after-card p  { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.4; }

/* ── PHOTO BLOCKS ── */
.photo-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
@media(max-width:700px){ .photo-section-grid { grid-template-columns: 1fr; } }
.photo-slot {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--green-light);
  aspect-ratio: 4/3;
  position: relative;
}
.photo-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-section-grid-spaced { margin-top: 36px; }
.photo-slot-on-dark { background: rgba(255,255,255,0.1); }

.family-note-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.family-note {
  background: var(--green-light);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.family-note-arrow { font-size: 20px; }
.family-note p {
  font-size: 14px;
  color: var(--green-dark);
  font-weight: 500;
}

.white-muted { color: rgba(255,255,255,0.7); }
.section-sub-compact { margin-bottom: 32px; }

/* ── GIFT ── */
.gift-section {
  padding: 48px;
  background: var(--green);
}
@media(max-width:640px){ .gift-section { padding: 48px 20px; } }
.gift-layout {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.gift-icon {
  font-size: 56px;
  flex-shrink: 0;
}
.gift-copy {
  flex: 1;
  min-width: 260px;
}
.gift-label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.gift-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(20px,2.5vw,28px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.gift-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 560px;
}
.gift-panel-wrap { flex-shrink: 0; }
.gift-panel {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 18px 24px;
  text-align: center;
}
.gift-panel-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.gift-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.gift-list-item {
  font-size: 13px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 7px;
}
.gift-check { color: #a8f0c6; }

/* ── FORM ── */
.form-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  box-shadow: 0 4px 32px rgba(45,122,62,0.07);
}
@media(max-width:640px){ .booking-card { padding: 24px 20px; } }

.form-title {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media(max-width:540px){ .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group-compact { margin-bottom: 14px; }
.form-group-roomy { margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group label span { color: var(--warn); margin-left: 2px; }
.optional-note {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group .hint {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 2px;
}

.materials-toggle {
  background: var(--green-pale);
  border: 1.5px solid var(--green-light);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.materials-toggle-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.radio-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 9px 16px;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}
.radio-option:has(input:checked) {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
}
.radio-option input { display: none; }

.delivery-block {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
  animation: fadeIn 0.2s ease;
}
.delivery-block.visible { display: flex; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.divider { height: 1px; background: var(--border); margin: 20px 0; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  margin-top: 4px;
  line-height: 1.5;
}
.consent input[type=checkbox] { margin-top: 2px; flex-shrink: 0; accent-color: var(--green); }

.btn-submit {
  width: 100%;
  background: var(--green);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover  { background: var(--green-dark); }
.btn-submit:active { transform: scale(0.98); }
.btn-submit:disabled { background: #9AC8A5; cursor: not-allowed; }

/* ── SUCCESS ── */
.success-box {
  display: none;
  text-align: center;
  padding: 48px 32px;
}
.success-box .tick {
  width: 64px; height: 64px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.success-box h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.success-box p { font-size: 15px; color: var(--muted); }
.success-box .success-note {
  margin-top: 10px;
  font-size: 13px;
}
.meet-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.meet-link:hover { background: var(--green-dark); }

/* ── SLOT PICKER ── */
.slot-dialog {
  position: fixed;
  inset: 50% auto auto 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  width: min(720px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 32px));
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 24px 80px rgba(26,26,26,0.22);
  overflow: hidden;
}
.slot-dialog::backdrop {
  background: rgba(26,26,26,0.42);
}
.slot-dialog-header,
.slot-dialog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.slot-dialog-header h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}
.slot-dialog-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.slot-dialog-close:hover,
.slot-dialog-close:focus {
  border-color: var(--green);
  color: var(--green-dark);
}
.slot-dialog-body {
  min-height: 280px;
  max-height: calc(100vh - 220px);
  padding: 22px;
  overflow: auto;
}
.slot-loading,
.slot-error,
.slot-empty {
  padding: 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.slot-loading {
  background: var(--green-pale);
  color: var(--green-dark);
}
.slot-error {
  background: #FFF4ED;
  border: 1px solid #FFD2B8;
  color: #9A3A00;
}
.slot-empty {
  grid-column: 1 / -1;
  background: var(--green-pale);
  color: var(--muted);
}
.slot-grid {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
}
.slot-days,
.slot-times {
  display: flex;
  gap: 10px;
}
.slot-days {
  flex-direction: column;
}
.slot-times {
  align-content: start;
  align-items: start;
  flex-wrap: wrap;
}
.slot-day,
.slot-time,
.slot-back,
.slot-confirm {
  font-family: 'Nunito', sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.1s;
}
.slot-day {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
.slot-day:hover,
.slot-day:focus,
.slot-day.selected {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
}
.slot-time {
  min-width: 92px;
  padding: 11px 16px;
  border: 1.5px solid var(--green-light);
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 800;
}
.slot-time:hover,
.slot-time:focus {
  border-color: var(--green);
  background: var(--green-light);
}
.slot-time.selected {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}
.slot-dialog-footer {
  border-top: 1px solid var(--border);
  border-bottom: 0;
}
.slot-back,
.slot-confirm {
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}
.slot-back {
  background: var(--bg);
  color: var(--muted);
  border: 1.5px solid var(--border);
}
.slot-back:hover,
.slot-back:focus {
  color: var(--text);
  border-color: var(--green-light);
}
.slot-confirm {
  background: var(--green);
  color: #fff;
}
.slot-confirm:hover,
.slot-confirm:focus {
  background: var(--green-dark);
}
.slot-confirm:disabled {
  background: #9AC8A5;
  cursor: not-allowed;
}

@media(max-width:640px) {
  .slot-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }
  .slot-dialog-header,
  .slot-dialog-footer,
  .slot-dialog-body {
    padding: 16px;
  }
  .slot-dialog-footer {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .slot-grid {
    grid-template-columns: 1fr;
  }
  .slot-days {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .slot-day {
    min-width: 130px;
    text-align: center;
  }
  .slot-time {
    flex: 1 1 96px;
  }
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 32px 20px 48px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
footer strong { color: var(--text); font-weight: 600; }
.footer-copy {
  margin-top: 6px;
  display: block;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.6s ease both; }
.hero-img      { animation: fadeUp 0.6s ease 0.15s both; }
