:root {
  color-scheme: only light;
  --sand: #f5eadc;
  --linen: #fdf7f0;
  --clay: #d9b59a;
  --rust: #b07a53;
  --walnut: #6b4b36;
  --ink: #2b1c14;
  --sage: #8a9a8b;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(46, 28, 19, 0.14);
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Work Sans", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: linear-gradient(180deg, #fcf4ea 0%, #f4e5d5 45%, #fdf7f0 100%);
  color: var(--ink);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(217, 181, 154, 0.25) 0, transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(176, 122, 83, 0.2) 0, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(138, 154, 139, 0.2) 0, transparent 38%);
  z-index: -2;
}

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

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

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(253, 247, 240, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(176, 122, 83, 0.15);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

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

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

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(176, 122, 83, 0.25);
  background: var(--white);
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 0.85rem;
  color: rgba(43, 28, 20, 0.7);
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--rust);
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.hero {
  padding: 80px 0 40px;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--rust);
  margin-bottom: 12px;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0 0 16px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 3vw + 1.5rem, 4rem);
}

h2 {
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  font-size: 1.1rem;
  color: rgba(43, 28, 20, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 24px;
}

.banner-logo {
  width: min(440px, 90%);
  margin-bottom: 14px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(46, 28, 19, 0.12);
  border: 1px solid rgba(176, 122, 83, 0.18);
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.button-solid {
  background: var(--walnut);
  color: var(--white);
  box-shadow: var(--shadow);
}

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

.button-outline {
  border-color: rgba(107, 75, 54, 0.4);
  color: var(--walnut);
  background: transparent;
}

.button-ghost {
  border-color: rgba(176, 122, 83, 0.3);
  color: var(--walnut);
  background: rgba(245, 234, 220, 0.7);
}

.button-outline:hover,
.button-ghost:hover {
  background: rgba(176, 122, 83, 0.12);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(43, 28, 20, 0.7);
}

.hero-notes span {
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(176, 122, 83, 0.2);
}

.hero-image img {
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(176, 122, 83, 0.2);
}

.section {
  padding: 70px 0;
}

.soft-background {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(176, 122, 83, 0.12);
  border-bottom: 1px solid rgba(176, 122, 83, 0.12);
}

.section-header {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-subtitle {
  color: rgba(43, 28, 20, 0.75);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--linen);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 30px rgba(43, 28, 20, 0.12);
  border: 1px solid rgba(176, 122, 83, 0.2);
}

.custom-grid {
  display: grid;
  gap: 36px;
}

.custom-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(176, 122, 83, 0.15);
}

.custom-card:nth-child(2) {
  background: #fbf4ec;
}

.custom-text p {
  color: rgba(43, 28, 20, 0.78);
}

.custom-image img {
  border-radius: 20px;
  border: 1px solid rgba(176, 122, 83, 0.2);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 18px 0 0;
}

.pill-list li {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(217, 181, 154, 0.2);
  border: 1px solid rgba(176, 122, 83, 0.2);
  font-size: 0.9rem;
}

.pill-list.wood-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  justify-items: center;
}

.pill-list.wood-list li {
  grid-column: span 2;
  width: 100%;
  text-align: center;
}

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

.gallery-item {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(176, 122, 83, 0.2);
  background: var(--white);
}

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

.details-card {
  background: var(--linen);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 30px rgba(43, 28, 20, 0.12);
  border: 1px solid rgba(176, 122, 83, 0.2);
}

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

.details-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
  color: rgba(43, 28, 20, 0.78);
}

.details-list span:first-child {
  font-weight: 600;
  color: var(--ink);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: var(--linen);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(176, 122, 83, 0.2);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--walnut);
  color: var(--white);
  font-weight: 600;
  display: grid;
  place-items: center;
}

.cta-section {
  padding-bottom: 110px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(130deg, #f4e2cf 0%, #e0b999 100%);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 40px 0 60px;
  background: rgba(43, 28, 20, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.95rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(176, 122, 83, 0.25);
  background: var(--white);
}

.footer-link {
  color: var(--walnut);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-grid,
  .custom-card,
  .gallery,
  .steps,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 60px;
  }

  .header-inner {
    justify-content: center;
    text-align: center;
  }

  .brand {
    justify-content: center;
  }

  .banner-logo {
    width: min(320px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

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

  .details-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}
