:root {
  --bg: #091219;
  --bg-soft: #0f1b24;
  --surface: #152733;
  --surface-2: #1c3443;
  --paper: #f5f2ea;
  --paper-2: #e6dfd1;
  --text: #f8f4ee;
  --muted: #c2c8ca;
  --ink: #0c141a;
  --accent: #c7872b;
  --accent-strong: #efac47;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(199, 135, 43, 0.12), transparent 28%),
    linear-gradient(180deg, #081017 0%, #0d1821 100%);
  color: var(--text);
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.05;
  color: var(--text);
}

h1,
h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -0.03em;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 12, 17, 0.72);
  backdrop-filter: blur(14px);
}

.topbar__inner,
.header__inner,
.topbar__meta,
.hero__actions,
.cta-band__actions {
  display: flex;
  align-items: center;
}

.topbar__inner {
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.topbar__inner p,
.topbar__meta a {
  margin: 0;
  font-size: 0.9rem;
}

.topbar__meta {
  gap: 1rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 16, 23, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header__inner {
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  width: min(240px, 48vw);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav__link {
  padding: 0.8rem 1rem;
  color: rgba(248, 244, 238, 0.76);
  transition: color 160ms ease, background 160ms ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #111;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(199, 135, 43, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(199, 135, 43, 0.34);
}

.button--secondary,
.button--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
}

.menu-toggle span {
  display: block;
  width: 1.6rem;
  height: 2px;
  margin: 0.28rem 0;
  background: var(--text);
}

.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;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
}

.hero--home {
  min-height: calc(100vh - 120px);
}

.hero__backdrop,
.page-hero__image {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

.hero__backdrop {
  background-image:
    linear-gradient(120deg, rgba(8, 16, 23, 0.9), rgba(8, 16, 23, 0.48)),
    url("assets/images/banner1-1.jpg");
}

.hero__content,
.page-hero__content {
  display: grid;
  gap: 2rem;
  align-items: end;
  padding: 6rem 0;
}

.hero__content {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.hero__copy h1,
.page-hero__content h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 6vw, 6.2rem);
}

.lead {
  max-width: 62ch;
  font-size: 1.08rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-card,
.stat-card,
.service-card,
.feature-panel,
.list-panel,
.detail-card,
.news-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(21, 39, 51, 0.95), rgba(13, 25, 34, 0.95));
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
}

.hero-card__label,
.hero-card__footer strong,
.footer h3 {
  color: var(--paper);
}

.hero-card__list {
  display: grid;
  gap: 0.8rem;
  padding-left: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--paper-2);
}

.hero-card__footer {
  display: grid;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.section {
  padding: 5.5rem 0;
}

.section--dark {
  background:
    radial-gradient(circle at right top, rgba(199, 135, 43, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(8, 16, 23, 0.28), rgba(8, 16, 23, 0.9));
}

.stats__grid,
.service-grid,
.footer__grid,
.news-grid,
.contact-layout {
  display: grid;
  gap: 1.2rem;
}

.stats__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 1.7rem;
}

.stat-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.split__media img,
.gallery img,
.detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  max-width: 56rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.split__copy h2,
.feature-panel h2,
.contact-card h2,
.detail-card h2,
.news-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.feature-panel,
.news-card,
.contact-card {
  padding: 1.6rem;
}

.section-cta {
  margin-top: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1rem;
}

.gallery__item {
  min-height: 230px;
}

.gallery__item--large {
  grid-row: span 2;
  min-height: 480px;
}

.cta-band__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(130deg, rgba(199, 135, 43, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.footer {
  padding: 2.5rem 0 1.2rem;
  background: rgba(5, 12, 17, 0.9);
}

.footer__grid {
  grid-template-columns: 1.4fr 0.8fr 1fr;
  padding-bottom: 2rem;
}

.footer__logo {
  width: 180px;
  margin-bottom: 1rem;
}

.footer a {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(248, 244, 238, 0.78);
}

.footer__bottom {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.page-hero {
  padding: 2rem 0 0;
}

.page-hero__content {
  min-height: 360px;
  align-items: center;
}

.page-hero--image .page-hero__content {
  position: relative;
}

.feature-stack,
.service-detail-grid {
  display: grid;
  gap: 1.4rem;
}

.feature-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list-panel {
  padding: 2rem;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  color: var(--paper-2);
}

.check-list li::marker {
  color: var(--accent-strong);
}

.detail-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1.4rem;
  padding: 1rem;
}

.service-detail-grid {
  grid-template-columns: 1fr;
}

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

.news-card__tag {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(239, 172, 71, 0.12);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card--wide {
  grid-column: span 3;
}

.contact-link,
.text-link {
  color: var(--paper);
  font-weight: 700;
}

.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 0.6rem;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .topbar__inner,
  .hero__content,
  .split,
  .feature-stack,
  .stats__grid,
  .service-grid,
  .footer__grid,
  .news-grid,
  .contact-layout,
  .detail-card,
  .gallery {
    grid-template-columns: 1fr;
  }

  .header__inner {
    flex-wrap: nowrap;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: 0;
    flex: 0 0 auto;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.5rem;
  }

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

  .nav__link,
  .button--ghost {
    width: 100%;
    text-align: left;
  }

  .brand {
    width: min(200px, 58vw);
  }

  .hero__copy h1,
  .page-hero__content h1 {
    max-width: none;
  }

  .gallery__item--large,
  .contact-card--wide {
    grid-row: auto;
    grid-column: auto;
    min-height: 260px;
  }

  .cta-band__inner,
  .topbar__inner,
  .hero__actions,
  .cta-band__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-card {
    padding: 1rem;
  }

  .detail-card img {
    max-height: 280px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .header__inner {
    padding: 0.85rem 0;
  }

  .hero__content,
  .page-hero__content {
    padding: 4.5rem 0;
  }

  .hero__copy h1,
  .page-hero__content h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .topbar__inner p,
  .topbar__meta a {
    font-size: 0.82rem;
  }
}
