:root {
  --maroon: #611e34;
  --maroon-dark: #45142578;
  --maroon-dark-solid: #45142a;
  --wood: #b98a4e;
  --wood-light: #f4ead9;
  --ink: #24191d;
  --ink-soft: #5a4a4f;
  --bg: #fffaf5;
  --surface: #ffffff;
  --border: #ece0d6;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(69, 20, 37, 0.08);
  --container: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5em; font-weight: 700; }

p { margin: 0 0 1em; color: var(--ink-soft); }

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

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--maroon);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--maroon-dark-solid); }
.btn-outline {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}
.btn-outline:hover { background: var(--wood-light); transform: translateY(-2px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand-logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 8px;
}
.brand-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--maroon);
}
.brand-text em { font-style: normal; color: var(--ink-soft); font-weight: 500; }

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--maroon); border-color: var(--wood); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--maroon);
}

/* Background image helper */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Hero */
.hero {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(37, 10, 20, 0.94) 0%, rgba(69, 20, 42, 0.88) 42%, rgba(69, 20, 42, 0.55) 75%, rgba(69, 20, 42, 0.35) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: #fff;
}
.hero .eyebrow { color: var(--wood); }
.hero-sub {
  font-size: 1.08rem;
  max-width: 46ch;
  color: rgba(255,255,255,0.88);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 20px;
}
.btn-outline-light {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.stars { color: var(--wood); letter-spacing: 2px; }

.hero-card {
  background: rgba(255, 250, 245, 0.97);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.4);
}
.hero-card .hero-rating { margin-bottom: 20px; }
.hero-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-card-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
}
.hero-card-list li:first-child { border-top: none; }
.hero-card-list span { color: var(--ink-soft); }
.hero-card-list strong { color: var(--maroon-dark-solid); text-align: right; }

/* Section shared */
section { padding: 84px 0; }
.section-heading { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-heading h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--maroon-dark-solid); }

/* About */
.about { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text { font-size: 1.05rem; margin-bottom: 36px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  background: var(--wood-light);
  border-radius: var(--radius);
  padding: 24px 12px;
}
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--maroon);
}
.stat-label { font-size: 0.85rem; color: var(--ink-soft); }

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--wood-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.product-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--maroon); stroke-width: 2; }
.product-icon svg rect,
.product-icon svg path { fill: var(--maroon); stroke: none; }
.product-card h3 { font-size: 1.1rem; color: var(--ink); }
.product-card p { margin-bottom: 0; font-size: 0.95rem; }
.hsn-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* CTA banner */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(37,10,20,0.92), rgba(97,30,52,0.75));
  z-index: 1;
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-inner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-inner p { color: rgba(255,255,255,0.85); max-width: 50ch; margin: 0 auto 28px; }

/* Why us */
.why-us { position: relative; overflow: hidden; isolation: isolate; }
.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37,10,20,0.94), rgba(97,30,52,0.94));
  z-index: 1;
}
.why-us .container { position: relative; z-index: 2; }
.why-us .eyebrow { color: var(--wood-light); }
.why-us .section-heading h2 { color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(4px);
}
.why-card h3 { color: #fff; font-size: 1.05rem; }
.why-card p { color: rgba(255,255,255,0.75); margin-bottom: 0; font-size: 0.92rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-list { list-style: none; padding: 0; margin: 0 0 28px; }
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-list li:first-child { padding-top: 0; }
.contact-list strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--wood); }
.contact-list a { color: var(--maroon); font-weight: 700; font-size: 1.05rem; }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 320px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* Footer */
.site-footer {
  background: var(--maroon-dark-solid);
  color: rgba(255,255,255,0.75);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text em { color: rgba(255,255,255,0.7); }
.footer-inner p { margin: 0; font-size: 0.85rem; }
.footer-credit {
  display: inline-block;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.5);
}
.footer-credit a { color: inherit; }
.footer-credit a:hover { color: rgba(255,255,255,0.8); text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 16 / 9; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav a { padding: 16px 24px; border-bottom: 1px solid var(--border); }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}
