@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream: #F7F4EF;
  --warm-white: #FDFCFA;
  --charcoal: #1C1C1E;
  --gold: #B08D57;
  --gold-light: #C9A96E;
  --gold-pale: #F0E6D3;
  --muted: #7A7570;
  --border: #E2DAD0;
  --shadow: rgba(28,28,30,0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── HEADER ── */
header {
  background: var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #2e2e30;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: var(--font-display); font-size: 1.45rem; font-weight: 400; color: #fff; letter-spacing: 0.02em; }
.logo-sub { font-size: 0.65rem; font-weight: 300; color: var(--gold-light); letter-spacing: 0.18em; text-transform: uppercase; }
nav { display: flex; gap: 28px; align-items: center; }
nav a { color: #ccc; text-decoration: none; font-size: 0.8rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
nav a:hover, nav a.active { color: var(--gold-light); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: #ccc; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  background: var(--charcoal);
  color: #fff;
  padding: 72px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(176,141,87,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; font-weight: 400; display: block; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; line-height: 1.15; letter-spacing: 0.01em; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { font-size: 1rem; color: #bbb; max-width: 560px; margin: 0 auto 36px; font-weight: 300; line-height: 1.8; }
.hero-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--gold-light); }
.hero-stat span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: #888; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--charcoal);
  color: #fff;
  padding: 48px 24px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(176,141,87,0.15) 0%, transparent 65%); pointer-events: none; }
.page-hero .eyebrow { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; display: block; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 300; letter-spacing: 0.01em; line-height: 1.2; margin-bottom: 14px; }
.page-hero p { font-size: 0.93rem; color: #bbb; max-width: 540px; margin: 0 auto; font-weight: 300; line-height: 1.8; }

/* ── USP STRIP ── */
.usp-strip { background: var(--charcoal); color: #fff; padding: 32px 24px; }
.usp-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.usp-item { display: flex; align-items: flex-start; gap: 14px; }
.usp-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; color: var(--gold-light); }
.usp-item h3 { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.usp-item p { font-size: 0.82rem; color: #999; font-weight: 300; line-height: 1.6; }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 12px 24px; }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 8px; align-items: center; font-size: 0.78rem; color: var(--muted); flex-wrap: wrap; }
.breadcrumb-inner a { color: var(--muted); text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border); }

/* ── WIDGET SECTION ── */
.widget-section { max-width: 1200px; margin: 0 auto; padding: 56px 24px; }
.section-header { margin-bottom: 32px; }
.section-eyebrow { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; line-height: 1.2; letter-spacing: 0.01em; }
.section-header p { color: var(--muted); margin-top: 10px; font-weight: 300; font-size: 0.95rem; max-width: 640px; }
.widget-wrap { border: 1px solid var(--border); border-radius: 2px; overflow: hidden; background: #fff; }
.widget-note { font-size: 0.78rem; color: var(--muted); margin-top: 14px; font-weight: 300; }

/* ── CALCULATOR ── */
.calc-section { background: var(--warm-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 24px; }
.calc-inner { max-width: 800px; margin: 0 auto; }
.calc-inner h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; margin-bottom: 8px; }
.calc-inner > p { color: var(--muted); font-size: 0.93rem; margin-bottom: 28px; font-weight: 300; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.calc-field label { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-weight: 400; }
.calc-field select, .calc-field input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 300;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
}
.calc-btn {
  background: var(--charcoal);
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}
.calc-btn:hover { background: #333; }
.calc-result { margin-top: 20px; padding: 20px 24px; background: var(--gold-pale); border: 1px solid var(--gold); border-radius: 2px; display: none; }
.calc-result.show { display: block; }
.calc-result strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--charcoal); display: block; margin-bottom: 4px; }
.calc-result p { font-size: 0.85rem; color: var(--muted); font-weight: 300; }

/* ── CATEGORY GRID ── */
.categories { background: var(--warm-white); padding: 56px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.categories-inner { max-width: 1200px; margin: 0 auto; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-top: 32px; }
.category-card { background: var(--cream); border: 1px solid var(--border); border-radius: 2px; padding: 24px 16px; text-align: center; text-decoration: none; color: var(--charcoal); transition: all 0.25s; display: block; }
.category-card:hover { border-color: var(--gold); background: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow); }
.category-card .icon { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.category-card strong { display: block; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; margin-bottom: 4px; }
.category-card span { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; }

/* ── BRAND GRID ── */
.brands-section { max-width: 1200px; margin: 0 auto; padding: 56px 24px; }
.brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin-top: 32px; }
.brand-pill { border: 1px solid var(--border); border-radius: 2px; padding: 14px 16px; text-align: center; text-decoration: none; color: var(--charcoal); font-size: 0.82rem; font-weight: 400; letter-spacing: 0.04em; background: var(--warm-white); transition: all 0.2s; display: block; }
.brand-pill:hover { border-color: var(--gold); color: var(--gold); background: #fff; }
.brand-pill.all { color: var(--gold); border-color: var(--gold); }

/* ── SEO TEKST ── */
.seo-text { background: var(--warm-white); border-top: 1px solid var(--border); }
.seo-inner { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.seo-inner h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; margin-bottom: 16px; letter-spacing: 0.01em; }
.seo-inner h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; margin: 28px 0 10px; }
.seo-inner p { color: var(--muted); font-size: 0.93rem; line-height: 1.85; margin-bottom: 14px; font-weight: 300; }
.seo-inner a { color: var(--gold); text-decoration: none; }
.seo-inner a:hover { text-decoration: underline; }
.seo-inner ul { padding-left: 20px; margin-bottom: 14px; }
.seo-inner li { color: var(--muted); font-size: 0.93rem; line-height: 1.85; font-weight: 300; margin-bottom: 4px; }

/* ── FAQ ── */
.faq { max-width: 760px; margin: 0 auto; padding: 0 24px 56px; }
.faq h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; margin-bottom: 24px; letter-spacing: 0.01em; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 18px 0; font-family: var(--font-body); font-size: 0.92rem; font-weight: 400; color: var(--charcoal); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; letter-spacing: 0.02em; }
.faq-question::after { content: '+'; font-size: 1.2rem; color: var(--gold); flex-shrink: 0; font-weight: 300; transition: transform 0.2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 18px; font-size: 0.87rem; color: var(--muted); line-height: 1.8; font-weight: 300; }
.faq-item.open .faq-answer { display: block; }

/* ── FOOTER ── */
footer { background: #111; color: #888; padding: 48px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #222; margin-bottom: 28px; }
.footer-brand .logo-main { color: #e5e5e5; font-size: 1.3rem; }
.footer-brand .logo-sub { color: var(--gold); }
.footer-brand p { font-size: 0.82rem; line-height: 1.75; margin-top: 14px; color: #666; font-weight: 300; }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: #aaa; margin-bottom: 16px; font-weight: 400; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #666; text-decoration: none; font-size: 0.82rem; font-weight: 300; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.75rem; color: #444; }
.footer-bottom a { color: #444; text-decoration: none; }
.footer-bottom a:hover { color: #666; }
.footer-bottom-links { display: flex; gap: 20px; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--charcoal); flex-direction: column; gap: 0; padding: 8px 0; border-top: 1px solid #2e2e30; }
  nav.open { display: flex; }
  nav a { padding: 14px 24px; width: 100%; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { gap: 28px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-grid { grid-template-columns: 1fr; }
}
