:root {
  --bg: #f7f0ea;
  --bg-soft: #fffaf6;
  --surface: rgba(255, 250, 246, 0.92);
  --surface-strong: #ffffff;
  --text: #2f1d1f;
  --muted: #80696c;
  --brand: #6b2b30;
  --brand-deep: #4b1e22;
  --line: rgba(107, 43, 48, 0.12);
  --shadow: 0 24px 60px rgba(88, 51, 47, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 248, 244, 0.98), rgba(247, 240, 234, 0.86) 42%, rgba(247, 240, 234, 1) 72%),
    linear-gradient(180deg, #fffaf7 0%, #f7f0ea 100%);
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
}

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

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

.shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 246, 0.9);
  backdrop-filter: blur(14px);
}

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

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

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

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

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--brand);
}

.brand-copy span {
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

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

.button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

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

.button-secondary {
  border: 1px solid var(--brand);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.hero {
  padding: 28px 0 0;
}

.hero-card,
.panel,
.product-card,
.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-card::before {
  inset: -18% auto auto -8%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(107, 43, 48, 0.1), rgba(107, 43, 48, 0));
}

.hero-card::after {
  inset: auto -6% -16% auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 176, 155, 0.22), rgba(212, 176, 155, 0));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 42px;
  grid-template-columns: 1.12fr 0.88fr;
}

.eyebrow,
.section-kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero-title,
.section-title,
.card-title {
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
}

.hero-title {
  margin: 16px 0 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.94;
}

.hero-text,
.body-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

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

.hero-logo {
  padding: 20px;
}

.hero-logo img {
  margin: 0 auto;
  max-width: 430px;
}

.feature-grid,
.product-grid,
.policy-grid,
.quote-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.feature-card,
.policy-card {
  padding: 24px;
}

.feature-card p,
.policy-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.section {
  padding-top: 56px;
}

.section-tight {
  margin-top: 26px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.section-title {
  margin: 10px 0 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
}

.section-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
}

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

.product-card {
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-body {
  padding: 24px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 14px;
  background: #efe4db;
  color: #5c3f39;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category {
  color: var(--muted);
  font-size: 0.92rem;
}

.card-title {
  margin: 18px 0 0;
  font-size: 2rem;
  line-height: 1.05;
}

.price {
  margin: 18px 0 0;
  color: var(--brand);
  font-size: 2rem;
  font-weight: 700;
}

.product-copy {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

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

.detail-list li {
  display: flex;
  gap: 12px;
  color: #5b4747;
  line-height: 1.7;
}

.detail-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--brand);
  flex: none;
}

.token-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.token {
  border-radius: 999px;
  background: var(--bg-soft);
  padding: 10px 14px;
  color: #5e4847;
  font-size: 0.8rem;
}

.split-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 0.95fr 1.05fr;
}

.logo-panel,
.text-panel {
  padding: 26px;
}

.logo-panel img {
  margin: 0 auto;
  max-height: 360px;
  width: auto;
}

.text-panel .body-text {
  margin: 18px 0 0;
}

.journey-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.journey-step {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  padding: 22px;
}

.journey-step strong {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
}

.journey-step p {
  margin: 14px 0 0;
  color: #584646;
  line-height: 1.8;
}

.quote-grid {
  margin-top: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-card {
  padding: 28px;
}

.quote-card p {
  margin: 0;
  color: #5a4444;
  line-height: 1.9;
}

.quote-card footer {
  margin-top: 20px;
}

.quote-card strong {
  color: var(--brand);
}

.quote-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.policy-grid {
  margin-top: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-panel {
  padding: 32px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.intro-card {
  padding: 28px;
}

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

.option-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  padding: 22px;
}

.option-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.option-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.checklist {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.check-item {
  display: flex;
  gap: 14px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  padding: 16px 18px;
}

.step-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.sidebar-stack {
  display: grid;
  gap: 22px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field-gap {
  margin-top: 14px;
}

.inquiry-form {
  margin-top: 30px;
}

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

.form-grid-full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.form-status.is-error {
  color: #9d1c1c;
}

.form-status.is-success {
  color: #1f6b42;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 246, 0.96);
}

.footer .shell {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.08fr 0.92fr;
  padding: 36px 0 42px;
}

.footer-logo {
  max-width: 320px;
}

.footer-copy {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.9;
}

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

.footer h4 {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand);
}

.footer-links,
.footer-contact {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  color: #5d4848;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .footer .shell {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .product-grid,
  .quote-grid,
  .policy-grid,
  .journey-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100vw - 24px, 1180px);
  }

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

  .site-nav {
    gap: 14px;
  }

  .brand-copy strong {
    font-size: 1.45rem;
  }

  .hero-card,
  .contact-panel,
  .feature-card,
  .policy-card,
  .intro-card,
  .logo-panel,
  .text-panel,
  .quote-card {
    padding: 24px;
  }

  .feature-grid,
  .product-grid,
  .quote-grid,
  .policy-grid,
  .journey-grid,
  .options-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }
}
