:root {
  --ink: #111317;
  --ink-soft: #31343a;
  --muted: #6d7077;
  --line: #e4e0d8;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --gold: #c9a24a;
  --gold-dark: #8d6b22;
  --night: #0d0f12;
  --night-2: #171b22;
  --wrap: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 84px);
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  font-size: 22px;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.screen-reader-text:focus {
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 15, 18, 0.96);
  color: #fff;
  border-bottom: 1px solid rgba(201, 162, 74, 0.32);
  backdrop-filter: blur(14px);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  padding: 8px 0;
}

.topbar a {
  color: #d8d2c5;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 0 auto;
  color: #fff;
  font-weight: 800;
}

.brand__logo {
  display: block;
  width: clamp(150px, 15vw, 210px);
  height: auto;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 162, 74, 0.72);
  color: var(--gold);
}

.brand__text {
  max-width: 170px;
  line-height: 1.1;
}

.custom-logo-link img {
  max-height: 62px;
  width: auto;
}

.primary-nav {
  flex: 1;
}

.menu,
.primary-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu > li {
  position: relative;
}

.menu a,
.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 8px;
  color: #f4f0e8;
  font-size: 13px;
  font-weight: 700;
}

.menu > .menu-item-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 60;
  display: none;
  grid-auto-flow: row;
  min-width: 230px;
  padding: 10px;
  background: #111317;
  border: 1px solid rgba(201, 162, 74, 0.32);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.menu .sub-menu a {
  justify-content: flex-start;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  white-space: nowrap;
}

.menu > li:hover > .sub-menu,
.menu > li:focus-within > .sub-menu {
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu a:hover,
.primary-nav a:hover,
.current-menu-item > a,
.current_page_item > a {
  color: var(--gold);
}

.header-cta,
.button,
.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.button--gold,
.footer-button {
  background: var(--gold);
  color: #141414;
}

.header-cta:hover,
.button--gold:hover,
.footer-button:hover {
  background: #e0bd64;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
}

.button--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.button--ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: transparent;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--night);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 11, 0.9), rgba(8, 9, 11, 0.58) 45%, rgba(8, 9, 11, 0.18));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 88px 0;
}

.hero h1,
.hero .eyebrow {
  color: #fff;
}

.hero__lead {
  max-width: 620px;
  margin-top: 24px;
  color: #e8e0d1;
  font-size: 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.section {
  padding: 88px 0;
}

.intro {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.split,
.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 60px;
  align-items: center;
}

.intro-grid p {
  font-size: 19px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.fleet-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(17, 19, 23, 0.08);
}

.fleet-card img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
}

.fleet-card > div {
  padding: 24px;
}

.fleet-card--dark {
  display: flex;
  align-items: flex-end;
  min-height: 420px;
  background: linear-gradient(150deg, var(--night), var(--night-2));
}

.fleet-card--dark h3,
.fleet-card--dark p,
.fleet-card--dark a {
  color: #fff;
}

.fleet-card--dark a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 800;
}

.occasions {
  background: #f0eee9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.occasion-list span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

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

.steps > div {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps strong {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold-dark);
  font-size: 15px;
}

.cta-band {
  padding: 72px 0;
  background: var(--night);
  color: #fff;
}

.cta-band h2,
.cta-band .eyebrow {
  color: #fff;
}

.cta-band p {
  color: #d9d3c8;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.page-hero {
  padding: 88px 0 64px;
  background: linear-gradient(135deg, var(--night), var(--night-2));
}

.page-hero h1,
.page-title {
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
}

.content-layout {
  max-width: 860px;
}

.entry-content {
  overflow: hidden;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.entry-content a {
  color: var(--gold-dark);
  font-weight: 700;
}

.entry-content h2,
.entry-content h3 {
  margin: 1.4em 0 0.45em;
}

.entry-content ul,
.entry-content ol {
  color: var(--muted);
}

.featured-image {
  margin: -34px -34px 28px;
}

.post-list {
  display: grid;
  gap: 18px;
}

.post-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.post-card h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.site-footer {
  background: var(--night);
  color: #ded7cc;
}

.site-footer a {
  color: #f3d27b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 48px;
  padding: 58px 0 40px;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 18px;
}

.footer-grid p {
  color: #c9c2b8;
}

.footer-brand {
  color: #fff !important;
  font-size: 22px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 980px) {
  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 20px 22px;
    background: var(--night);
    border-bottom: 1px solid rgba(201, 162, 74, 0.32);
  }

  .primary-nav.is-open {
    display: block;
  }

  .menu,
  .primary-nav ul {
    display: grid;
    justify-content: stretch;
    gap: 2px;
  }

  .menu > li {
    position: static;
  }

  .menu a,
  .primary-nav a {
    min-height: 46px;
    padding: 0 4px;
  }

  .menu > .menu-item-has-children > a::after {
    display: none;
  }

  .menu .sub-menu {
    position: static;
    display: grid;
    grid-auto-flow: row;
    min-width: 0;
    padding: 0 0 0 14px;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(201, 162, 74, 0.32);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .menu .sub-menu a {
    min-height: 40px;
    color: #d8d2c5;
    white-space: normal;
  }

  .header-cta {
    display: none;
  }

  .intro-grid,
  .split,
  .cta-band__inner,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .fleet-card--dark {
    min-height: auto;
  }

  .cta-band__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .topbar__inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand__logo {
    width: 150px;
  }

  .brand__text {
    max-width: 140px;
    font-size: 14px;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 720px;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(8, 9, 11, 0.88), rgba(8, 9, 11, 0.68));
  }

  .hero__content {
    padding: 64px 0;
  }

  h1 {
    font-size: 42px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .occasion-list {
    grid-template-columns: 1fr;
  }

  .entry-content {
    padding: 22px;
  }

  .featured-image {
    margin: -22px -22px 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
