*, *::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-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.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-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--gray-4); text-decoration: none; }
.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); }
.page-wrap { padding-top: 92px; }

.hero { background: white; border-bottom: 0.5px solid var(--gray-2); padding: 80px 44px 64px; 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(2.4rem, 5vw, 3.4rem); line-height: 1.1; color: var(--black); margin-bottom: 16px; }
.hero h1 em { color: var(--green); font-style: italic; }
.hero p { font-size: 17px; font-weight: 300; color: var(--gray-4); max-width: 520px; margin: 0 auto; line-height: 1.7; }

.body-wrap { max-width: var(--max); margin: 0 auto; padding: 72px 44px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }

/* CONTACT METHODS */
.contact-methods h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 24px; }
.contact-card { background: white; border: 1px solid var(--gray-2); border-radius: 16px; overflow: hidden; margin-bottom: 12px; display: flex; flex-direction: column; }
.contact-card-inner { padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon.green { background: var(--green-light); }
.contact-icon.wa { background: #E8F9F0; }
.contact-icon.phone { background: var(--green-light); }
.contact-icon.email { background: var(--gray-1); }
.contact-icon svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 1.5; }
.contact-icon.wa svg { stroke: #25D366; }
.contact-body h5 { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.contact-body p { font-size: 13px; color: var(--gray-3); line-height: 1.55; }
.contact-card-link { display: block; padding: 12px 22px; background: var(--gray-1); border-top: 0.5px solid var(--gray-2); font-size: 13px; font-weight: 500; color: var(--black); text-decoration: none; text-align: center; transition: background 0.15s; }
.contact-card-link:hover { background: var(--gray-2); }
.contact-card-link.green { background: var(--green); color: white; }
.contact-card-link.green:hover { background: var(--green-mid); }
.contact-card-link.wa { background: #25D366; color: white; }
.contact-card-link.wa:hover { opacity: 0.9; }

/* BOOKING SECTION */
.booking-section { background: var(--green-pale); border: 1px solid var(--green-light); border-radius: 16px; padding: 28px; margin-top: 24px; }
.booking-section h4 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 8px; }
.booking-section p { font-size: 14px; color: var(--gray-4); line-height: 1.7; margin-bottom: 16px; }
.booking-section a { display: block; background: var(--green); color: white; text-align: center; padding: 13px; border-radius: 10px; font-size: 14px; font-weight: 500; text-decoration: none; }
.booking-section a:hover { background: var(--green-mid); }

/* FORM */
.form-section h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 8px; }
.form-section p { font-size: 14px; color: var(--gray-3); line-height: 1.6; margin-bottom: 24px; }
.form-card { background: white; border: 1px solid var(--gray-2); border-radius: 16px; padding: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-3); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; font-size: 15px; font-family: var(--sans);
  padding: 12px 14px; border: 1.5px solid var(--gray-2); border-radius: 10px;
  background: var(--gray-1); color: var(--black); 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: white; outline: none; }
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; padding: 14px; background: var(--green); color: white; border: none; border-radius: 10px; font-size: 15px; font-weight: 500; font-family: var(--sans); cursor: pointer; transition: background 0.2s; margin-top: 4px; }
.form-submit:hover { background: var(--green-mid); }
.form-note { font-size: 12px; color: var(--gray-3); margin-top: 12px; line-height: 1.5; text-align: center; }
.form-note a { color: var(--green); text-decoration: none; }
.form-success { display: none; background: var(--green-light); border: 1px solid var(--green); border-radius: 10px; padding: 20px; text-align: center; margin-top: 16px; }
.form-success p { font-size: 14px; color: var(--green-dark); line-height: 1.6; }

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

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: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 60px 20px 48px; }
  .body-wrap { padding: 48px 20px; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
