:root {
  --forest: #17352f;
  --forest-deep: #0b1d19;
  --walnut: #5a3d28;
  --walnut-dark: #372418;
  --gold: #c8a56b;
  --gold-bright: #e2c795;
  --parchment: #f2eadc;
  --parchment-soft: #ece1cf;
  --text: #211a14;
  --muted: #695e54;
  --white: #ffffff;
  --line: rgba(200, 165, 107, 0.35);
  --shadow: 0 20px 55px rgba(8, 13, 11, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(200,165,107,.12), transparent 32%),
    linear-gradient(180deg, #faf6ef 0%, #efe5d4 100%);
  font-family: 'Inter', Arial, sans-serif;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(11, 29, 25, 0.88);
  border-bottom: 1px solid rgba(200,165,107,.28);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226,199,149,.65);
  background: radial-gradient(circle at 35% 30%, #ecdcb6 0%, #c8a56b 48%, #7d5e34 100%);
  color: #2d1b0a;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.15), 0 10px 25px rgba(0,0,0,.25);
}

.brand-name,
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.brand-name {
  color: var(--parchment);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.brand-subtitle {
  color: #d6c2a0;
  font-size: .86rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 4px;
}

nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

nav a {
  color: #efe3cb;
  text-decoration: none;
  font-weight: 600;
  font-size: .96rem;
}

nav a:hover { color: var(--gold-bright); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11,29,25,.96) 0%, rgba(23,53,47,.95) 40%, rgba(90,61,40,.9) 100%);
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(226,199,149,.18), transparent 22%),
    radial-gradient(circle at 80% 15%, rgba(255,255,255,.08), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.1));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 46px;
  align-items: center;
  padding: 78px 0 82px;
}

.panel {
  background: rgba(12, 28, 23, 0.58);
  border: 1px solid rgba(226,199,149,.24);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 36px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 800;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: .98;
  letter-spacing: .01em;
}

h1 {
  font-size: clamp(3.1rem, 6vw, 5.7rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.lead {
  font-size: 1.14rem;
  line-height: 1.8;
  color: #f1e6d2;
}

.hero-note {
  margin-top: 18px;
  color: #d1bea0;
  line-height: 1.7;
}

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

.hero-actions.center {
  justify-content: center;
}

.quick-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(226,199,149,.28);
  background: rgba(255,255,255,.05);
  color: #f3e4c5;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
}

.quick-link:hover { border-color: rgba(226,199,149,.55); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

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

.button.primary {
  background: linear-gradient(180deg, #e4cc9c 0%, #c8a56b 100%);
  color: #23170b;
  box-shadow: 0 10px 20px rgba(0,0,0,.2);
}

.button.secondary {
  color: var(--gold-bright);
  border-color: rgba(226,199,149,.48);
  background: rgba(255,255,255,.02);
}

.disabled {
  opacity: .8;
}

.hero-frame {
  position: relative;
  background: linear-gradient(180deg, #7d5a39 0%, #49311f 100%);
  padding: 14px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.34);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(226,199,149,.28);
  border-radius: 12px;
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.section {
  padding: 88px 0;
}

.alt {
  background: linear-gradient(180deg, rgba(255,255,255,.34) 0%, rgba(232,221,203,.65) 100%);
}

.centered {
  text-align: center;
}

.narrow {
  max-width: 760px;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 34px;
}

.section-heading p,
.feature-card p,
.split p,
.callout-box p,
.contact-card p,
.info-panel li,
.item-card p,
.disclosure-card p {
  color: var(--muted);
  line-height: 1.75;
}

.feature-grid,
.item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.item-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(248,241,230,.98) 100%);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(90,61,40,.12);
  box-shadow: 0 18px 35px rgba(34, 24, 15, 0.08);
}

.feature-card::after,
.item-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(200,165,107,.18);
  pointer-events: none;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 18px;
  background: radial-gradient(circle at 35% 30%, #ecdcb6 0%, #c8a56b 48%, #826136 100%);
  color: #2d1a09;
  font-size: 1.35rem;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.16);
}

.item-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(23,53,47,.1);
  color: var(--forest);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.text-link {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover { text-decoration: underline; }

.showroom {
  position: relative;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}

.info-panel {
  background: linear-gradient(135deg, rgba(23,53,47,.95), rgba(55,36,24,.95));
  color: var(--white);
  border-radius: 28px;
  padding: 34px;
  border: 1px solid rgba(226,199,149,.28);
  box-shadow: var(--shadow);
}

.info-panel h3 { margin-bottom: 18px; color: var(--parchment); }
.info-panel p { color: #e8d8ba; }
.info-panel ul {
  margin: 12px 0 0;
  padding-left: 18px;
}
.info-panel li { color: #e8d8ba; margin-bottom: 10px; }

.callout-wrap {
  display: flex;
  justify-content: center;
}

.callout-box {
  width: min(920px, 100%);
  padding: 42px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(23,53,47,.96), rgba(11,29,25,.98)),
    var(--forest);
  border: 1px solid rgba(226,199,149,.28);
  box-shadow: var(--shadow);
  text-align: center;
}

.callout-box h2,
.callout-box .eyebrow { color: var(--parchment); }
.callout-box p { color: #d8c7a7; }
.callout-box .button.secondary { background: rgba(255,255,255,.04); }

.disclosure-section {
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.38));
}

.disclosure-card {
  background: linear-gradient(180deg, rgba(250,244,233,.98), rgba(239,229,211,.98));
  border-radius: 30px;
  padding: 40px;
  border: 1px solid rgba(200,165,107,.28);
  box-shadow: 0 18px 35px rgba(34, 24, 15, 0.08);
}

.contact-section {
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
}

.contact-card {
  text-align: center;
  background: linear-gradient(180deg, rgba(250,244,233,.98), rgba(239,229,211,.98));
  border-radius: 34px;
  padding: 48px;
  border: 1px solid rgba(226,199,149,.44);
  box-shadow: 0 24px 55px rgba(0,0,0,.24);
}

.contact-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  font-size: 1.02rem;
}

.contact-list a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 700;
}

.contact-form {
  margin-top: 32px;
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--forest);
}

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(90,61,40,.18);
  background: rgba(255,255,255,.85);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.submit-button {
  min-width: 180px;
}

.footer {
  background: #07130f;
  color: #dcc8a5;
  padding: 24px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer p { margin: 0; }

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .item-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid { padding: 56px 0 62px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .panel,
  .callout-box,
  .contact-card,
  .info-panel,
  .disclosure-card {
    padding: 28px 22px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 64px 0;
  }
}
