@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #0d1513;
  --bg-strong: #11201c;
  --surface: rgba(20, 31, 27, 0.84);
  --surface-strong: rgba(27, 41, 36, 0.94);
  --surface-soft: rgba(240, 245, 242, 0.06);
  --ink: #f1f6f2;
  --muted: #b5c4bc;
  --line: rgba(235, 242, 238, 0.12);
  --brand: #2f6b57;
  --brand-strong: #1c4638;
  --brand-soft: rgba(47, 107, 87, 0.16);
  --accent: #cb9b57;
  --accent-soft: rgba(203, 155, 87, 0.18);
  --shadow: 0 24px 70px rgba(6, 11, 9, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-button: 999px;
  --max: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: #0b1210;
}

body {
  margin: 0;
  min-width: 100%;
  min-height: 100vh;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(203, 155, 87, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(71, 138, 113, 0.14), transparent 22%),
    linear-gradient(180deg, #0b1210 0%, #101917 36%, #13201d 100%);
  overflow-x: clip;
}

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

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 99;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(24px) saturate(135%);
  background:
    linear-gradient(180deg, rgba(239, 245, 241, 0.12), rgba(86, 116, 108, 0.08)),
    rgba(10, 17, 14, 0.56);
  border-bottom: 1px solid rgba(239, 245, 241, 0.14);
  box-shadow: 0 10px 28px rgba(5, 10, 7, 0.1);
}

.nav-shell,
.section-shell,
.footer-shell,
.blog-shell,
.article-shell,
.rhythm-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.nav-shell {
  min-height: var(--header-height);
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

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

.brand img {
  width: 110px;
  height: 66px;
  object-fit: contain;
  filter: brightness(1.5) saturate(1.4) drop-shadow(0 10px 24px rgba(6, 11, 9, 0.22));
}

.brand-copy span {
  display: block;
}

.brand-copy span:first-child {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241, 246, 242, 0.74);
}

.brand-copy span:last-child {
  font-size: 0.98rem;
  line-height: 1.15;
  font-weight: 700;
  max-width: 24ch;
}

.nav-links,
.nav-actions,
.hero-actions,
.footer-shell,
.contact-grid,
.faq-wrap,
.proof-grid,
.areas-grid,
.gallery-grid,
.blog-grid,
.service-grid,
.spotlight-grid,
.rhythm-metrics {
  display: flex;
}

.nav-links,
.nav-actions {
  align-items: center;
}

.nav-links {
  gap: 1rem;
  color: rgba(241, 246, 242, 0.9);
  font-size: 0.94rem;
}

.nav-links > a {
  white-space: nowrap;
}

.service-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.service-dropdown-header {
  padding-bottom: 0.55rem;
  margin-bottom: -0.55rem;
}

.service-dropdown summary {
  list-style: none;
}

.service-dropdown summary::-webkit-details-marker {
  display: none;
}

.service-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: rgba(241, 246, 242, 0.9);
  font: inherit;
  font-size: inherit;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.service-dropdown[open] .service-dropdown-trigger,
.service-dropdown-trigger:hover {
  color: #fff;
}

.service-dropdown-icon {
  font-size: 0.72rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.service-dropdown[open] .service-dropdown-icon {
  transform: rotate(180deg);
}

.service-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 25;
  min-width: 240px;
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(18, 29, 25, 0.98), rgba(10, 17, 14, 0.98));
  box-shadow: 0 24px 50px rgba(6, 10, 11, 0.28);
}

.service-dropdown-menu a {
  display: block;
  padding: 0.68rem 0.8rem;
  border-radius: 14px;
  color: rgba(241, 246, 242, 0.86);
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.service-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-actions {
  gap: 0.8rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.menu-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle__bars span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #eef3ef;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.2rem;
  border-radius: var(--radius-button);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 16px 30px rgba(28, 70, 56, 0.24);
}

.button-secondary {
  color: #f2f7f3;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.button-ghost {
  color: #f2f7f3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-2px);
}

.eyebrow,
.service-kicker,
.meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: #eef4ef;
}

