:root {
  --ink: #241f1b;
  --espresso: #3d271b;
  --espresso-deep: #33251f;
  --cocoa: #5b4032;
  --muted: #7e7268;
  --paper: #fbfaf7;
  --soft: #e7dfd3;
  --taupe: #ad9f93;
  --blush: #f9c5b4;
  --salmon: #f3a78f;
  --terracotta: #9e3b1b;
  --line: rgba(61, 39, 27, 0.14);
  --shadow: 0 24px 60px rgba(61, 39, 27, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: #fff;
  background: linear-gradient(180deg, rgba(22, 18, 16, 0.58), rgba(22, 18, 16, 0.18));
  backdrop-filter: blur(10px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  text-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.menu-open .site-nav a:hover {
  background: var(--soft);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--espresso);
  text-shadow: none;
}

.site-nav .nav-shop {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.58);
  text-shadow: none;
}

.site-header.is-scrolled .site-nav .nav-shop,
.site-header.menu-open .site-nav .nav-shop {
  color: var(--espresso);
  border-color: rgba(61, 39, 27, 0.24);
}

.menu-button {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 23, 20, 0.7), rgba(28, 23, 20, 0.26) 58%, rgba(28, 23, 20, 0.1)),
    url("assets/images/hero-grace.jpg") center 38% / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 84px;
}

.eyebrow,
.section-label,
.product-kicker {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--blush);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(58px, 10vw, 128px);
  line-height: 0.95;
}

h2 {
  font-size: clamp(34px, 6vw, 70px);
  line-height: 1.02;
}

h3 {
  font-size: 24px;
  line-height: 1.15;
}

.hero-subtitle {
  max-width: 620px;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.88);
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--espresso);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.button.ghost {
  color: var(--espresso);
  border: 1px solid rgba(61, 39, 27, 0.26);
  background: rgba(255, 255, 255, 0.48);
}

.button:hover,
.text-link:hover,
.contact-link:hover {
  transform: translateY(-1px);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(68px, 10vw, 118px) 0;
}

.intro {
  padding-top: clamp(42px, 7vw, 74px);
}

.intro-grid,
.section-heading,
.about,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro-grid p,
.section-heading > p,
.heading-copy p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.heading-copy {
  display: grid;
  gap: 18px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.qualities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.qualities article {
  min-height: 220px;
  padding: 28px;
  background: #fff;
}

.qualities span,
.steps span,
.contact-link span {
  display: block;
  margin-bottom: 22px;
  color: var(--taupe);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qualities p,
.product-content p,
.steps p,
.faq p,
.site-footer p {
  color: var(--muted);
}

.showroom {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 4vw, 48px);
  padding-right: clamp(18px, 4vw, 48px);
  background: #f6f1eb;
}

.showroom .section-heading,
.showroom .product-grid {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(61, 39, 27, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(61, 39, 27, 0.07);
}

.product-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--soft);
}

.product-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.75fr);
}

.product-card.featured img {
  height: 100%;
  aspect-ratio: auto;
}

.product-content {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding: 24px;
}

.product-content h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
}

.product-content p:last-of-type {
  margin-bottom: 22px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  margin-top: auto;
  padding: 11px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--espresso);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.card-cta:hover {
  transform: translateY(-1px);
  background: var(--terracotta);
}

.available {
  width: 100%;
  max-width: none;
  padding: clamp(70px, 10vw, 110px) clamp(18px, 4vw, 48px);
  background: var(--espresso);
}

.available-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  color: #fff;
}

.available-panel p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.available-panel .button.primary {
  background: #fff;
  color: var(--espresso);
}

.available-panel .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}

.available-panel .text-link {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: 44px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  list-style: none;
  counter-reset: steps;
}

.steps li {
  min-height: 260px;
  padding: 24px;
  background: #fff;
  counter-increment: steps;
}

.steps li::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 34px;
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.about {
  align-items: center;
  padding-top: 0;
}

