/* ============================================================
   jardinmaiorelle.site — Slate & Saffron Theme
   Palette: Deep Slate #1D2E3B | Ivory #FAF6EE | Saffron #C97A1E
            Jade #346B5C | Pearl #EDE8DF
   Fonts: Palatino Linotype (headings) | Verdana (body)
   ============================================================ */

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

:root {
  --slate:   #1D2E3B;
  --slate2:  #253848;
  --ivory:   #FAF6EE;
  --saffron: #C97A1E;
  --saffron2:#A8620F;
  --jade:    #346B5C;
  --jade2:   #275248;
  --pearl:   #EDE8DF;
  --mid:     #D9D1C4;
  --dark:    #1A2330;
  --muted:   #6B7280;
  --light:   rgba(255,255,255,0.88);
  --light2:  rgba(255,255,255,0.55);
  --radius:  4px;
  --shadow:  0 2px 18px rgba(0,0,0,0.09);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background: var(--ivory);
  color: var(--dark);
  line-height: 1.72;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  line-height: 1.22;
  color: var(--slate);
}

a { color: var(--saffron); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ── Notice Bar ── */
#notice-bar {
  background: var(--jade);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 200;
}
#notice-bar span { flex: 1; text-align: center; }
#notice-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.3rem;
  transition: color 0.2s;
}
#notice-close:hover { color: #fff; }

/* ── Site Header ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 150;
  background: var(--slate);
  transition: box-shadow 0.3s;
}
#site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand-name {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1.15rem;
  color: var(--light);
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
}
.brand-name em {
  color: var(--saffron);
  font-style: normal;
}

#main-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  font-size: 0.82rem;
  color: var(--light2);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--saffron);
  background: rgba(201,122,30,0.1);
  text-decoration: none;
}

#nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
#nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: background 0.2s;
}
#nav-toggle:hover span { background: var(--saffron); }

/* ── Hero ── */
#hero {
  background: var(--slate);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(52,107,92,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,122,30,0.12) 0%, transparent 60%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: center;
  position: relative;
}
.hero-left {}
.hero-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.1rem;
}
.hero-title {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.4rem;
}
.hero-title em {
  color: var(--saffron);
  font-style: normal;
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 1rem;
}
.hero-notice {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--saffron);
  color: #fff;
  font-size: 0.88rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--saffron2); text-decoration: none; }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--saffron); color: var(--saffron); text-decoration: none; }

/* Hero right panel */
.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 2rem 1.8rem;
}
.hp-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.4rem;
}
.hp-stat {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hp-stat:last-child { border-bottom: none; }
.hp-val {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}
.hp-val em { color: var(--saffron); font-style: normal; }
.hp-desc { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ── Overview Strip ── */
#overview {
  background: var(--saffron);
  padding: 0;
}
.ov-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ov-item {
  padding: 2.2rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.ov-item:last-child { border-right: none; }
.ov-num {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ov-label { font-size: 0.78rem; color: rgba(255,255,255,0.82); letter-spacing: 0.04em; }

/* ── Generic section wrapper ── */
.section { padding: 5rem 0; }
.section.bg-pearl { background: var(--pearl); }
.section.bg-slate { background: var(--slate); }
.section.bg-jade { background: var(--jade); }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.sec-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.5rem;
}
.sec-label.on-dark { color: var(--saffron); }
.sec-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--slate);
  margin-bottom: 0.5rem;
}
.sec-title.on-dark { color: #fff; }
.sec-divider {
  width: 48px;
  height: 3px;
  background: var(--saffron);
  margin: 1rem 0 2.4rem;
}
.sec-lead {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 2.5rem;
}
.sec-lead.on-dark { color: rgba(255,255,255,0.65); }

/* ── Garden Section ── */
.garden-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
}
.garden-body p { margin-bottom: 1.1rem; color: #3A3028; font-size: 0.97rem; }
.garden-sidebar {}
.g-fact {
  background: var(--ivory);
  border-left: 3px solid var(--saffron);
  padding: 1.1rem 1.4rem;
  margin-bottom: 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.g-fact-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.g-fact-val {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1.05rem;
  color: var(--slate);
}

/* ── Flora Grid ── */
.flora-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.flora-card {
  background: var(--ivory);
  border-radius: var(--radius);
  border-top: 4px solid var(--jade);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow);
}
.fc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--jade);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.fc-icon svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; }
.fc-name {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 0.5rem;
}
.fc-body { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── Visit Cards ── */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.visit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow);
  position: relative;
}
.vc-num {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 3rem;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.vc-title {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1.15rem;
  color: var(--slate);
  margin-bottom: 0.7rem;
}
.vc-text { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.vc-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  border: 1px solid var(--saffron);
  border-radius: 3px;
  padding: 0.2rem 0.6rem;
}

/* ── Admission Table ── */
.adm-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.adm-table thead tr {
  background: var(--slate);
  color: #fff;
}
.adm-table th {
  padding: 1rem 1.4rem;
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  font-weight: normal;
  text-align: left;
}
.adm-table td {
  padding: 1rem 1.4rem;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--mid);
  vertical-align: middle;
}
.adm-table tr:last-child td { border-bottom: none; }
.adm-table tr.featured { background: rgba(201,122,30,0.08); }
.adm-table tr.featured td:first-child {
  border-left: 4px solid var(--saffron);
}
.adm-price {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1.15rem;
  color: var(--slate);
}
.adm-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  border: 1px solid var(--saffron);
  border-radius: 3px;
  padding: 0.15rem 0.5rem;
  margin-left: 0.5rem;
}
.adm-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1.2rem;
  font-style: italic;
}

