:root {
  --navy: #071d32;
  --navy-2: #0b2d4a;
  --gold: #c7952a;
  --gold-2: #f0cf73;
  --cream: #fbfaf7;
  --paper: #f4f0e8;
  --line: rgba(7, 29, 50, 0.14);
  --ink: #071d32;
  --muted: #66717c;
  --white: #ffffff;
  --shadow: 0 26px 80px rgba(7, 29, 50, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(240, 207, 115, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  font-family: "Inter", Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px max(18px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(199, 149, 42, 0.28);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 48px;
  height: 54px;
  object-fit: contain;
  object-position: center;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  color: var(--navy);
  font-family: "Cinzel", Georgia, serif;
  font-size: 28px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.header-call,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.header-call {
  min-width: 84px;
  padding: 0 20px;
  color: var(--white);
  background: var(--navy);
}

.hero {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
  padding: 74px 0 50px;
}

.hero-copy {
  min-width: 0;
}

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

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

h1 {
  margin-bottom: 24px;
  color: var(--navy);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(42px, 6.2vw, 72px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 24px;
}

.hero-copy p:not(.eyebrow),
.service-card p,
.steam-copy p,
.contact p,
.footer {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 19px;
}

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

.button {
  min-width: 188px;
  padding: 0 24px;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.button.secondary {
  color: var(--navy);
  border-color: rgba(199, 149, 42, 0.42);
  background: var(--white);
}

.hero-card,
.steam-image {
  overflow: hidden;
  border: 1px solid rgba(199, 149, 42, 0.34);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 10px;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  object-fit: cover;
}

.feature-strip {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(199, 149, 42, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 18px 50px rgba(7, 29, 50, 0.13);
}

.feature-strip span {
  display: flex;
  min-height: 78px;
  align-items: center;
  padding: 18px 22px;
  border-right: 1px solid rgba(240, 207, 115, 0.24);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-strip span::before {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  margin-right: 12px;
  border: 2px solid var(--gold-2);
  border-radius: 50%;
  color: var(--gold-2);
  content: "✓";
  display: grid;
  place-items: center;
  font-size: 13px;
}

.feature-strip span:last-child {
  border-right: 0;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid rgba(199, 149, 42, 0.26);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 29, 50, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(199, 149, 42, 0.42);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.steam-section {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  grid-template-columns: 1fr 0.86fr;
  gap: 46px;
  align-items: center;
  padding: 10px 0 92px;
}

.steam-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.steam-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.steam-copy li {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  color: var(--navy);
  background: rgba(199, 149, 42, 0.08);
  font-weight: 800;
}

.contact {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 34px;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(199, 149, 42, 0.34);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(240, 207, 115, 0.22), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.contact .eyebrow,
.contact h2,
.contact p {
  color: var(--white);
}

.contact p {
  opacity: 0.78;
}

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

.contact-list a,
.contact-list span {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(240, 207, 115, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer {
  display: flex;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 42px;
  font-size: 14px;
}

.footer strong {
  color: var(--navy);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .steam-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 24px;
    padding: 42px 0 26px;
  }

  .hero-card {
    order: -1;
  }

  .feature-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(240, 207, 115, 0.24);
  }

  .feature-strip span:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .steam-section {
    padding-bottom: 72px;
  }

  .hero-card img,
  .service-card img,
  .steam-image img {
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 72px;
    padding-inline: 14px;
  }

  .brand img {
    width: 40px;
    height: 48px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .header-call {
    min-width: 68px;
    padding: 0 14px;
  }

  h1 {
    max-width: 330px;
    font-size: 32px;
    line-height: 1.04;
  }

  h2 {
    max-width: 330px;
    font-size: 30px;
  }

  .eyebrow,
  .hero-copy p:not(.eyebrow) {
    max-width: 330px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 17px;
  }

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

  .contact {
    padding: 32px 20px;
  }

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

  .footer {
    flex-direction: column;
  }
}
