:root {
  --burgundy: #8b2c2c;
  --burgundy-dark: #5c1a1a;
  --cream: #f4ede4;
  --cream-dark: #e8dcc9;
  --charcoal: #1f1f1f;
  --muted: #555555;
  --gold: #d4a574;
  --sage: #8b9d77;
  --white: #ffffff;
  --shadow: 0 16px 42px rgba(31, 31, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 237, 228, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92, 26, 26, 0.12);
}

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

.brand {
  display: flex;
  align-items: center;
  min-width: 220px;
}

.brand-logo {
  width: min(330px, 34vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--burgundy);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--burgundy);
  color: var(--white);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--burgundy-dark);
  color: var(--white);
}

.hero.compact {
  min-height: 520px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(92, 26, 26, 0.88), rgba(92, 26, 26, 0.7) 52%, rgba(92, 26, 26, 0.58));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 88px;
  transform: none;
  text-align: center;
}

.hero-content.centered {
  width: min(880px, calc(100% - 32px));
  transform: none;
  text-align: center;
}

.hero-logo {
  width: min(560px, 92vw);
  height: auto;
  margin: 0 0 28px;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.34));
}

.hero-content.centered .hero-logo {
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.45rem, 6vw, 5.7rem);
  max-width: 920px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  font-size: 1.45rem;
}

.lead {
  margin: 20px 0 0;
  max-width: 720px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: var(--charcoal);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.button.dark {
  background: var(--burgundy);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 56px 0;
}

.section.dark {
  background: var(--charcoal);
  color: var(--white);
}

.section.white {
  background: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head p,
.muted {
  color: var(--muted);
}

.dark .section-head p,
.dark .muted {
  color: rgba(255, 255, 255, 0.74);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 44px;
  align-items: center;
}

.photo-frame {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  background: var(--cream-dark);
}

.photo-frame img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.tier-grid {
  max-width: 1120px;
  margin-inline: auto;
  align-items: stretch;
}

.card,
.tier-card {
  border: 1px solid rgba(92, 26, 26, 0.12);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card {
  padding: 26px;
}

.card.accent {
  border-top: 5px solid var(--gold);
}

.tier-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
}

.tier-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.tier-top > div {
  flex: 1;
}

.tier-top h3 {
  min-height: 3.2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(212, 165, 116, 0.22);
  color: var(--burgundy-dark);
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 800;
}

.price {
  margin: 8px 0 0;
  color: var(--burgundy);
  font-size: 2.35rem;
  font-weight: 900;
  min-height: 2.85rem;
  display: flex;
  align-items: flex-end;
}

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

.value-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.value-list li::before {
  content: "";
  width: 7px;
  height: 12px;
  flex: 0 0 7px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  margin-top: 4px;
  transform: rotate(42deg);
}

.tier-footer {
  margin-top: auto;
}

.quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 10px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.inventory {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.timeline-item {
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 22px;
}

.form {
  display: grid;
  gap: 16px;
}

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

.field span {
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--charcoal);
}

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

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

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox input {
  margin-top: 6px;
}

.notice {
  border-radius: 8px;
  background: rgba(139, 157, 119, 0.18);
  color: #314026;
  padding: 14px 16px;
}

.error {
  border-radius: 8px;
  background: rgba(139, 44, 44, 0.12);
  color: var(--burgundy-dark);
  padding: 14px 16px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid rgba(92, 26, 26, 0.12);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.site-footer {
  background: var(--burgundy-dark);
  color: var(--white);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
}

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

.team-grid {
  max-width: 880px;
  margin-inline: auto;
}

.team-card {
  min-height: 100%;
}

.location-card {
  overflow: hidden;
}

.location-card .photo-frame {
  margin: -26px -26px 22px;
  border-radius: 10px 10px 0 0;
  box-shadow: none;
}

.location-card .photo-frame img {
  height: 260px;
}

.disclaimer {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.legal {
  max-width: 900px;
}

.legal h1 {
  color: var(--burgundy);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.legal h2 {
  margin-top: 32px;
  font-size: 2rem;
}

@media (max-width: 1160px) {
  .hero-content {
    transform: none;
  }
}

@media (max-width: 820px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-cta {
    white-space: nowrap;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 54px 0 96px;
  }

  .split,
  .grid.two,
  .grid.three,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .photo-frame img {
    height: 310px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(260px, 78vw);
  }

  .nav-links {
    gap: 14px;
    font-size: 14px;
  }

  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

  .card,
  .tier-card {
    padding: 22px;
  }
}