/* ── History ── */
.timeline-wrap {
  position: relative;
  padding-left: 2.5rem;
}
.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 0.6rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--mid);
}
.tl-item {
  position: relative;
  margin-bottom: 2.2rem;
  padding-left: 1rem;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.55rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--saffron);
  border: 2px solid var(--ivory);
}
.tl-year {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.2rem;
}
.tl-title {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 0.4rem;
}
.tl-body { font-size: 0.88rem; color: var(--muted); }

/* ── Two-column timeline layout ── */
.history-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3.5rem;
}

/* ── Tips Layout ── */
.tips-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.tip-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.ti-marker {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.ti-content {}
.ti-title {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.35rem;
}
.ti-text { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── Info Boxes ── */
.info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.info-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.ib-title {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1rem;
  color: var(--saffron);
  margin-bottom: 0.6rem;
}
.ib-text { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ── Pull Quote ── */
.pull-quote {
  border-left: 4px solid var(--saffron);
  padding: 1rem 1.8rem;
  margin: 2.5rem 0;
  background: var(--pearl);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pq-text {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1.2rem;
  color: var(--slate);
  font-style: italic;
  line-height: 1.5;
}
.pq-author { font-size: 0.78rem; color: var(--muted); margin-top: 0.6rem; }

/* ── Contact ── */
#contact { background: var(--ivory); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info {}
.cinfo-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--mid);
}
.cinfo-row:last-of-type { border-bottom: none; }
.ci-label {
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.ci-val {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1rem;
  color: var(--slate);
}
/* Form */
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.form-input, .form-textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--saffron); }
.form-textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  background: var(--saffron);
  color: #fff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.88rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding: 0.9rem 2.4rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--saffron2); }
#form-message {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-top: 1rem;
}
#form-message.success { background: #d1fae5; color: #065f46; }
#form-message.error   { background: #fee2e2; color: #991b1b; }

/* ── Footer ── */
#site-footer {
  background: var(--slate);
  color: var(--light2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1.15rem;
  color: var(--light);
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
}
.footer-brand-name em { color: var(--saffron); font-style: normal; }
.footer-about { font-size: 0.83rem; color: var(--light2); line-height: 1.65; }
.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1rem;
}
.footer-nav-list { list-style: none; }
.footer-nav-list li { margin-bottom: 0.5rem; }
.footer-nav-list a {
  font-size: 0.85rem;
  color: var(--light2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--saffron); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: var(--light2); }
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-legal a {
  font-size: 0.8rem;
  color: var(--light2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--saffron); }
.footer-disc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem 0;
  text-align: center;
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .garden-layout { grid-template-columns: 1fr; }
  .garden-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .history-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #nav-toggle { display: flex; }
  #main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--slate2);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
  #main-nav.open { display: flex; }
  .nav-link { width: 100%; padding: 0.6rem 0.5rem; }
  .ov-inner { grid-template-columns: 1fr 1fr; }
  .ov-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .flora-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .tips-layout { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .ov-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-inner { padding: 3rem 1.2rem; }
}
