/* ============================================
   jardinmajjore.site — Stylesheet
   Palette: Forest Green | Dusty Rose | Cream
   Font: Palatino Linotype / Book Antiqua (serif)
   ============================================ */

:root {
  --green:       #1B4D2E;
  --green-mid:   #2A6B42;
  --green-light: #3A8A56;
  --rose:        #C97B84;
  --rose-light:  #DFA0A8;
  --rose-pale:   #F7ECEE;
  --cream:       #FAF3E0;
  --cream-dark:  #F0E6C8;
  --sand:        #E8D9B5;
  --charcoal:    #1A1A2E;
  --text:        #2C2416;
  --text-soft:   #5C5040;
  --white:       #FFFFFF;
  --border:      #D8C9A8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--cream);
}

h1, h2, h3, h4 {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.45rem, 2.8vw, 2rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

p { margin-bottom: 1rem; }
a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-light); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

/* ============ NAV ============ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--green);
  border-bottom: 3px solid var(--rose);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1080px; margin: 0 auto; padding: 0 24px; height: 60px;
}
.nav-brand {
  font-size: 0.95rem; font-weight: 700; color: var(--cream);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.nav-links { display: flex; list-style: none; gap: 2px; }
.nav-links a {
  display: block; padding: 7px 13px;
  color: rgba(255,255,255,0.75); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 4px; transition: color 0.2s, background-color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--cream); background: rgba(201,123,132,0.25);
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 60px; left: 0; right: 0;
    flex-direction: column; background: var(--green); padding: 10px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 0; padding: 12px 24px; }
}

/* ============ HERO — Split Panel ============ */
.hero {
  padding-top: 60px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--charcoal);
}
.hero-left {
  background: var(--green);
  padding: 80px 56px 80px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-right {
  background: var(--cream-dark);
  padding: 80px 40px 80px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow span {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rose-light);
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 2px; background: var(--rose-light);
}
.hero-left h1 { color: var(--cream); margin-bottom: 20px; }
.hero-left h1 em { color: var(--rose-light); font-style: normal; }
.hero-left p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 420px; margin-bottom: 36px; }
.hero-btn {
  display: inline-block; background: var(--rose); color: var(--white);
  padding: 14px 36px; border-radius: 3px; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background-color 0.2s;
}
.hero-btn:hover { background: var(--rose-light); color: var(--white); }

.hero-facts { display: flex; flex-direction: column; gap: 20px; }
.hero-fact {
  background: var(--white); border-radius: 6px; padding: 20px 22px;
  border-left: 4px solid var(--green); display: flex; align-items: center; gap: 18px;
}
.hero-fact .hf-num {
  font-size: 2rem; font-weight: 700; color: var(--green); line-height: 1;
  min-width: 60px; text-align: center;
}
.hero-fact .hf-label { font-size: 0.9rem; color: var(--text-soft); }
.hero-fact .hf-label strong { display: block; color: var(--text); font-size: 1rem; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left, .hero-right { padding: 60px 24px; }
}

/* ============ INTRO BAND ============ */
.intro-band {
  background: var(--rose); color: var(--white);
  padding: 28px 24px; text-align: center;
  font-size: 0.92rem; letter-spacing: 0.02em;
}
.intro-band strong { font-style: italic; }

/* ============ GARDEN STORY ============ */
.story-section { background: var(--cream); }
.story-grid {
  display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: start;
}
.section-kicker {
  display: inline-block; font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose); border-bottom: 2px solid var(--rose);
  padding-bottom: 3px; margin-bottom: 14px;
}
.story-section h2 { color: var(--green); margin-bottom: 18px; }
.story-section p { color: var(--text-soft); }

.story-panel {
  background: var(--green); color: var(--white);
  border-radius: 8px; padding: 34px 28px; position: sticky; top: 80px;
}
.story-panel h3 { color: var(--rose-light); font-size: 1rem; margin-bottom: 20px;
  letter-spacing: 0.06em; text-transform: uppercase; font-style: italic; }
.fact-row {
  display: flex; justify-content: space-between;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
}
.fact-row:last-child { border-bottom: none; }
.fact-row .fk { color: rgba(255,255,255,0.55); }
.fact-row .fv { color: var(--rose-light); font-weight: 700; }

@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-panel { position: static; }
}

/* ============ TICKET SECTION ============ */
.ticket-section { background: var(--rose-pale); }
.ticket-section h2 { color: var(--green); margin-bottom: 8px; }
.ticket-sub { color: var(--text-soft); margin-bottom: 40px; font-size: 0.95rem; font-style: italic; }

