:root {
  --bg: #f4ede2;
  --bg-soft: #efe3d3;
  --card: rgba(255, 250, 243, 0.8);
  --card-strong: #f9f1e7;
  --text: #2f2419;
  --muted: #6e5b4a;
  --accent: #9f5a31;
  --accent-dark: #6f3f22;
  --line: rgba(63, 43, 25, 0.14);
  --shadow: 0 20px 60px rgba(67, 42, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 32%),
    linear-gradient(180deg, #f2e8d9 0%, #eadbc4 100%);
}

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

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(252, 246, 238, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, #c07d4f 100%);
  color: #fff8f1;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong,
.hero h1,
.section-heading h2,
.contact-banner h2 {
  font-family: "Cormorant Garamond", serif;
}

.brand-text strong {
  font-size: 1.5rem;
  line-height: 1;
}

.brand-text small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.phone-link {
  font-weight: 700;
}

.hero,
.materials-layout,
.contact-banner {
  display: grid;
  gap: 24px;
}

.hero {
  grid-template-columns: 1.2fr 0.8fr;
  padding: 36px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.92), rgba(236, 220, 195, 0.92)),
    var(--card-strong);
  box-shadow: var(--shadow);
  border: 1px solid rgba(75, 51, 31, 0.12);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.contact-banner h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.9rem);
  line-height: 0.96;
}

.hero-text,
.materials-copy p,
.catalog-card p,
.feature-list p,
.timeline p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff8f1;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 12px 28px rgba(111, 63, 34, 0.25);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 252, 248, 0.72);
}

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li::before {
  content: "•";
  margin-right: 10px;
  color: var(--accent);
}

.hero-card,
.catalog-card,
.quote-card,
.timeline article {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
  border-radius: 28px;
}

.card-label {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 700;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-grid article,
.metric-row div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
}

.hero-grid strong,
.feature-list strong,
.timeline strong,
.catalog-card h3 {
  display: block;
  margin-bottom: 8px;
}

.hero-grid span,
.metric-row span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

section {
  margin-top: 26px;
}

.showcase,
.materials,
.process {
  padding: 34px;
  border-radius: 32px;
  background: rgba(251, 245, 235, 0.68);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.catalog-grid,
.timeline,
.feature-list {
  display: grid;
  gap: 18px;
}

.catalog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 26px;
}

.catalog-card span {
  display: inline-block;
  margin-bottom: 28px;
  font-weight: 800;
  color: rgba(47, 36, 25, 0.42);
}

.catalog-card h3 {
  font-size: 1.4rem;
}

.warm {
  background: linear-gradient(135deg, rgba(252, 235, 213, 0.9), rgba(248, 222, 192, 0.85));
}

.sand {
  background: linear-gradient(135deg, rgba(245, 236, 217, 0.9), rgba(234, 223, 196, 0.85));
}

.bark {
  background: linear-gradient(135deg, rgba(223, 203, 181, 0.88), rgba(201, 173, 145, 0.88));
}

.moss {
  background: linear-gradient(135deg, rgba(221, 224, 198, 0.9), rgba(189, 196, 167, 0.85));
}

.materials-layout {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.feature-list {
  margin-top: 24px;
}

.feature-list article,
.timeline article {
  padding: 22px;
  border-radius: 24px;
}

.quote-card {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(116, 71, 39, 0.96), rgba(80, 47, 28, 0.96));
  color: #fff5ec;
}

.quote-card p {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.quote-card span {
  color: rgba(255, 245, 236, 0.72);
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-banner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  color: #fff8f1;
  background:
    radial-gradient(circle at top left, rgba(240, 180, 129, 0.25), transparent 28%),
    linear-gradient(135deg, #6b3e24 0%, #3f281a 100%);
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .materials-layout,
  .contact-banner,
  .timeline,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    justify-items: start;
  }

  .site-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 10px;
  }

  .site-header,
  .hero,
  .showcase,
  .materials,
  .process,
  .contact-banner {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-heading h2,
  .contact-banner h2 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }
}
