@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #F7F4EF;
  --bg-alt: #EFEAE2;
  --surface: #FFFFFF;
  --ink: #2B2925;
  --muted: #6B6760;
  --line: #E2DCD1;
  --accent: #8A8270;
  --accent-deep: #5F5A4D;
  --radius: 18px;
  --gap-lg: 6rem;
  --gap-md: 3rem;
  --max-w: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: 'Lora', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.25; }
h3 { font-size: 1.25rem; }

p { margin: 0; color: var(--muted); max-width: 65ch; }

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

img { max-width: 100%; display: block; border-radius: var(--radius); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.logo {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 200ms ease;
  cursor: pointer;
}

.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--ink); color: var(--bg); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  margin: 5px 0;
}

/* Hero */
.hero {
  padding: var(--gap-lg) 0 var(--gap-md);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--gap-md);
  align-items: center;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1rem;
  display: block;
}

.hero p.lead {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

.btn-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 200ms ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-deep); }

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-secondary:hover { border-color: var(--ink); }

.hero-image {
  background: var(--bg-alt);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

/* Sections */
section { padding: var(--gap-md) 0; }
section.alt { background: var(--bg-alt); }

.section-head {
  max-width: 640px;
  margin-bottom: var(--gap-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
  align-items: center;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}

.card h3 { margin-bottom: 0.75rem; }

.icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.25rem;
  color: var(--accent-deep);
}

/* Products */
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-card img { border-radius: 0; aspect-ratio: 4/3; object-fit: cover; }

.product-card .body { padding: 1.75rem; }

.product-card .price {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  display: block;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table td { padding: 0.85rem 0; font-size: 0.95rem; }
.spec-table td:first-child { color: var(--muted); width: 40%; }
.spec-table td:last-child { color: var(--ink); }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.feature-list svg { flex-shrink: 0; margin-top: 3px; color: var(--accent-deep); }

/* Quote / testimonial */
blockquote {
  font-family: 'Lora', serif;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
}

cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Form */
form { display: grid; gap: 1.25rem; max-width: 560px; }

.field { display: grid; gap: 0.5rem; }

label { font-size: 0.85rem; color: var(--accent-deep); letter-spacing: 0.02em; }

input, select, textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--accent-deep);
  outline-offset: 1px;
}

textarea { min-height: 130px; resize: vertical; }

.form-note { font-size: 0.85rem; color: var(--muted); margin-top: -0.25rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
}

.contact-info { display: grid; gap: 1.75rem; }
.contact-info .label { font-size: 0.85rem; color: var(--accent-deep); letter-spacing: 0.04em; text-transform: uppercase; }
.contact-info .value { font-family: 'Lora', serif; font-size: 1.2rem; margin-top: 0.4rem; }

.form-success {
  display: none;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: var(--gap-md) 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
.footer-links a { color: var(--muted); font-size: 0.95rem; transition: color 200ms ease; }
.footer-links a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Page hero (non-home) */
.page-hero { padding: var(--gap-md) 0 2rem; }
.page-hero .eyebrow { margin-bottom: 0.75rem; }
.page-hero p { margin-top: 1rem; font-size: 1.05rem; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .hero-grid, .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding-top: 3rem; }
}

@media (max-width: 880px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1.5rem;
    border-bottom: 1px solid var(--line);
    gap: 1.25rem;
  }
}