.service-kicker,
.meta {
  background: var(--accent-soft);
  color: #f6ddba;
}

.hero {
  width: 100%;
  padding: 0 0 3rem;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.hero-panel {
  width: min(1380px, calc(100% - 2rem));
  margin: 1.25rem auto 0;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  min-height: 78vh;
  box-shadow: var(--shadow);
}

.hero-panel > img {
  width: 100%;
  height: 100%;
  min-height: 78vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  align-content: end;
  gap: 1.2rem;
  background:
    linear-gradient(180deg, rgba(5, 9, 8, 0.2) 0%, rgba(6, 10, 9, 0.62) 46%, rgba(7, 12, 10, 0.88) 100%);
}

.hero-overlay-centered {
  justify-items: center;
}

.hero-glass-card,
.contact-card,
.metric-card,
.blog-card,
.service-card,
.spotlight-card,
.area-card,
.gallery-card,
.article-layout,
.article-sidebar {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(242, 246, 243, 0.08), rgba(242, 246, 243, 0.03)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-glass-card {
  width: min(840px, 100%);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  border-radius: var(--radius-xl);
  text-align: center;
  backdrop-filter: blur(20px);
}

.hero-glass-card h1,
.section-heading h2,
.rhythm-copy h2,
.blog-hero h1,
.article-hero h1 {
  margin: 0.8rem 0 1rem;
  line-height: 0.98;
}

.hero-glass-card h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-glass-card p {
  max-width: 48rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.hero-actions-centered {
  justify-content: center;
}

.hero-highlights {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mini-stat {
  padding: 1.1rem 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 15, 12, 0.52);
  backdrop-filter: blur(14px);
}

.mini-stat strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.mini-stat span {
  color: rgba(241, 246, 242, 0.78);
  line-height: 1.55;
}

.section,
.blog-hero,
.article-hero {
  padding: 2rem 0 5rem;
}

.section-shell {
  display: grid;
  gap: 1.6rem;
}

.section-heading,
.article-copy {
  display: grid;
  gap: 0.9rem;
}

.section-heading-centered {
  justify-items: center;
  text-align: center;
}

.section-heading-wide {
  max-width: 62rem;
  margin: 0 auto;
}

.section-heading h2,
.rhythm-copy h2,
.blog-hero h1,
.article-hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-heading p {
  max-width: 56rem;
}

.spotlight-grid,
.service-grid,
.proof-grid,
.areas-grid,
.gallery-grid,
.blog-grid,
.contact-grid,
.faq-wrap,
.rhythm-metrics {
  flex-wrap: wrap;
  gap: 1.2rem;
}

.spotlight-grid > *,
.proof-grid > *,
.areas-grid > *,
.blog-grid > * {
  flex: 1 1 280px;
}

.spotlight-card,
.blog-card,
.area-card,
.proof-card,
.contact-card,
.metric-card,
.article-sidebar {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.spotlight-card h3,
.service-card h3,
.gallery-caption strong,
.proof-card h3,
.article-copy h2,
.article-sidebar h3 {
  font-size: 1.35rem;
}

.spotlight-card-accent {
  background:
    linear-gradient(180deg, rgba(203, 155, 87, 0.18), rgba(47, 107, 87, 0.06)),
    var(--surface-strong);
}

.service-grid {
  align-items: stretch;
}

.service-card {
  flex: 1 1 320px;
  border-radius: 28px;
  overflow: hidden;
}

.service-card.featured {
  transform: translateY(-10px);
}

.single-feature {
  display: grid;
}

.horizontal-service {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.card-media img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-media {
  min-height: 250px;
}

.card-body,
.gallery-caption,
.blog-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
}

.service-list,
.check-list,
.article-list {
  display: grid;
  gap: 0.6rem;
}

.service-list li,
.check-list li,
.article-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-list li::before,
.check-list li::before,
.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.rhythm-band {
  padding: 2.4rem 0;
}

.rhythm-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
}

.rhythm-copy,
.rhythm-metrics {
  padding: 1.6rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(242, 246, 243, 0.06), rgba(242, 246, 243, 0.02)),
    rgba(12, 19, 16, 0.82);
}

.rhythm-copy {
  display: grid;
  gap: 0.9rem;
}

.rhythm-metrics {
  align-content: stretch;
}

.metric-card {
  flex: 1 1 180px;
  min-height: 100%;
}

.metric-card strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.6rem;
  color: #fff;
}

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

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
}

