:root {
  --bg: #676767;
  --panel: #10191d;
  --panel-soft: #122028;
  --card: #0b1013;
  --text: #f4f2eb;
  --muted: #d7d3ca;
  --gold: #f0d84c;
  --gold-deep: #d6bb22;
  --line: rgba(240, 216, 76, 0.55);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  --radius: 24px;
  --shell: min(1180px, calc(100vw - 32px));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 0;
  background:
    radial-gradient(circle at top left, rgba(240, 216, 76, 0.18), transparent 24rem),
    linear-gradient(180deg, #6c6c6c 0, #666 22rem, #0c1216 22rem, #0c1216 100%);
  color: var(--text);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.shell { width: var(--shell); margin: 0 auto; }
.main-content { padding-bottom: 72px; }
.section { margin: 0 auto 44px; }
.section--contrast { background: #091014; margin-inline: calc(50% - 50vw); padding: 56px max(16px, calc(50vw - 590px)); }
.surface-light { padding-top: 20px; }
.surface-panel {
  background: linear-gradient(180deg, rgba(16, 25, 29, 0.96), rgba(18, 32, 40, 0.96));
  border-radius: 24px;
  padding: 56px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #24303a;
}

.eyebrow--gold { color: var(--gold); }

h1, h2, h3, blockquote {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

h1 { font-size: clamp(2.25rem, 4vw, 4.2rem); }
h2 { font-size: clamp(1.85rem, 3vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin: 0 0 16px; color: var(--muted); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.22);
  background: #fff;
  color: #242424;
  font-weight: 700;
}

.button--gold {
  background: var(--gold);
  border-color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(103, 103, 103, 0.9);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 132px;
}

.brand img { width: min(180px, 33vw); }
.brand--footer img { width: min(190px, 40vw); }

.site-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  min-width: 0;
}

.site-nav a,
.footer-nav a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

.site-nav a[aria-current="page"]::after,
.footer-nav a:hover::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
}

.header-actions,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #f6f2ea;
}

.icon-link svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  padding: 12px 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #1f1f1f;
  margin: 5px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  min-height: 360px;
  background: #111;
}

.feature-card--large { min-height: 430px; }
.feature-card img { width: 100%; height: 100%; object-fit: cover; }
.feature-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
  color: #1d1d1d;
  padding: 24px;
}

.feature-card__overlay p { color: #1d1d1d; margin-bottom: 10px; }

.about-split,
.contact-layout,
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.about-split {
  align-items: stretch;
}

.about-split__media--stacked,
.about-split__content {
  height: 100%;
}

.about-split__media--stacked {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.about-split__media--stacked img {
  height: 100%;
  object-fit: cover;
}

.about-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-split__media img,
.story-layout__visual img,
.quote-panel img,
.detail-card__media img {
  width: 100%;
  border-radius: 18px;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 34px;
  background: #102028;
  margin-inline: calc(50% - 50vw);
  margin-bottom: 44px;
}

.contact-strip > div {
  text-align: center;
}

.contact-strip__label {
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 700;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 30px;
}

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

.service-card h3 {
  margin-top: 12px;
  text-align: center;
  font-size: 1.55rem;
}

.stacked-services {
  display: grid;
  gap: 28px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 26px;
  align-items: center;
  background: rgba(16, 25, 29, 0.95);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.detail-card--reverse .detail-card__media { order: 2; }
.detail-card--reverse .detail-card__copy { order: 1; }

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

.gallery-card { min-width: 0; }
.gallery-button {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-button img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid rgba(240, 216, 76, 0.55);
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
}

.quote-panel--narrow { grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); }
.quote-panel blockquote { font-size: clamp(1.4rem, 2.4vw, 2.2rem); }

.check-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.check-list div {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.contact-card,
.map-card {
  background: rgba(16, 25, 29, 0.96);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-card hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.35);
  margin: 20px 0;
}

.site-footer {
  background: #f2efe8;
  color: #242424;
  margin-top: 40px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 168px;
  padding: 28px 0;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.footer-meta p,
.site-footer a { color: #242424; }

.lightbox[hidden] { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: rgba(5, 8, 10, 0.88);
  padding: 24px;
}

.lightbox__image {
  max-width: min(94vw, 1100px);
  max-height: 84vh;
  border-radius: 18px;
}

.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  font-size: 2rem;
  line-height: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .site-header__inner { min-height: 110px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle { display: inline-block; }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-nav.is-open,
  .header-actions.is-open {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-nav.is-open {
    flex-direction: column;
    gap: 0;
    background: rgba(16, 25, 29, 0.98);
    border-radius: 18px;
    padding: 12px 18px;
  }

  .header-actions.is-open {
    flex-wrap: wrap;
    padding-bottom: 8px;
  }

  .hero-grid,
  .about-split,
  .story-layout,
  .contact-layout,
  .quote-panel,
  .section-heading--split,
  .detail-card,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .surface-panel { padding: 34px 22px; }
  .feature-card,
  .feature-card--large { min-height: 300px; }
  .feature-card__overlay {
    padding: 16px;
  }

  .contact-strip {
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }

  .services-grid,
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .detail-card { padding: 20px; }
  .footer-meta { text-align: left; }
}

@media (max-width: 414px) {
  .services-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .feature-card__overlay p { font-size: 0.95rem; }
  .service-card h3 { font-size: 1.3rem; }
  h1 { font-size: 2rem; }
}
