:root {
  --ink: #0d1b2a;
  --muted: #66717f;
  --line: #e5e7eb;
  --paper: #f8f6f1;
  --mist: #f1eee7;
  --teal: #d4af37;
  --teal-dark: #0d1b2a;
  --coral: #b8902f;
  --gold: #d4af37;
  --white: #fffdf8;
  --charcoal: #071521;
  --shadow: 0 24px 70px rgba(13, 27, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 10%, rgba(212, 175, 55, 0.18), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 44%, #f1eee7 100%);
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.62);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.brand small {
  color: rgba(13, 27, 42, 0.58);
  font-size: 11px;
  line-height: 1.3;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(13, 27, 42, 0.74);
  font-size: 14px;
  font-weight: 700;
}

nav a {
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 9px 16px;
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.66);
}

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

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 175, 55, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(7, 21, 33, 0.92) 0%, rgba(13, 27, 42, 0.76) 44%, rgba(13, 27, 42, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 21, 33, 0.64) 0%, rgba(7, 21, 33, 0.05) 48%);
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 750px;
  font-size: clamp(44px, 7vw, 92px);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(17px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: #d4af37;
  color: #071521;
  box-shadow: 0 18px 42px rgba(212, 175, 55, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 253, 248, 0.36);
  color: #fffdf8;
  background: rgba(255, 253, 248, 0.08);
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.band {
  padding: 72px 0;
  background: var(--white);
}

.band.muted {
  background:
    radial-gradient(circle at 12% 10%, rgba(212, 175, 55, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(255, 253, 248, 0)),
    var(--mist);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.intro p:last-child,
.section-heading p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.section-block {
  padding: 92px 0;
}

.background {
  padding-bottom: 0;
}

.background-panel {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 253, 248, 0.72)),
    var(--white);
  box-shadow: var(--shadow);
}

.background-panel .section-heading {
  margin-bottom: 0;
}

.background-copy {
  display: grid;
  gap: 18px;
}

.background-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.background-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.background-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--teal-dark);
  background: rgba(255, 253, 248, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 36px;
}

.section-heading.wide {
  display: grid;
  width: 100%;
  grid-template-columns: 0.65fr 1fr;
  gap: 34px;
  align-items: end;
}

.section-heading.wide .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

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

.service-card,
.network-grid article,
.model-list article,
.contact-panel,
.booking-card,
.booking-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(8, 39, 51, 0.04);
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: clamp(28px, 4vw, 44px);
}

.service-card.featured {
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.12), rgba(255, 253, 248, 0) 42%),
    var(--white);
}

.card-number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3,
.network-grid h3,
.model-list h3 {
  margin-bottom: 14px;
  font-size: 26px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

.service-card p,
.network-grid p,
.model-list p,
.contact-panel p {
  color: var(--muted);
}

ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 18px;
}

li::before {
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

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

.model-list article {
  padding: 28px;
}

.network {
  position: relative;
}

.network::before {
  position: absolute;
  top: 80px;
  right: 3vw;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 50%;
  content: "";
}

.network-grid article {
  min-height: 190px;
  padding: 30px;
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #fffdf8 0%, #f1eee7 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  min-height: 174px;
  border-top: 3px solid var(--gold);
  padding: 22px 10px 0 0;
  counter-increment: steps;
}

.steps li::before {
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 20px;
  border-radius: 0;
  background: none;
  color: var(--teal-dark);
  content: "0" counter(steps);
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 8px;
  font-size: 20px;
}

.steps span {
  color: var(--muted);
}

.booking {
  padding: 92px 0 0;
}

.booking-card {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(241, 238, 231, 0.86));
  box-shadow: var(--shadow);
}

.booking-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.booking-panel {
  padding: 30px;
  border-color: rgba(212, 175, 55, 0.38);
  background: rgba(255, 253, 248, 0.82);
}

.booking-duration {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--teal-dark);
  background: rgba(212, 175, 55, 0.12);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-panel h3 {
  margin-bottom: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
}

.booking-panel p {
  color: var(--muted);
}

.booking-button {
  margin-top: 10px;
}

.booking-panel small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.booking-email {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.booking-email span {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.copy-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #071521;
  background: var(--gold);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: 92px 0;
}

.contact-panel {
  border-color: rgba(212, 175, 55, 0.38);
  background:
    radial-gradient(circle at 78% 12%, rgba(212, 175, 55, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(13, 27, 42, 0.98), rgba(7, 21, 33, 0.98)),
    var(--charcoal);
  box-shadow: 0 26px 70px rgba(13, 27, 42, 0.28);
  padding: 34px;
}

.contact-link {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
  color: #f4d982;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.2;
}

.contact-panel p,
.contact-panel li {
  color: rgba(255, 253, 248, 0.76);
}

.contact-panel li::before {
  background: #d4af37;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: rgba(255, 253, 248, 0.68);
  background: var(--charcoal);
  font-size: 14px;
}

@media (max-width: 840px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding-top: 16px;
  }

  nav {
    gap: 11px;
    font-size: 13px;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 78% 16%, rgba(212, 175, 55, 0.18), transparent 34%),
      linear-gradient(90deg, rgba(7, 21, 33, 0.94) 0%, rgba(13, 27, 42, 0.84) 66%, rgba(13, 27, 42, 0.58) 100%),
      linear-gradient(0deg, rgba(7, 21, 33, 0.72) 0%, rgba(7, 21, 33, 0.08) 58%);
  }

  .intro-grid,
  .background-panel,
  .section-heading.wide,
  .service-grid,
  .model-list,
  .network-grid,
  .steps,
  .booking-card,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading.wide .section-kicker {
    margin-bottom: 0;
  }

  .service-card {
    min-height: 0;
  }

  .steps li {
    min-height: 0;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  h1 {
    font-size: 42px;
  }

  .button {
    width: 100%;
  }

  .band,
  .section-block,
  .booking,
  .contact {
    padding: 62px 0;
  }

  .booking {
    padding-bottom: 0;
  }
}
