:root {
  --ink: #0f172a;
  --muted: #536171;
  --line: rgba(15, 23, 42, 0.12);
  --paper: #f8f6f1;
  --white: #ffffff;
  --navy: #111827;
  --gold: #c7a45d;
  --gold-soft: #efe4ca;
  --red: #d71920;
  --green: #254b3e;
  --green-soft: #dfe9e4;
  --radius: 28px;
  --shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
  --container: 1160px;
}

* { 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);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

p { margin: 0 0 1rem; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: .7rem 1rem;
  z-index: 999;
}

.skip-link:focus { left: 0; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(248, 246, 241, 0.84);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 104px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 6px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand img {
  width: 174px;
  display: block;
  border-radius: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: .93rem;
  color: var(--muted);
}

.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--ink); }

.nav-cta {
  padding: .72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink) !important;
  background: rgba(255,255,255,.55);
}

.hero {
  padding: 96px 0 74px;
  background:
    radial-gradient(circle at 15% 20%, rgba(199, 164, 93, .26), transparent 26%),
    radial-gradient(circle at 85% 5%, rgba(37, 75, 62, .22), transparent 24%),
    linear-gradient(135deg, #f7f3eb 0%, #ffffff 56%, #e8efe9 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 390px;
  gap: 4rem;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 .85rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 800;
}

h1, h2, h3 { line-height: 1.05; margin: 0; }

h1 {
  max-width: 920px;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  letter-spacing: -.075em;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.35rem);
  letter-spacing: -.055em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -.02em;
}

.hero-text {
  max-width: 760px;
  margin-top: 1.5rem;
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  color: var(--muted);
}

.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(15,23,42,.22);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card div {
  padding: 1.3rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,228,202,.5));
  border: 1px solid var(--line);
}

.metric {
  display: block;
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 900;
}

.label {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
  font-size: .95rem;
}

.section { padding: 92px 0; }

.two-col,
.split-list {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.rich-text {
  color: var(--muted);
  font-size: 1.08rem;
}

.rich-text p:last-child { margin-bottom: 0; }

.video-section {
  padding-top: 78px;
  background: var(--paper);
}

.video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  margin: 1rem 0 0;
  text-align: right;
  font-weight: 800;
}

.video-fallback a {
  color: var(--green);
  border-bottom: 1px solid rgba(37,75,62,.28);
}

.dark-panel {
  margin: 0 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: 38px;
}

.dark-panel .section-kicker { color: var(--gold); }
.dark-panel h2 { max-width: 800px; }

.section-heading { margin-bottom: 2.5rem; }
.section-heading.narrow { max-width: 760px; }
.section-heading.narrow p:not(.section-kicker) { color: var(--muted); font-size: 1.08rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border-radius: 26px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}

.card-number {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: -.02em;
}

.card p { color: rgba(255,255,255,.72); margin-bottom: 0; }

.card-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  margin: 1rem 0 1.1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.16);
}

.card-logo {
  display: block;
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.card-logo-edr {
  max-height: 58px;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
}

.timeline-item p { margin: .6rem 0 0; color: var(--muted); }

.external-heading-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(15,23,42,.22);
  transition: color .2s ease, border-color .2s ease;
}

.external-heading-link:hover {
  color: var(--green);
  border-color: rgba(37,75,62,.55);
}

.external-heading-link span {
  font-size: .78em;
  margin-left: .12em;
}

.date {
  font-weight: 900;
  color: var(--green);
}

.quote-band {
  padding: 68px 0;
  background: var(--green);
  color: var(--white);
}

blockquote {
  margin: 0;
  max-width: 930px;
  font-size: clamp(1.6rem, 3vw, 3.1rem);
  line-height: 1.14;
  letter-spacing: -.05em;
}

.principles-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.principles-list li {
  padding: 1.2rem 1.35rem;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
}

.principles-list strong { color: var(--ink); }

.contact { padding-top: 0; }

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(15,23,42,.08);
}

.contact-card p:not(.section-kicker) {
  max-width: 650px;
  color: var(--muted);
}

.contact-actions { margin-top: 0; flex-shrink: 0; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .92rem;
}

.small { color: #778292; }


.award { padding-top: 78px; }

.award-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(15,23,42,.08);
}

.award-logo-panel {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #111827, #1f2937);
  border: 1px solid rgba(199,164,93,.36);
}

.award-logo-panel img {
  display: block;
  width: min(100%, 260px);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.award-logo-panel span {
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}

.award-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-card-booking {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
}

.contact-copy { max-width: 520px; }

.contact-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
  margin-top: 1.2rem;
  font-weight: 800;
}

.contact-links-inline a {
  color: var(--green);
  border-bottom: 1px solid rgba(37,75,62,.28);
}

.booking-widget {
  width: 100%;
  min-height: 660px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.booking-widget iframe {
  min-height: 660px;
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1rem;
  font-weight: 800;
}

.footer-links a {
  color: var(--ink);
  border-bottom: 1px solid rgba(15,23,42,.22);
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .split-list,
  .award-card,
  .contact-card-booking {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-card { max-width: 520px; }
  .award-logo-panel { min-height: 220px; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav { display: none; }
  .header-inner { min-height: 84px; }
  .brand { min-width: 172px; }
  .brand img { width: 148px; }
}

@media (max-width: 650px) {
  .brand { min-width: 152px; padding: 7px 8px; }
  .brand img { width: 132px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero { padding: 72px 0 52px; }
  h1 { font-size: clamp(3rem, 18vw, 4.8rem); }
  .section { padding: 64px 0; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 250px; }
  .timeline-item { grid-template-columns: 1fr; gap: .7rem; }
  .contact-card { display: block; }
  .contact-actions { margin-top: 1.5rem; }
  .dark-panel { margin: 0 12px; border-radius: 28px; }
  .video-frame { border-radius: 22px; }
  .booking-widget,
  .booking-widget iframe { min-height: 720px; }
  .award-card { padding: 1.25rem; }
}

