:root {
  --bg: #faf8f4;
  --bg-2: #f0ebe0;
  --panel: #ffffff;
  --card: #ffffff;
  --primary: #1e3a2f;
  --primary-dark: #142a22;
  --accent: #c9a84c;
  --accent-light: #e8c97a;
  --sage: #6b8f71;
  --sage-light: #d4e4d6;
  --text: #2a2a2a;
  --muted: #7a8c7e;
  --outline: rgba(30, 58, 47, 0.13);
  --radius-lg: 24px;
  --radius-md: 14px;
  --shadow-1: 0 8px 40px rgba(30, 58, 47, 0.10);
  --shadow-2: 0 4px 18px rgba(30, 58, 47, 0.08);
  --max-width: 1200px;
}

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

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 10% 0%, rgba(107, 143, 113, 0.18) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 100%, rgba(201, 168, 76, 0.13) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 40%, rgba(240, 235, 224, 0.6) 0%, transparent 60%);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

main {
  display: block;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--outline);
  box-shadow: 0 2px 16px rgba(30, 58, 47, 0.06);
}

.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 60%, var(--accent-light) 100%);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(30, 58, 47, 0.22);
  flex-shrink: 0;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text span:first-child {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.brand-text span:last-child {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--sage-light);
}

.nav-link.active {
  color: var(--panel);
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(30, 58, 47, 0.25);
}

.contact-inline {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: none;
  white-space: nowrap;
}

/* ── BUTTONS ── */
.button,
button {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.22s ease;
  text-decoration: none;
  display: inline-block;
}

.button.primary {
  background: var(--primary);
  color: #ffffff;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(30, 58, 47, 0.28);
}

.button.primary:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.35);
}

.button.ghost {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  background: transparent;
}

.button.ghost:hover {
  background: var(--primary);
  color: white;
}

/* ── PILL BADGE ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sage-light);
  border: 1px solid rgba(107, 143, 113, 0.3);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  padding: 52px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--primary);
  padding: 32px;
  box-shadow: var(--shadow-1);
}

.hero h1 {
  font-size: clamp(1.9rem, 2.8vw + 0.8rem, 2.75rem);
  margin: 14px 0 14px;
  line-height: 1.18;
  color: var(--primary);
}

.lead {
  color: var(--muted);
  font-size: 1.04rem;
  margin-bottom: 20px;
}

.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.bullet-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--outline);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.bullet-list li::before {
  content: "✦";
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  background: linear-gradient(150deg, var(--sage-light) 0%, var(--bg-2) 60%, rgba(201, 168, 76, 0.18) 100%);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(201, 168, 76, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 25% 75%, rgba(107, 143, 113, 0.2) 0%, transparent 50%);
}

.hero-visual img {
  position: relative;
  width: 78%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(30, 58, 47, 0.22));
}

/* ── SECTIONS ── */
.section {
  padding: 28px 0;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-1);
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.3rem, 1.8vw + 0.5rem, 1.9rem);
  margin: 0 0 12px;
  color: var(--primary);
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 860px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-2);
}

.feature-card h3,
.card h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 8px 0 6px;
  color: var(--primary);
  font-size: 1.05rem;
}

.muted {
  color: var(--muted);
}

.stat-card {
  background: linear-gradient(145deg, rgba(212, 228, 214, 0.5) 0%, rgba(250, 248, 244, 0.8) 100%);
  border: 1px solid rgba(107, 143, 113, 0.25);
  border-left: 4px solid var(--sage);
}

.info-block {
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.1) 0%, rgba(250, 248, 244, 0.9) 100%);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-left: 4px solid var(--accent);
}

.image-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--outline);
  box-shadow: var(--shadow-2);
}

/* ── STEPS ── */
.steps {
  display: grid;
  gap: 10px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--outline);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.step:hover {
  border-color: var(--accent);
}

.step-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--sage) 100%);
  display: grid;
  place-items: center;
  color: var(--accent-light);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(30, 58, 47, 0.2);
}

.callout {
  background: var(--bg-2);
  border: 1px solid var(--outline);
  border-radius: var(--radius-md);
  padding: 18px;
}

/* ── ORDER SECTION ── */
.order-section {
  background: linear-gradient(140deg, var(--primary) 0%, #2d5540 100%);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(30, 58, 47, 0.3);
}

.order-section .section-title {
  color: #ffffff;
}

.order-section .muted {
  color: rgba(255,255,255,0.7);
}

.order-section .pill {
  background: rgba(201, 168, 76, 0.25);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--accent-light);
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: center;
}

/* ── FORM ── */
.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1.5px solid var(--outline);
  background: var(--bg);
  color: var(--text);
  font-size: 0.97rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(107, 143, 113, 0.18);
}

.form button.primary {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.38);
  width: 100%;
  font-size: 1rem;
}

.form button.primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.45);
}

/* ── FOOTER ── */
.footer {
  margin-top: 52px;
  background: var(--primary);
  color: rgba(255,255,255,0.85);
}

.footer-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 40px;
  padding: 44px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.footer-col-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin: 0 0 14px;
}

.footer-brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 18px;
}

.footer-legal-table {
  display: grid;
  gap: 6px;
}

.footer-legal-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-legal-label {
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  font-weight: 600;
}

.footer-legal-value {
  color: rgba(255,255,255,0.75);
}

.footer-nav-links {
  display: grid;
  gap: 10px;
}

.footer-nav-links a {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-nav-links a::before {
  content: "→";
  color: var(--accent);
  font-size: 0.8rem;
}

.footer-nav-links a:hover {
  color: var(--accent-light);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.footer-contact-icon {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--accent-light);
}

.footer-contact-item span {
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.footer-bottom {
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom small {
  color: rgba(255,255,255,0.38);
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-bottom-lssi {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
  max-width: 480px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .footer-body {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-body {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0 24px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom-lssi {
    text-align: left;
  }
}

/* ── CONTENT PAGES ── */
.content-page {
  padding: 44px 0 28px;
}

.content-card {
  background: var(--panel);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--accent);
  padding: 32px;
  box-shadow: var(--shadow-1);
}

.content-card h1,
.content-card h2 {
  color: var(--primary);
  margin-top: 0;
}

.content-card h2 {
  font-size: 1.2rem;
  margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--outline);
}

.content-card p {
  margin: 0 0 16px;
  color: var(--text);
}

.content-card ul {
  padding-left: 20px;
  color: var(--text);
}

.content-card ul li {
  margin-bottom: 8px;
}

.list-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid var(--outline);
  background: var(--bg);
  font-weight: 600;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ── LEGAL TEXT ── */
.legal-text p strong {
  color: var(--primary);
}

.legal-text a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── DECORATIVE DIVIDER ── */
.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 999px;
  margin: 0 0 18px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .site-header .inner {
    flex-wrap: wrap;
  }

  .contact-inline {
    display: block;
  }
}

@media (max-width: 640px) {
  :root {
    --radius-lg: 18px;
    --radius-md: 12px;
  }

  body {
    background-image:
      radial-gradient(ellipse at 10% 0%, rgba(107, 143, 113, 0.14) 0%, transparent 50%),
      radial-gradient(ellipse at 90% 100%, rgba(201, 168, 76, 0.10) 0%, transparent 50%);
  }

  .hero {
    padding-top: 36px;
  }

  .panel,
  .hero-card,
  .hero-visual,
  .content-card {
    padding: 20px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .order-section {
    padding: 22px;
  }
}