.price-table {
  width: 100%; border-collapse: collapse; margin-bottom: 32px;
  border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(27,77,46,0.08);
}
.price-table thead tr { background: var(--green); }
.price-table thead th {
  padding: 14px 20px; text-align: left; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream);
}
.price-table tbody tr { background: var(--white); transition: background 0.15s; }
.price-table tbody tr:nth-child(even) { background: var(--cream); }
.price-table tbody tr:hover { background: var(--sand); }
.price-table td {
  padding: 14px 20px; font-size: 0.92rem; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.price-table td:last-child { border-bottom: none; }
.price-badge {
  display: inline-block; background: var(--green); color: var(--cream);
  padding: 3px 10px; border-radius: 12px; font-size: 0.82rem; font-weight: 700;
}

.estimate-note {
  background: var(--cream-dark); border: 1px solid var(--border);
  border-radius: 6px; padding: 16px 20px; font-size: 0.87rem;
  color: var(--text-soft); font-style: italic; margin-bottom: 40px;
  line-height: 1.7;
}
.estimate-note strong { color: var(--text); font-style: normal; }

.hours-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.hour-card {
  background: var(--white); border-radius: 6px; padding: 18px 16px;
  border-top: 3px solid var(--green); text-align: center;
  opacity: 0; transform: translateY(14px);
}
.hour-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease; }
.hour-card .hc-season { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--rose); font-weight: 700; margin-bottom: 8px; }
.hour-card .hc-time { font-size: 1.1rem; font-weight: 700; color: var(--green); }
.hour-card .hc-note { font-size: 0.78rem; color: var(--text-soft); margin-top: 6px; }

@media (max-width: 700px) { .hours-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .hours-grid { grid-template-columns: 1fr; } }

/* ============ WHAT TO SEE ============ */
.see-section { background: var(--cream); }
.see-section h2 { color: var(--green); margin-bottom: 8px; }

.see-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  margin-top: 40px;
}
.see-item {
  display: flex; gap: 20px; align-items: flex-start; padding: 28px 26px;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--white); transition: background-color 0.2s;
  opacity: 0; transform: translateX(-16px);
}
.see-item.visible { opacity: 1; transform: translateX(0); transition: opacity 0.4s ease, transform 0.4s ease; }
.see-item:hover { background: var(--cream); }
.see-item:nth-child(even) { border-right: none; }
.see-item:nth-last-child(-n+2) { border-bottom: none; }

.see-num {
  font-size: 2.5rem; font-weight: 700; color: var(--green); opacity: 0.15;
  line-height: 1; min-width: 50px; font-style: italic;
}
.see-body h3 { color: var(--green); margin-bottom: 6px; }
.see-body p { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 0; }
.see-tag {
  display: inline-block; background: var(--rose-pale); color: var(--rose);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; padding: 3px 10px; border-radius: 10px; margin-top: 8px;
  border: 1px solid var(--rose-light);
}

@media (max-width: 640px) {
  .see-grid { grid-template-columns: 1fr; }
  .see-item { border-right: none; }
  .see-item:nth-last-child(1) { border-bottom: none; }
  .see-item:nth-last-child(2) { border-bottom: 1px solid var(--border); }
}

/* ============ PRACTICAL INFO ============ */
.practical-section { background: var(--cream-dark); }
.practical-section h2 { color: var(--green); margin-bottom: 36px; }
.practical-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prac-card {
  background: var(--white); border-radius: 8px; padding: 26px 22px;
  border-bottom: 3px solid var(--rose);
  opacity: 0; transform: translateY(18px);
}
.prac-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.45s ease, transform 0.45s ease; }
.prac-card h3 { color: var(--green); font-size: 1.05rem; margin-bottom: 10px; }
.prac-card p { color: var(--text-soft); font-size: 0.88rem; margin-bottom: 0; }

@media (max-width: 768px) { .practical-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .practical-grid { grid-template-columns: 1fr; } }

