:root {
  --bg: #f6f2ea;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #fffdf9;
  --surface-soft: #ede5d7;
  --ink: #171d2d;
  --muted: #5d6271;
  --line: rgba(23, 29, 45, 0.14);
  --line-strong: rgba(23, 29, 45, 0.22);
  --accent: #d1a53b;
  --accent-strong: #b68518;
  --accent-soft: rgba(209, 165, 59, 0.18);
  --navy: #1f2341;
  --navy-soft: #30365d;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(22, 28, 44, 0.16);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(209, 165, 59, 0.18), transparent 28%),
    linear-gradient(180deg, #faf7f0 0%, #f6f2ea 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 30;
  transform: translateY(-140%);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 1rem 0;
  transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

body.scrolled .site-header {
  padding: 0.55rem 0;
  background: rgba(246, 242, 234, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(23, 29, 45, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand__logo {
  width: 3.55rem;
  height: 3.55rem;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(17, 20, 34, 0.22);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.06rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--white);
}

.brand__text strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

body.scrolled .brand__text {
  color: var(--navy);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(14px);
}

.site-nav a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 700;
  color: #eff2ff;
}

body.scrolled .site-nav {
  border-color: rgba(23, 29, 45, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

body.scrolled .site-nav a {
  color: var(--navy);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-strong) 100%);
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.24rem auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.scrolled .nav-toggle span {
  background: var(--navy);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
  padding-top: 8.5rem;
  overflow: clip;
  background: var(--navy);
  color: var(--white);
}

.hero__media,
.hero__wash,
.contact__media,
.contact__veil {
  position: absolute;
  inset: 0;
}

.hero__media img,
.contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__wash {
  background:
    linear-gradient(90deg, rgba(18, 21, 39, 0.88) 0%, rgba(18, 21, 39, 0.5) 42%, rgba(18, 21, 39, 0.1) 100%),
    linear-gradient(180deg, rgba(31, 35, 65, 0.14) 0%, rgba(31, 35, 65, 0.56) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  flex: 1;
  padding-bottom: 8rem;
}

.hero__content {
  max-width: 40rem;
}

.eyebrow {
  margin: 0 0 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
}

.eyebrow--light {
  color: #f1dca2;
}

.hero h1,
.section-heading h2,
.contact__intro h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6.7rem);
  max-width: 10ch;
}

.hero__lead {
  margin: 1.35rem 0 0;
  max-width: 35rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

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

.button--primary {
  color: var(--navy);
  background: linear-gradient(135deg, #f3db9b 0%, #cf9f36 100%);
  box-shadow: 0 20px 40px rgba(209, 165, 59, 0.24);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero__ticker {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.hero__ticker span {
  padding: 1.2rem 1.4rem;
  background: rgba(15, 18, 35, 0.56);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.84);
}

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.section-heading {
  max-width: 46rem;
}

.section-heading h2,
.contact__intro h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--navy);
}

.section-heading p {
  margin: 1.05rem 0 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.services__layout,
.approach__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: 3rem;
}

.services__feature,
.approach__visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.services__feature img,
.approach__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__feature {
  min-height: 39rem;
}

.services__feature figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.35rem 1.4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(16, 19, 34, 0.84) 100%);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.services__list,
.approach__points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service,
.point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.service:last-child,
.point:last-child {
  border-bottom: 1px solid var(--line);
}

.service__index,
.point__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 900;
}

.service h3,
.point h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.service p,
.point p {
  margin: 0;
  color: var(--muted);
}

.approach {
  background:
    linear-gradient(180deg, rgba(209, 165, 59, 0.05) 0%, rgba(209, 165, 59, 0) 100%),
    var(--surface-soft);
}

.approach__visual {
  min-height: 33rem;
}

.statement {
  margin-top: 2.4rem;
  padding: 1.8rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--radius-lg);
  background: rgba(31, 35, 65, 0.94);
  box-shadow: var(--shadow);
}

.statement p {
  margin: 0;
  max-width: 44rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: #f4f4fb;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
  grid-column: span 4;
  min-height: 18rem;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
}

.gallery-card--wide {
  grid-column: span 8;
}

.gallery-card--tall {
  grid-row: span 2;
  min-height: 37rem;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 26, 0.06) 10%, rgba(10, 12, 26, 0.78) 100%);
}

.gallery-card__meta {
  position: absolute;
  right: 1.2rem;
  bottom: 1.15rem;
  left: 1.2rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--white);
}

.gallery-card__meta strong {
  font-size: 1.15rem;
}

.gallery-card__meta span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.04);
}

.contact {
  overflow: clip;
  background: var(--navy);
  color: var(--white);
}

.contact__veil {
  background:
    linear-gradient(90deg, rgba(15, 18, 35, 0.94) 0%, rgba(15, 18, 35, 0.8) 48%, rgba(15, 18, 35, 0.48) 100%),
    radial-gradient(circle at top right, rgba(209, 165, 59, 0.2), transparent 28%);
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 27rem);
  gap: 2rem;
  align-items: end;
}

.contact__intro p:last-child {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact__intro h2 {
  color: var(--white);
}

.contact__panel {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.contact-item {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

a.contact-item:hover,
a.contact-item:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
}

.contact-item__label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.64);
}

.contact-item strong {
  font-size: 1.15rem;
}

.site-footer {
  padding: 1rem 0 5.5rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.94rem;
}

.mobile-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 18;
  display: none;
  align-items: center;
  gap: 0.4rem;
  min-height: 3.4rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2d995 0%, #cb9830 100%);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 24px 48px rgba(17, 20, 34, 0.2);
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-call.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 10, 20, 0.84);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 70rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0e1224;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.lightbox__image {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  background: #0e1224;
}

.lightbox__caption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.2rem 1.25rem;
  color: var(--white);
}

.lightbox__caption span {
  color: rgba(255, 255, 255, 0.72);
}

.lightbox__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 1;
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  cursor: pointer;
}

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

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

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 5.25rem;
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border-radius: 1.5rem;
    background: rgba(15, 18, 35, 0.94);
    transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  body.scrolled .site-nav {
    background: rgba(255, 255, 255, 0.96);
  }

  .site-nav a,
  body.scrolled .site-nav a {
    color: var(--white);
    padding: 0.85rem 0.2rem;
  }

  body.scrolled .site-nav a {
    color: var(--navy);
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    padding-top: 7rem;
  }

  .hero__inner {
    padding-bottom: 5rem;
  }

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

  .services__layout,
  .approach__layout,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .services__feature,
  .approach__visual {
    min-height: 26rem;
  }

  .gallery-card,
  .gallery-card--wide,
  .gallery-card--tall {
    grid-column: span 6;
    min-height: 19rem;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .brand__text {
    font-size: 0.62rem;
  }

  .brand__text strong {
    font-size: 0.9rem;
  }

  .hero h1 {
    max-width: 8ch;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

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

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

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

  .gallery-card,
  .gallery-card--wide,
  .gallery-card--tall {
    grid-column: auto;
    min-height: 16.5rem;
  }

  .contact__panel {
    padding: 1rem;
  }

  .mobile-call {
    display: inline-flex;
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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