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

:root {
  --bg: #fdfbf7;
  --fg: #1f1c18;
  --muted: #6e665e;
  --accent: #b56a2e;
  --accent-dark: #8a4e1f;
  --surface: #f5f0e8;
  --surface-2: #ebe4d8;
  --border: #ddd5c8;
  --success: #3a7d44;
  --cta-bg: #1f1c18;
  --cta-fg: #fdfbf7;
  --radius: 2px;
  --shadow: 0 8px 30px rgba(31,28,24,0.08);
  --shadow-lg: 0 18px 50px rgba(31,28,24,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: -0.01em;
}
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--accent-dark); }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-top: 2.2em; margin-bottom: 0.6em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-top: 1.8em; margin-bottom: 0.5em; }
p { margin-bottom: 1.2em; }
ul, ol { margin-bottom: 1.2em; padding-left: 1.4em; }
li { margin-bottom: 0.5em; }
strong { font-weight: 600; color: var(--fg); }

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-meta {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 40px;
}
.article-meta .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.article-meta time {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-image {
  width: 100%;
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%;
  border-radius: 0;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 2em;
}

.pull-quote {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin: 2.2em 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
}

.inline-image {
  margin: 2.5em 0;
}
.inline-image figcaption {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

.cta-block {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  margin: 2.5em 0;
  text-align: center;
  border-radius: var(--radius);
}
.cta-block h3 {
  margin-top: 0;
  font-size: 1.5rem;
}
.cta-block p {
  color: var(--muted);
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary {
  background: var(--cta-bg);
  color: var(--cta-fg);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
}

.reviews {
  margin: 3em 0;
}
.review-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.review-item img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.review-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.review-content .stars {
  color: #c89b3c;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.review-content p {
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 4px;
}
.review-content .reviewer-name {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 2em 0;
}
.spec-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
}
.spec-card .spec-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
}
.spec-card .spec-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 28px 0;
  margin-top: 48px;
}
.disclaimer p { margin-bottom: 0.6em; }

.footer-nav {
  background: var(--fg);
  color: var(--surface-2);
  padding: 48px 0 32px;
}
.footer-nav a { color: var(--surface-2); text-decoration: none; opacity: 0.85; }
.footer-nav a:hover { opacity: 1; text-decoration: underline; }
.footer-nav h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--surface-2);
  opacity: 0.6;
}
.footer-nav .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; font-size: 0.9rem; }

.company-info {
  background: #141210;
  color: #9e968a;
  padding: 32px 0;
  font-size: 0.8rem;
  line-height: 1.8;
}
.company-info a { color: #bfa88a; }

.back-to-top {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .spec-grid { grid-template-columns: 1fr; }
  .footer-nav .grid { grid-template-columns: 1fr; }
  .review-item { flex-direction: column; }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .container { max-width: 680px; }
}