.gallery-card img {
  height: 280px;
}

.gallery-caption strong {
  display: block;
  margin-bottom: 0.45rem;
}

.faq-wrap {
  align-items: flex-start;
}

.faq-wrap > * {
  flex: 1 1 320px;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(242, 246, 243, 0.06), rgba(242, 246, 243, 0.02)),
    rgba(13, 20, 17, 0.82);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.15rem 1.2rem;
  border: 0;
  background: transparent;
  color: #f5faf6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font: inherit;
  font-weight: 700;
}

.faq-answer {
  display: none;
  padding: 0 1.2rem 1.2rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact-lines {
  display: grid;
  gap: 1rem;
}

.contact-label {
  margin-bottom: 0.2rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(241, 246, 242, 0.72);
}

.contact-value {
  font-weight: 700;
  color: #fff;
}

.site-footer {
  padding: 1.5rem 0 2rem;
}

.footer-shell {
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(12, 19, 16, 0.72);
  color: rgba(241, 246, 242, 0.76);
}

.blog-hero,
.article-hero {
  padding-top: 3rem;
}

.blog-shell,
.article-shell {
  display: grid;
  gap: 1.6rem;
}

.blog-shell-centered {
  justify-items: center;
  text-align: center;
  max-width: 52rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 1.2rem;
  padding: 1.2rem;
  border-radius: 30px;
}

.article-cover {
  overflow: hidden;
  border-radius: 24px;
}

.article-cover img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.article-content {
  display: grid;
  gap: 1.2rem;
}

.article-copy {
  padding: 0.2rem 0;
}

.article-copy p + p {
  margin-top: 1rem;
}

.article-sidebar {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.article-links {
  display: grid;
  gap: 0.7rem;
}

.article-links a {
  color: #fff;
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rhythm-shell,
  .article-layout,
  .horizontal-service {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    transform: none;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-header.is-open .nav-shell {
    flex-wrap: wrap;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .site-header.is-open .nav-links,
  .site-header.is-open .nav-actions {
    display: flex;
    position: static;
    width: 100%;
    border: 1px solid var(--line);
    background:
      linear-gradient(180deg, rgba(18, 29, 25, 0.98), rgba(10, 17, 14, 0.98));
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1rem;
    margin-top: 0.7rem;
    border-radius: 24px 24px 0 0;
  }

  .site-header.is-open .nav-actions {
    padding: 0 1rem 1rem;
    gap: 0.7rem;
    margin-top: 0;
    border-top: 0;
    border-radius: 0 0 24px 24px;
  }

  .site-header.is-open .nav-actions a {
    flex: 1 1 0;
  }

  .nav-links .service-dropdown {
    width: 100%;
  }

  .nav-links .service-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.72rem 0.85rem;
    font-size: 0.88rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links .service-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.45rem;
    padding: 0.25rem 0 0 0.35rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links .service-dropdown-menu a {
    padding: 0.52rem 0.7rem;
    white-space: normal;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .section,
  .blog-hero,
  .article-hero {
    padding-bottom: 4rem;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .section-shell,
  .footer-shell,
  .blog-shell,
  .article-shell,
  .rhythm-shell {
    width: min(var(--max), calc(100% - 1.2rem));
  }

  .brand-copy {
    display: none;
  }

  .hero-panel {
    width: calc(100% - 1rem);
    min-height: 84vh;
  }

  .hero-panel > img {
    min-height: 84vh;
  }

  .hero-glass-card h1 {
    max-width: 9ch;
  }

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

  .gallery-card img {
    height: 240px;
  }

  .footer-shell {
    flex-direction: column;
  }
}
