*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --green: #0F6E56; --green-mid: #1D9E75; --green-dark: #085041;
  --green-light: #E8F5F0; --green-pale: #F2FAF7;
  --white: #FFFFFF; --off-white: #FAFAF8; --black: #111111;
  --gray-1: #F5F5F3; --gray-2: #E8E8E4; --gray-3: #9A9A94; --gray-4: #555550;
  --nav-blur: rgba(255,255,255,0.88);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --max: 1000px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--off-white); color: var(--black); -webkit-font-smoothing: antialiased; }
.secondary-bar {
  position: fixed; top: 56px; left: 0; right: 0; z-index: 99;
  height: 36px; background: white; border-bottom: 0.5px solid var(--gray-2);
  display: flex; align-items: center; justify-content: center; gap: 40px;
}
.secondary-bar a {
  font-size: 12px; font-weight: 500; color: var(--green-dark);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  letter-spacing: 0.01em; transition: color 0.2s;
}
.secondary-bar a:hover { color: var(--green); }
.secondary-bar .sep { width: 1px; height: 14px; background: var(--gray-2); }
.bar-arrow {
  font-size: 13px; font-weight: 900; color: var(--green);
  line-height: 1; display: inline-flex; flex-shrink: 0;
  transform: scaleX(1.1);
}
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 56px; background: var(--nav-blur); backdrop-filter: blur(20px); border-bottom: 0.5px solid var(--gray-2); display: flex; align-items: center; justify-content: space-between; padding: 0 44px; }
.nav-cta { background: var(--green); color: white; padding: 7px 18px; border-radius: 50px; font-size: 13px; font-weight: 500; text-decoration: none; }
.nav-reorder {
  border: 1px solid var(--gray-2); color: var(--gray-4);
  padding: 7px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 400; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.nav-reorder:hover { border-color: var(--green); color: var(--green); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--gray-4); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--black); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo span { font-size: 15px; font-weight: 600; color: var(--black); }
.nav-back { font-size: 13px; color: var(--gray-3); text-decoration: none; }
.nav-back:hover { color: var(--black); }
.page-wrap { padding-top: 92px; }

.hero { background: white; border-bottom: 0.5px solid var(--gray-2); padding: 64px 44px 48px; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.eyebrow::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--green); }
.hero h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; color: var(--black); margin-bottom: 12px; }
.hero h1 em { color: var(--green); font-style: italic; }
.hero p { font-size: 16px; font-weight: 300; color: var(--gray-4); max-width: 500px; margin: 0 auto; line-height: 1.7; }

.body-wrap { max-width: var(--max); margin: 0 auto; padding: 56px 44px 80px; }

/* OPTION BLOCKS */
.option-block { margin-bottom: 56px; }
.option-label-row { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.option-num { width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: white; font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.option-label-row h2 { font-family: var(--serif); font-size: 1.6rem; }
.price-tag { color: var(--green); }
.option-sub { font-size: 14px; color: var(--gray-3); margin-bottom: 20px; margin-left: 46px; }

/* TOGGLE */
.appt-toggle { display: flex; gap: 8px; background: var(--gray-1); border-radius: 50px; padding: 5px; margin: 0 0 16px 46px; width: fit-content; }
.appt-toggle-option { position: relative; cursor: pointer; }
.appt-toggle-option input { position: absolute; opacity: 0; pointer-events: none; }
.appt-toggle-option span { display: block; padding: 9px 22px; border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--gray-4); transition: all 0.2s; }
.appt-toggle-option input:checked ~ span { background: var(--green); color: white; }

/* CALENDAR */
.calendar-wrap { background: white; border: 1px solid var(--gray-2); border-radius: 20px; overflow: hidden; margin-left: 46px; }
.calendar-iframe { width: 100%; height: 600px; border: none; display: block; }
.pay-btn { display: block; width: calc(100% - 46px); margin-left: 46px; text-align: center; background: var(--green); color: white; padding: 16px; border-radius: 50px; font-size: 15px; font-weight: 500; text-decoration: none; margin-top: 16px; transition: background 0.2s; }
.pay-btn:hover { background: var(--green-mid); }

/* ORDER CARDS */
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-left: 46px; margin-bottom: 12px; }
.order-card { display: block; border-radius: 16px; padding: 24px; text-decoration: none; transition: transform 0.2s; }
.order-card:hover { transform: translateY(-2px); }
.order-card-green { background: var(--green-pale); border: 1.5px solid var(--green-light); }
.order-card-navy { background: #EBF2FB; border: 1.5px solid #c8daf5; }
.order-card h4 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 6px; color: var(--black); }
.order-card p { font-size: 13px; color: var(--gray-4); line-height: 1.6; margin-bottom: 16px; }
.order-btn { display: inline-block; background: var(--green); color: white; padding: 10px 22px; border-radius: 50px; font-size: 13px; font-weight: 500; }
.order-btn.navy { background: #1a3a6b; }
.extras-line { font-size: 13px; color: var(--gray-3); margin-left: 46px; }
.extras-line em { color: #FF3D7F; font-style: italic; }
.extras-line a { color: var(--green); text-decoration: none; font-weight: 500; }

/* ALTERNATIVES */
.alternatives { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.alt-card { background: white; border: 1px solid var(--gray-2); border-radius: 14px; padding: 18px 20px; display: flex; gap: 12px; align-items: center; text-decoration: none; color: var(--black); transition: border-color 0.15s; }
.alt-card:hover { border-color: var(--green); }
.alt-card .alt-icon { font-size: 20px; flex-shrink: 0; }
.alt-card h5 { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.alt-card p { font-size: 12px; color: var(--gray-3); }

footer { background: var(--black); color: white; padding: 48px 44px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand h4 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 8px; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.8; }
.footer-col h5 { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 8px; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 0.5px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 12px; color: rgba(255,255,255,0.2); display: flex; justify-content: space-between; }
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; }

@media (max-width: 700px) {
  nav { padding: 0 20px; }
  .hero { padding: 48px 20px 36px; }
  .body-wrap { padding: 40px 20px 60px; }
  .option-sub, .appt-toggle, .calendar-wrap, .pay-btn, .order-grid, .extras-line { margin-left: 0; width: 100%; }
  .order-grid { grid-template-columns: 1fr; }
  .alternatives { grid-template-columns: 1fr; }
  footer { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
