:root {
  --navy: #071a35;
  --navy2: #0d2b50;
  --gold: #c9a34e;
  --cream: #f6f4ef;
  --ink: #182331;
  --muted: #667180;
  --white: #fff;
  --line: #e4e1d9;
  --shadow: 0 20px 55px rgba(7, 26, 53, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}

.container {
  width: min(1160px, 92%);
  margin: auto;
}

.topbar {
  background: var(--navy);
  color: #dbe5f0;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.brand strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.navlinks {
  display: flex;
  gap: 24px;
  align-items: center;
}

.navlinks a {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.navlinks a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 11px 17px;
  border-radius: 2px;
}

.menu {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
}

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  position: relative;
  background: url("../images/workshop/workshop-night.jpg") center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 19, 39, 0.94),
    rgba(5, 19, 39, 0.6),
    rgba(5, 19, 39, 0.18)
  );
}

.hero-content {
  position: relative;
  color: white;
  max-width: 760px;
  padding: 100px 0;
}

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #d8bc74;
  margin: 0 0 15px;
}

.eyebrow.dark {
  color: #8b6d27;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.03;
  margin: 0 0 25px;
}

.hero p:not(.eyebrow) {
  font-size: 18px;
  max-width: 680px;
  color: #e7edf5;
}

.actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}

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

.btn.outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
}

.stats {
  background: var(--navy);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 27px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-grid div:last-child {
  border: 0;
}

.stats b {
  display: block;
  color: var(--gold);
  font: 700 30px Georgia, serif;
}

.stats span {
  font-size: 12px;
  color: #cbd6e2;
}

.section {
  padding: 100px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.section h2 {
  font: 700 clamp(34px, 4vw, 48px) / 1.1 Georgia, serif;
  margin: 0 0 20px;
  color: var(--navy);
}

.section-copy p {
  color: #56616f;
}

.image-card {
  position: relative;
  box-shadow: var(--shadow);
}

.image-card img {
  display: block;
  width: 100%;
  height: 590px;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: white;
  background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.8)
  );
  display: flex;
  flex-direction: column;
}

.caption span {
  font-size: 12px;
  color: #ddd;
}

.text-link {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.dark-section {
  background: var(--navy);
  color: #fff;
}

.dark-section h2 {
  color: #fff;
}

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

.section-heading > p:last-child {
  color: #aebdce;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.skill {
  background: #0c284a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 190px;
}

.skill img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.skill div {
  padding: 22px;
}

.skill span {
  font-size: 11px;
  color: var(--gold);
  font-weight: 800;
}

.skill h3 {
  margin: 7px 0;
  color: white;
  font-size: 20px;
}

.skill p {
  font-size: 13px;
  color: #b8c6d5;
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
}

.feature-large,
.feature-stack > div {
  position: relative;
  overflow: hidden;
}

.feature-large img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}

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

.feature-stack > div {
  height: 296px;
}

.feature-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-label,
.feature-stack span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 18px;
  color: white;
  font-weight: 800;
  background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.82)
  );
}

.facility-section {
  background: var(--cream);
}

.facility-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.facility-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

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

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #0c284a;
}

.gallery img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.35s;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  padding: 12px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: start;
}

.contact-card {
  background: white;
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-card > div {
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-card span {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-weight: 800;
}

.contact-card a:not(.btn),
.contact-card p {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  margin: 4px 0;
}

.full {
  width: 100%;
  text-align: center;
  border: 0;
}

footer {
  background: #041226;
  color: #aebdce;
  padding: 25px 0;
  font-size: 12px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span {
  color: #8ea1b7;
  font-size: 10px;
  margin-top: 2px;
}

/* =========================
   Tablet
========================= */

@media (max-width: 900px) {
  .navlinks {
    display: none;
  }

  .menu {
    display: block;
  }

  .topbar-inner {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .image-card img {
    height: 460px;
  }

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

  .facility-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   Mobile
========================= */

@media (max-width: 560px) {
  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

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

  .brand small {
    font-size: 8px;
  }

  .hero-content {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

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

  .actions {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid div {
    padding: 20px 12px;
  }

  .section {
    padding: 70px 0;
  }

  .skill {
    grid-template-columns: 1fr;
  }

  .skill img {
    height: 220px;
    min-height: 0;
  }

  .facility-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 330px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}