.signature-note {
  max-width: 520px;
  margin-top: 26px;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.signature {
  margin: 8px 0 0;
  color: var(--terracotta);
  font-family: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  transform: rotate(-4deg);
}

.about-portrait {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  color: var(--espresso);
  background: #f6f1eb;
  box-shadow: var(--shadow);
}

.about-portrait img {
  width: min(238px, 62vw);
  aspect-ratio: 1;
  border: 8px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(61, 39, 27, 0.18);
}

.about-portrait p {
  margin: 0;
  max-width: 360px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.08;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--terracotta);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.contact {
  width: 100%;
  max-width: none;
  padding: clamp(70px, 10vw, 118px) clamp(18px, 4vw, 48px);
  color: #fff;
  background: var(--espresso-deep);
}

.contact-copy,
.contact-actions {
  width: min(560px, 100%);
}

.contact-copy {
  justify-self: end;
}

.contact h2 {
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  min-height: 96px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact-link span {
  margin-bottom: 8px;
  color: var(--soft);
}

.contact-link.strong {
  background: var(--cocoa);
  border-color: var(--cocoa);
}

.wa-icon {
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  fill: currentColor;
}

.wa-link:not(:has(.wa-icon))::before {
  content: "";
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.52 3.48A11.84 11.84 0 0 0 12.08 0C5.5 0 .16 5.34.16 11.91c0 2.1.55 4.15 1.6 5.96L0 24l6.28-1.65a11.9 11.9 0 0 0 5.8 1.48h.01c6.57 0 11.91-5.34 11.91-11.91 0-3.18-1.24-6.17-3.48-8.44ZM12.09 21.8a9.88 9.88 0 0 1-5.04-1.38l-.36-.22-3.72.98.99-3.63-.24-.37a9.82 9.82 0 0 1-1.51-5.27c0-5.45 4.43-9.88 9.89-9.88 2.64 0 5.12 1.03 6.99 2.9a9.82 9.82 0 0 1 2.9 6.99c-.01 5.45-4.45 9.88-9.9 9.88Zm5.42-7.4c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.38-1.47-.88-.78-1.47-1.75-1.64-2.05-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.67-1.62-.92-2.22-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.06 2.88 1.21 3.08c.15.2 2.09 3.19 5.06 4.47.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.08 1.76-.72 2-1.42.25-.7.25-1.3.17-1.42-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.52 3.48A11.84 11.84 0 0 0 12.08 0C5.5 0 .16 5.34.16 11.91c0 2.1.55 4.15 1.6 5.96L0 24l6.28-1.65a11.9 11.9 0 0 0 5.8 1.48h.01c6.57 0 11.91-5.34 11.91-11.91 0-3.18-1.24-6.17-3.48-8.44ZM12.09 21.8a9.88 9.88 0 0 1-5.04-1.38l-.36-.22-3.72.98.99-3.63-.24-.37a9.82 9.82 0 0 1-1.51-5.27c0-5.45 4.43-9.88 9.89-9.88 2.64 0 5.12 1.03 6.99 2.9a9.82 9.82 0 0 1 2.9 6.99c-.01 5.45-4.45 9.88-9.9 9.88Zm5.42-7.4c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.38-1.47-.88-.78-1.47-1.75-1.64-2.05-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.67-1.62-.92-2.22-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.06 2.88 1.21 3.08c.15.2 2.09 3.19 5.06 4.47.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.08 1.76-.72 2-1.42.25-.7.25-1.3.17-1.42-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-cta,
.contact-line {
  gap: 8px;
}

.contact-line {
  display: inline-flex;
  align-items: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 2px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.copyright span {
  margin-left: 12px;
  white-space: nowrap;
}

.legal-body {
  background: #efe8df;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 15px;
}

.legal-nav a {
  text-decoration: none;
}

.legal-main {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(46px, 8vw, 82px) 0;
}

.legal-card {
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(61, 39, 27, 0.08);
}

.legal-card h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 7vw, 70px);
  line-height: 1;
}

.legal-card h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.2;
}

.legal-card h3 {
  margin: 24px 0 10px;
  font-size: 19px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  padding-left: 22px;
}

.legal-card a {
  color: var(--terracotta);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-card .index {
  display: grid;
  gap: 6px;
  margin-bottom: 30px;
}

.legal-card .seal {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.legal-footer {
  margin-top: 0;
}

@media (max-width: 920px) {
  .site-header {
    justify-content: flex-start;
  }

  .menu-button {
    display: block;
    margin-left: 8px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px 18px 20px;
    color: var(--ink);
    background: rgba(251, 250, 247, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-header.menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    justify-content: flex-start;
    border-radius: 8px;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .intro-grid,
  .section-heading,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .qualities,
  .product-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .product-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .contact-copy {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(28, 23, 20, 0.4), rgba(28, 23, 20, 0.74)),
      url("assets/images/hero-grace.jpg") center top / cover;
  }

  .hero-content {
    width: min(calc(100% - 36px), 354px);
    margin-left: 18px;
    margin-right: auto;
    padding-bottom: 56px;
  }

  .section {
    width: min(calc(100% - 36px), 354px);
    margin-left: 18px;
    margin-right: auto;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 18px;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .qualities,
  .product-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    grid-column: auto;
  }

  .qualities article,
  .steps li {
    min-height: auto;
  }

  .steps li::before {
    margin-bottom: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .copyright span {
    display: block;
    margin: 4px 0 0;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-nav {
    gap: 12px;
  }
}
