:root {
  color-scheme: light;
  --ink: #111315;
  --muted: #59616b;
  --line: #d9dee3;
  --paper: #f7f7f4;
  --white: #ffffff;
  --gold: #b99155;
  --green: #24483e;
  --blue: #233954;
  --charcoal: #181b1f;
  --shadow: 0 24px 70px rgba(17, 19, 21, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

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

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 247, 244, 0.94);
  box-shadow: 0 10px 35px rgba(17, 19, 21, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
}

.brand small {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 36px);
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  background: var(--charcoal);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 12, 14, 0.9) 0%, rgba(9, 12, 14, 0.68) 35%, rgba(9, 12, 14, 0.1) 72%),
    linear-gradient(0deg, rgba(9, 12, 14, 0.6), rgba(9, 12, 14, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(760px, 100%);
  padding: 116px clamp(20px, 6vw, 72px) 82px;
  color: var(--white);
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(54px, 10vw, 118px);
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

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

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(19px, 2.3vw, 25px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px;
  font-weight: 780;
}

.button-primary {
  border-color: var(--gold);
  color: #15120d;
  background: var(--gold);
}

.button-secondary {
  color: var(--white);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 118px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.82fr);
  gap: clamp(34px, 8vw, 104px);
  align-items: start;
}

.intro p:last-child {
  margin-bottom: 0;
  padding-top: 11px;
}

.split {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
}

.watch-types {
  display: grid;
  gap: 16px;
}

.type-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 19, 21, 0.04);
}

.type-card h3,
.type-card p {
  grid-column: 2;
}

.type-index {
  grid-row: span 2;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.type-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.service-band {
  background: var(--charcoal);
  color: var(--white);
}

.service-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 0.92fr);
  gap: clamp(34px, 7vw, 90px);
}

.service-band p {
  color: rgba(255, 255, 255, 0.72);
}

.service-points p {
  margin-bottom: 26px;
}

.service-points p:last-child {
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(300px, 0.82fr);
  gap: clamp(32px, 8vw, 96px);
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(35, 57, 84, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--blue);
  font-size: clamp(22px, 3.8vw, 36px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(20px, 5vw, 58px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

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

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 12, 14, 0.94) 0%, rgba(9, 12, 14, 0.76) 55%, rgba(9, 12, 14, 0.18) 100%),
      linear-gradient(0deg, rgba(9, 12, 14, 0.66), rgba(9, 12, 14, 0));
  }

  .intro,
  .split,
  .service-inner,
  .contact {
    grid-template-columns: 1fr;
  }

  .type-card {
    grid-template-columns: 48px 1fr;
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 190px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

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

  .hero-content {
    padding-top: 104px;
  }

  .button {
    width: 100%;
  }
}