/* ============ TIPS ============ */
.tips-section { background: var(--green); }
.tips-section h2 { color: var(--cream); margin-bottom: 8px; }
.tips-sub { color: rgba(255,255,255,0.55); margin-bottom: 40px; font-size: 0.95rem; }
.tips-list { display: flex; flex-direction: column; gap: 1px; }
.tip-row {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 24px; align-items: start; padding: 22px 24px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background-color 0.2s;
  opacity: 0; transform: translateX(-16px);
}
.tip-row.visible { opacity: 1; transform: translateX(0); transition: opacity 0.4s ease, transform 0.4s ease; }
.tip-row:hover { border-left-color: var(--rose); background: rgba(201,123,132,0.08); }
.tip-row + .tip-row { border-top: 1px solid rgba(255,255,255,0.07); }
.tip-n {
  font-size: 1.6rem; font-weight: 700; color: rgba(255,255,255,0.15);
  font-style: italic; text-align: center;
}
.tip-body h3 { color: var(--cream); font-size: 1rem; margin-bottom: 5px; }
.tip-body p { color: rgba(255,255,255,0.58); font-size: 0.88rem; margin-bottom: 0; }

/* ============ INFO LINKS ============ */
.info-section { background: var(--cream); }
.info-section h2 { color: var(--green); margin-bottom: 32px; }
.info-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-col {
  background: var(--white); border-radius: 8px; padding: 26px 22px;
  border: 1px solid var(--border);
}
.info-col h3 {
  color: var(--green); font-size: 0.88rem; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 16px;
  padding-bottom: 8px; border-bottom: 2px solid var(--rose-pale);
}
.info-col ul { list-style: none; }
.info-col ul li { margin-bottom: 9px; }
.info-col ul li a { color: var(--text-soft); font-size: 0.9rem; transition: color 0.2s; }
.info-col ul li a:hover { color: var(--green); }

@media (max-width: 768px) { .info-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .info-cols { grid-template-columns: 1fr; } }

/* ============ CONTACT ============ */
.contact-section { background: var(--charcoal); }
.contact-section h2 { color: var(--cream); margin-bottom: 8px; }
.contact-sub { color: rgba(255,255,255,0.5); margin-bottom: 44px; font-size: 0.95rem; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.cinfo h3 { color: var(--rose-light); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 22px; }
.cdetail { margin-bottom: 18px; }
.cdetail .cd-lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.35); margin-bottom: 3px; }
.cdetail .cd-val { font-size: 0.93rem; color: rgba(255,255,255,0.8); }
.cdetail .cd-val a { color: var(--rose-light); }
.cinfo-note {
  margin-top: 28px; padding: 14px 16px; border-left: 2px solid var(--rose);
  font-size: 0.82rem; color: rgba(255,255,255,0.4); font-style: italic; line-height: 1.6;
}

.cform {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09); border-radius: 8px; padding: 34px 30px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg { display: flex; flex-direction: column; margin-bottom: 14px; }
.fg label {
  font-size: 0.77rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 5px;
}
.fg input, .fg textarea {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px; padding: 11px 14px; color: var(--white);
  font-family: inherit; font-size: 0.93rem; outline: none; transition: border-color 0.2s;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.25); }
.fg input:focus, .fg textarea:focus { border-color: var(--rose-light); }
.fg textarea { resize: vertical; min-height: 88px; }
.form-btn {
  width: 100%; background: var(--rose); color: var(--white); border: none;
  padding: 13px 28px; border-radius: 4px; font-family: inherit;
  font-size: 0.92rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer; transition: background-color 0.2s;
}
.form-btn:hover { background: var(--rose-light); }

@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.site-footer { background: #0D1A0F; }
.footer-main {
  padding: 52px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
.fcol h4 {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--rose-light); margin-bottom: 16px; padding-bottom: 6px;
  border-bottom: 1px solid rgba(201,123,132,0.25);
}
.fcol p { font-size: 0.86rem; color: rgba(255,255,255,0.4); line-height: 1.65; }
.fcol ul { list-style: none; }
.fcol ul li { margin-bottom: 9px; }
.fcol ul li a { color: rgba(255,255,255,0.45); font-size: 0.86rem; transition: color 0.2s; }
.fcol ul li a:hover { color: var(--rose-light); }
.footer-bottom {
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px; font-size: 0.83rem; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--rose-light); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============ DISCLAIMER BAR ============ */
.disc-bar {
  background: var(--rose-pale); border-top: 2px solid var(--rose);
  padding: 10px 24px; text-align: center; font-size: 0.79rem;
  color: var(--text-soft); position: sticky; bottom: 0; z-index: 900;
}
.disc-bar a { color: var(--green); font-weight: 700; }

/* ============ ANIMATIONS ============ */
.fade-up { opacity: 0; transform: translateY(20px); }
.fade-up.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in { opacity: 0; }
.fade-in.visible { opacity: 1; transition: opacity 0.6s ease; }
