:root {
  --brand: #f5bc01;
  --brand-dark: #d4a200;
  --navy: #2f4858;
  --navy-dark: #1c303c;
  --ink: #162028;
  --muted: #5c6b74;
  --line: #e4e7ea;
  --paper: #f4f1ea;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(28, 48, 60, 0.12);
  --radius: 18px;
  --header-h: 80px;
  --max: 1120px;
  --font: "DM Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
.btn {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--brand);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  left: 8px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.logo-text span {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.menu-toggle span {
  position: relative;
  width: 22px;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.hero {
  background:
    linear-gradient(180deg, rgba(28, 48, 60, 0.18), rgba(28, 48, 60, 0.55)),
    linear-gradient(135deg, #2f4858 0%, #1c303c 52%, #243b49 100%);
  color: var(--white);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 16px;
}

.hero h1 {
  max-width: 16ch;
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 38rem;
  margin: 0 0 28px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.pills li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  background: var(--brand);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.btn:hover {
  background: #ffd24a;
}

.btn-dark {
  background: var(--navy-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #14242d;
}

.section {
  padding: 88px 0;
}

.section-header {
  margin-bottom: 36px;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-header h2 em {
  color: var(--brand-dark);
  font-style: normal;
}

.section-header p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.video-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

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

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 22px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.gallery-card {
  min-height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(28, 48, 60, 0.1), rgba(28, 48, 60, 0.45)),
    var(--navy);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.cta {
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
  padding: 84px 0;
}

.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.03em;
}

.cta h2 em {
  color: var(--brand);
  font-style: normal;
}

.cta p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
}

.spaces {
  background: var(--paper);
}

.space-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.space-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
}

.space-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

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

.space-card .btn {
  align-self: flex-start;
  margin-top: 22px;
}

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  margin: 0 0 8px;
}

.hours {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.social {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.social a:hover {
  background: var(--brand);
  color: var(--ink);
  border-color: var(--brand);
}

.copyright {
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.page-hero {
  background: linear-gradient(135deg, #2f4858 0%, #1c303c 100%);
  color: var(--white);
  padding: 72px 0 64px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-panel {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-panel h2 {
  margin: 0 0 16px;
  font-size: 1.2rem;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav.is-open {
    display: flex;
  }

  .concept-grid,
  .gallery,
  .space-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .section,
  .cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

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

  .logo-text span {
    display: none;
  }

  .hero h1 {
    max-width: none;
  }
}
