/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber:       #BA7517;
  --amber-light: #FAEEDA;
  --amber-mid:   #FAC775;
  --amber-dark:  #854F0B;
  --amber-deep:  #633806;
  --text:        #1a1812;
  --text-mid:    #4a4438;
  --text-muted:  #7a7060;
  --bg:          #fdfaf5;
  --bg-tint:     #f7f2ea;
  --bg-card:     #ffffff;
  --border:      rgba(186, 117, 23, 0.15);
  --border-mid:  rgba(186, 117, 23, 0.28);
  --radius:      10px;
  --radius-lg:   16px;
  --font-body:   'DM Sans', sans-serif;
  --font-serif:  'Lora', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── Nav ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo-leaf { width: 26px; height: 26px; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--amber) !important;
  color: var(--amber-light) !important;
  padding: 7px 16px;
  border-radius: var(--radius);
  font-size: 13px !important;
  font-weight: 500;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--amber-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.25s;
}

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 4.5rem;
  text-align: center;
  border-bottom: 0.5px solid var(--border);
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-lines svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}

.hero-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-light);
  border: 0.5px solid var(--amber-mid);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  color: var(--amber);
  font-style: italic;
}

.hero p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Buttons ───────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--amber-light);
  padding: 11px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text-mid);
  padding: 11px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  text-decoration: none;
  border: 0.5px solid var(--border-mid);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber-dark);
}

/* ─── Sections ──────────────────────────────────────── */
.section {
  padding: 4rem 2rem;
  max-width: 920px;
  margin: 0 auto;
}

.section--tinted {
  max-width: 100%;
  background: var(--bg-tint);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 4rem 2rem;
}

.section--tinted > * {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.section-rule {
  flex: 1;
  height: 0.5px;
  background: var(--border-mid);
}

/* ─── Cards ─────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--bg-card);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: var(--amber-mid);
  box-shadow: 0 2px 16px rgba(186, 117, 23, 0.08);
}

.card--featured {
  border-color: var(--amber-mid);
  border-width: 1px;
}

.card--skills {
  opacity: 0.6;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-light);
  border: 0.5px solid var(--amber-mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.card-icon--muted {
  background: var(--bg-tint);
  border-color: var(--border);
  color: var(--text-muted);
}

.card-body { display: flex; flex-direction: column; gap: 0.6rem; }

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.badge--new {
  background: var(--amber-light);
  color: var(--amber-dark);
  border: 0.5px solid var(--amber-mid);
}

.badge--soon {
  background: var(--bg-tint);
  color: var(--text-muted);
  border: 0.5px solid var(--border);
}

.card-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

.card-link {
  display: inline-block;
  font-size: 13px;
  color: var(--amber);
  text-decoration: none;
  margin-top: 0.25rem;
  font-weight: 500;
  transition: color 0.2s;
}

.card-link:hover { color: var(--amber-dark); }
.card-link--muted { color: var(--text-muted); }

/* ─── Sites Section ─────────────────────────────────── */
.sites-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}

.sites-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.sites-copy p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.sites-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.sites-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
}

.sites-includes svg { color: var(--amber); flex-shrink: 0; }

.sites-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.sites-card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.5px solid var(--border);
}

.sites-feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 14px;
}

.sites-feature-name { color: var(--text-mid); }
.sites-feature-value { font-weight: 500; color: var(--text); }

.sites-feature--price {
  padding-top: 1rem;
  margin-top: 0.25rem;
  border-bottom: none;
}

.sites-feature-value--price {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--amber-dark);
}

.sites-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1rem;
  font-style: italic;
}

/* ─── Values ────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
}

.value {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.value-icon {
  width: 36px;
  height: 36px;
  background: var(--amber-light);
  border: 0.5px solid var(--amber-mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.value h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.value p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── About ─────────────────────────────────────────── */
.section--about {
  max-width: 100%;
  background: var(--bg-tint);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 4rem 2rem;
}

.about-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.about-illustration { flex-shrink: 0; padding-top: 0.25rem; }

.about-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 0.85rem;
}

.about-text p:last-child { margin-bottom: 0; }

.about-text a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 0.5px solid var(--amber-mid);
  transition: color 0.2s;
}

.about-text a:hover { color: var(--amber-dark); }

/* ─── Footer ────────────────────────────────────────── */
.footer {
  padding: 2rem;
  border-top: 0.5px solid var(--border);
}

.footer-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-mid);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 720px) {
  .nav { padding: 1rem 1.25rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 0.5px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.75rem 1.5rem;
    width: 100%;
    border-bottom: 0.5px solid var(--border);
  }

  .nav-links a:last-child { border-bottom: none; }

  .nav-cta {
    border-radius: 0 !important;
    padding: 0.75rem 1.5rem !important;
  }

  .nav-toggle { display: flex; }

  .hero { padding: 3.5rem 1.25rem 3rem; }

  .section { padding: 3rem 1.25rem; }

  .section--tinted,
  .section--about { padding: 3rem 1.25rem; }

  .sites-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-inner { flex-direction: column; gap: 1.5rem; }
  .about-illustration { display: none; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ─── Fade-in on scroll ─────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
