/* Home Design Products Ltd — site stylesheet */

:root {
  --ink: #1c1c1c;
  --ink-soft: #4a4a4a;
  --paper: #ffffff;
  --cream: #f7f5f2;
  --line: #e6e2db;
  --accent: #8a6d3b;
  --accent-dark: #6b5329;
  --radius: 4px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
  flex-wrap: wrap;
}
.brand {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand span { color: var(--accent-dark); }
.brand-mark { height: 40px; width: auto; display: block; }
nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
nav.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
}
nav.main-nav a:hover, nav.main-nav a[aria-current="page"] { color: var(--accent-dark); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 600;
}
.btn {
  display: inline-block;
  padding: 11px 20px;
  background: var(--accent-dark);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--ink); }
.btn-outline {
  display: inline-block;
  padding: 10px 19px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0.35) 0%, rgba(20,18,15,0.75) 100%);
}
.hero .wrap { position: relative; padding-top: 80px; padding-bottom: 60px; }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e9dfc9;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.12;
  margin: 0 0 18px;
  max-width: 780px;
}
.hero p.lead {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 0 28px;
  color: #f1ede4;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Sections */
section { padding: 64px 0; }
section.alt { background: var(--cream); }
h2.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 0 0 14px;
}
p.section-lead {
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 0 36px;
  font-size: 1.05rem;
}
.grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--paper);
}
.card h3 { margin-top: 0; font-size: 1.15rem; }
.card p { color: var(--ink-soft); margin-bottom: 0; }

/* Image-led feature blocks */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.feature-row img { border-radius: var(--radius); }
.feature-row.reverse .feature-copy { order: 2; }
@media (max-width: 760px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-copy { order: 0; }
}
.feature-copy h3 { font-size: 1.5rem; margin-top: 0; }

/* Gallery grid */
.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.gallery-grid a {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.gallery-grid a:hover img { transform: scale(1.05); }
.feature-copy p { color: var(--ink-soft); }

/* Reviews */
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--paper);
}
.stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-meta { font-weight: 700; margin-top: 14px; font-size: 0.92rem; }
.review-date { color: var(--ink-soft); font-size: 0.85rem; font-weight: 400; }
.rating-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.rating-score { font-size: 2.4rem; font-weight: 800; }

/* Process steps */
.steps { counter-reset: step; display: grid; gap: 24px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.step h3 { margin: 4px 0 6px; }
.step p { margin: 0; color: var(--ink-soft); }

/* FAQ */
details.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
details.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 1.02rem;
}
details.faq-item p { color: var(--ink-soft); margin: 12px 0 0; }

/* Areas / tags */
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; }
.tag-list li {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.9rem;
}

/* CTA band */
.cta-band {
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d8d3c8; max-width: 560px; margin: 0 auto 28px; }

/* Footer */
footer.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 50px 0 30px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.footer-grid h4 { color: var(--ink); margin: 0 0 12px; font-size: 0.95rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--ink-soft); text-decoration: none; }
.footer-grid a:hover { color: var(--accent-dark); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Page header (for inner pages) */
.page-header { background: var(--cream); padding: 46px 0; border-bottom: 1px solid var(--line); }
.page-header h1 { margin: 0 0 10px; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.page-header p { color: var(--ink-soft); max-width: 640px; margin: 0; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 14px; }
.breadcrumb a { color: var(--ink-soft); }

/* Legal pages */
.legal-content h2 { margin-top: 40px; }
.legal-content p, .legal-content li { color: var(--ink-soft); }

/* Mobile nav toggle (progressive enhancement only — nav links work without JS) */
.nav-toggle { display: none; }
@media (max-width: 880px) {
  nav.main-nav ul { gap: 14px 16px; }
}
