:root {
  --ink: #21150f;
  --muted: #6d5a4f;
  --paper: #fffaf2;
  --ivory: #f7eddd;
  --saffron: #c97925;
  --maroon: #7e1f2b;
  --leaf: #49683f;
  --gold: #d9a64a;
  --line: rgba(33, 21, 15, 0.14);
  --shadow: 0 24px 80px rgba(42, 20, 7, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 10px 34px rgba(58, 31, 16, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.brand span {
  font-size: 1.08rem;
  line-height: 1.12;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  appearance: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle::before {
  transform: translateY(4px);
}

.nav-toggle::after {
  transform: translateY(-4px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 130px clamp(18px, 5vw, 72px) 34px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28, 12, 7, 0.86) 0%, rgba(61, 28, 16, 0.68) 43%, rgba(28, 12, 7, 0.16) 100%),
    linear-gradient(0deg, rgba(24, 11, 8, 0.76) 0%, rgba(24, 11, 8, 0.08) 42%);
}

.hero-content,
.hero-stats {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 100%;
  max-width: 760px;
  min-width: 0;
  padding-bottom: clamp(36px, 8vh, 86px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.62;
  overflow-wrap: normal;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-weight: 800;
}

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

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-stats div {
  padding: 22px 22px 10px 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

h2 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.8vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro-copy,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.82;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.feature-band div {
  min-height: 260px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--ivory);
}

.feature-band span {
  display: block;
  margin-bottom: 44px;
  color: var(--maroon);
  font-weight: 900;
}

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

.feature-band p,
.package-card span,
.import-list span {
  color: var(--muted);
  line-height: 1.65;
}

.packages {
  background:
    radial-gradient(circle at 84% 8%, rgba(217, 166, 74, 0.18), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, #f6ecdf 100%);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

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

.package-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.package-card p {
  width: fit-content;
  margin-bottom: auto;
  padding: 8px 12px;
  border: 1px solid rgba(126, 31, 43, 0.2);
  border-radius: 999px;
  color: var(--maroon);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.imports {
  background: #fff;
}

.import-list {
  display: grid;
  gap: 16px;
}

.import-list div {
  padding: 22px 0 22px 24px;
  border-left: 4px solid var(--saffron);
}

.import-list strong,
.import-list span {
  display: block;
}

.import-list strong {
  margin-bottom: 8px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  color: #fff;
  background: var(--maroon);
}

.contact .section-kicker {
  color: #f1c66d;
}

.contact h2 {
  margin-bottom: 20px;
}

.contact p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.contact-panel a,
.contact-panel span {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #fff;
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    position: fixed;
    top: 14px;
    right: 18px;
    z-index: 40;
    display: grid;
    place-items: center;
    border-color: var(--gold);
    color: var(--ink);
    background: var(--gold);
    box-shadow: 0 10px 24px rgba(24, 11, 8, 0.22);
  }

  .nav-toggle span {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 92px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 250, 242, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 96px 18px 20px;
  }

  .hero-media {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(28, 12, 7, 0.88) 0%, rgba(45, 20, 12, 0.68) 62%, rgba(28, 12, 7, 0.28) 100%),
      linear-gradient(0deg, rgba(24, 11, 8, 0.86) 0%, rgba(24, 11, 8, 0.08) 52%);
  }

  h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 9.6vw, 3.2rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.08;
  }

  .hero-content {
    max-width: 21.5rem;
    padding-bottom: 22px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 12px;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero-copy {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.94rem;
    white-space: nowrap;
  }

  .hero-stats,
  .feature-band,
  .package-grid,
  .section-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-stats strong {
    margin-bottom: 4px;
  }

  .hero-stats span {
    font-size: 0.86rem;
  }

  .feature-band {
    gap: 1px;
  }

  .section-heading,
  .site-footer {
    display: block;
  }

  .site-footer span {
    display: block;
    margin-bottom: 8px;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand span {
    max-width: 9.5rem;
    font-size: 0.98rem;
    white-space: normal;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: clamp(1.95rem, 9vw, 2.35rem);
  }

  .hero-content {
    max-width: 20.25rem;
  }

  .button {
    flex: 1 1 140px;
  }

  section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .package-card {
    min-height: 260px;
    padding: 22px;
  }
}
