:root {
  --cream: #f7f2e9;
  --cream-deep: #f0e8da;
  --taupe: #a4917c;
  --taupe-dark: #8a7663;
  --cocoa: #3f342a;
  --cocoa-soft: #5d4f41;
  --line: #ddd2c2;
  --white: #fffdf9;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--cocoa);
  line-height: 1.6;
  font-size: 16px;
}
h1, h2, h3, .serif { font-family: 'Fraunces', Georgia, serif; font-weight: 500; letter-spacing: .01em; }
img { max-width: 100%; display: block; }
a { color: var(--taupe-dark); text-decoration: none; }
a:hover { color: var(--cocoa); }

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

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,242,233,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1120px; margin: 0 auto; }
.nav img.logo { height: 34px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--cocoa-soft); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.nav-links a.active, .nav-links a:hover { color: var(--cocoa); }
.nav-links a.cta {
  border: 1px solid var(--cocoa); padding: 8px 18px; border-radius: 999px;
  color: var(--cocoa); transition: all .2s;
}
.nav-links a.cta:hover { background: var(--cocoa); color: var(--cream); }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--cocoa); cursor: pointer; }

/* Hero */
.hero { padding: 96px 24px 72px; text-align: center; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }
.hero .kicker { text-transform: uppercase; letter-spacing: .35em; font-size: 12px; color: var(--taupe-dark); margin-bottom: 22px; }
.hero h1 { font-size: clamp(38px, 6vw, 64px); line-height: 1.12; margin-bottom: 20px; }
.hero p.sub { max-width: 560px; margin: 0 auto 36px; color: var(--cocoa-soft); font-size: 18px; }
.hero .btn {
  display: inline-block; background: var(--cocoa); color: var(--cream);
  padding: 14px 34px; border-radius: 999px; font-size: 15px; letter-spacing: .03em;
}
.hero .btn:hover { background: var(--taupe-dark); color: var(--white); }

/* Sections */
section { padding: 72px 0; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head .kicker { text-transform: uppercase; letter-spacing: .3em; font-size: 12px; color: var(--taupe-dark); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p { max-width: 640px; margin: 16px auto 0; color: var(--cocoa-soft); font-size: 16.5px; }

/* Range cards */
.ranges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.range-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; transition: transform .25s, box-shadow .25s;
}
.range-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(63,52,42,.10); }
.range-card img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.range-card .body { padding: 26px; }
.range-card .no { font-size: 12px; letter-spacing: .25em; color: var(--taupe); text-transform: uppercase; }
.range-card h3 { font-size: 24px; margin: 8px 0 10px; }
.range-card p { color: var(--cocoa-soft); font-size: 15px; margin-bottom: 16px; }
.range-card a.more { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid var(--taupe); padding-bottom: 2px; }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev > .text { order: 2; }
.split img { border-radius: 18px; }
.split h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 18px; }
.split p { color: var(--cocoa-soft); margin-bottom: 14px; }

/* Spec table */
.spec-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.spec-table th, .spec-table td { padding: 14px 18px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--line); }
.spec-table th { background: var(--cream-deep); font-family: 'Fraunces', serif; font-weight: 500; }
.spec-table tr:last-child td { border-bottom: none; }

/* Glance band */
.glance { background: var(--cocoa); color: var(--cream); }
.glance .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.glance h3 { color: var(--white); font-size: 22px; margin-bottom: 10px; }
.glance p { color: #d9cfc0; font-size: 14.5px; }
.glance .kicker { color: var(--taupe); }

/* CTA band */
.cta-band { text-align: center; padding: 84px 24px; background: var(--cream-deep); }
.cta-band h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 16px; }
.cta-band p { color: var(--cocoa-soft); max-width: 520px; margin: 0 auto 30px; }

/* Footer */
footer { background: var(--cocoa); color: #cfc4b4; padding: 56px 24px 32px; }
footer .cols { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
footer img.logo { height: 30px; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 14px; }
footer h4 { color: var(--white); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px; font-family: 'Inter', sans-serif; font-weight: 600; }
footer a { color: #cfc4b4; display: block; margin-bottom: 8px; font-size: 14.5px; }
footer a:hover { color: var(--white); }
footer .fine { max-width: 1120px; margin: 36px auto 0; padding-top: 20px; border-top: 1px solid #544739; font-size: 13px; color: #9b8d7b; }

/* Page hero (inner pages) */
.page-hero { padding: 72px 24px 48px; text-align: center; background: var(--cream-deep); }
.page-hero .kicker { text-transform: uppercase; letter-spacing: .3em; font-size: 12px; color: var(--taupe-dark); margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 14px; }
.page-hero p { max-width: 620px; margin: 0 auto; color: var(--cocoa-soft); font-size: 17px; }

/* Design pair cards */
.pairs { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pair { background: var(--white); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.pair img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.pair .body { padding: 24px 26px 28px; }
.pair h3 { font-size: 21px; margin-bottom: 8px; }
.pair p { color: var(--cocoa-soft); font-size: 15px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 32px; }
.contact-card h3 { font-size: 20px; margin-bottom: 10px; }
.contact-card p, .contact-card a { color: var(--cocoa-soft); font-size: 15.5px; }
.contact-card a.inline { display: inline; border-bottom: 1px solid var(--taupe); }

/* About */
.about-quote { font-family: 'Fraunces', serif; font-size: clamp(24px, 3.2vw, 34px); line-height: 1.35; max-width: 760px; margin: 0 auto; text-align: center; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 30px; }
.value h3 { font-size: 19px; margin-bottom: 10px; }
.value p { color: var(--cocoa-soft); font-size: 15px; }

@media (max-width: 860px) {
  .ranges, .glance .grid, .values { grid-template-columns: 1fr; }
  .split, .pairs, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split.rev > .text { order: 0; }
  footer .cols { grid-template-columns: 1fr; gap: 28px; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 18px 24px 26px; gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
}

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 28px; display: block; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(63,52,42,.09); }
.post-card .tag { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--taupe-dark); }
.post-card h3 { font-size: 20px; margin: 10px 0 8px; color: var(--cocoa); }
.post-card p { color: var(--cocoa-soft); font-size: 14.5px; }
article.post { max-width: 720px; margin: 0 auto; }
article.post h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
article.post .meta { color: var(--taupe-dark); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 34px; }
article.post h2 { font-size: 24px; margin: 36px 0 12px; }
article.post p { margin-bottom: 18px; color: var(--cocoa-soft); font-size: 16.5px; }
article.post ul { margin: 0 0 18px 22px; color: var(--cocoa-soft); }
article.post li { margin-bottom: 8px; }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; } }
