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

:root {
  --bg: #081214;
  --bg-strong: #0d1b1d;
  --bg-soft: #112426;
  --surface: rgba(15, 28, 30, 0.72);
  --surface-strong: rgba(13, 25, 27, 0.88);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --glass: rgba(255, 255, 255, 0.08);
  --line: rgba(224, 237, 228, 0.12);
  --line-strong: rgba(224, 237, 228, 0.2);
  --ink: #f3f7f2;
  --muted: #c0cdc6;
  --brand: #5ea06d;
  --brand-strong: #3d6d4a;
  --accent: #79b0b5;
  --warm: #c9935c;
  --sand: #ead8bb;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --button-radius: 999px;
  --max: 1180px;
  --header-height: 88px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 147, 92, 0.15), transparent 20%),
    radial-gradient(circle at top right, rgba(121, 176, 181, 0.18), transparent 18%),
    radial-gradient(circle at 18% 30%, rgba(94, 160, 109, 0.14), transparent 26%),
    linear-gradient(180deg, #081214 0%, #0b181a 36%, #112426 72%, #152c2e 100%);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.015)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 63px,
      rgba(255, 255, 255, 0.02) 64px
    );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 85%);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(121, 176, 181, 0.55);
  outline-offset: 3px;
}

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

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

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

ul {
  margin: 0;
  padding: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(28px) saturate(140%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 18, 20, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}

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

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

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

.brand-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #f7fffb;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  background:
    linear-gradient(135deg, rgba(201, 147, 92, 0.96), rgba(94, 160, 109, 0.98)),
    var(--brand);
  box-shadow: 0 18px 40px rgba(12, 29, 24, 0.3);
}

.brand-copy {
  min-width: 0;
}

.brand-copy span {
  display: block;
}

.brand-copy span:first-child {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(243, 249, 246, 0.7);
}

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

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-links {
  color: rgba(243, 249, 246, 0.88);
  font-size: 0.95rem;
}

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

.nav-actions {
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  cursor: pointer;
}

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

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

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

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

.button {
  color: #f9fffc;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 18px 36px rgba(61, 109, 74, 0.24);
}

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

.button-ghost,
.tag-link {
  color: #eff7f3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.hero,
.page-hero,
.blog-hero {
  padding: 2.2rem 0 1.5rem;
}

.hero-panel,
.page-intro-card,
.blog-hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(201, 147, 92, 0.18), transparent 24%),
    radial-gradient(circle at 80% 15%, rgba(121, 176, 181, 0.16), transparent 20%),
    linear-gradient(135deg, rgba(12, 26, 28, 0.94), rgba(9, 18, 20, 0.92));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-panel::before,
.page-intro-card::before,
.blog-hero-card::before {
  content: "";
  position: absolute;
  inset: -14% 52% 36% -14%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(94, 160, 109, 0.22), transparent 70%);
  filter: blur(14px);
}

.hero-panel::after,
.page-intro-card::after,
.blog-hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% 56%;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 147, 92, 0.14), transparent 72%);
  filter: blur(20px);
}

.hero-grid,
.page-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  padding: 2rem;
}

.hero-copy,
.page-copy,
.blog-copy {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.hero-copy h1,
.page-copy h1,
.blog-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.95;
}

.hero-copy .lede,
.page-copy .lede,
.blog-copy .lede {
  max-width: 44rem;
  font-size: 1.04rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm);
}

.eyebrow::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--warm), var(--brand));
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04);
}

.hero-actions,
.tag-row,
.article-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-proof,
.service-list,
.check-list,
.detail-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.hero-proof {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 42rem;
}

.hero-proof li,
.service-list li,
.check-list li,
.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(243, 249, 246, 0.84);
}

.hero-proof li::before,
.service-list li::before,
.check-list li::before,
.detail-list li::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.hero-visual {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.photo-card,
.spotlight-card,
.service-card,
.area-card,
.faq-card,
.metric-card,
.cta-panel,
.band-panel,
.blog-card,
.article-card,
.content-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(10, 21, 24, 0.58);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.photo-card {
  overflow: hidden;
  min-height: 100%;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.photo-stack {
  display: grid;
  gap: 1rem;
}

.metric-chip {
  display: grid;
  gap: 0.45rem;
  padding: 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.metric-chip strong,
.metric-card strong,
.service-card h3,
.spotlight-card h3,
.area-card h3,
.faq-card h3,
.content-card h3,
.contact-card h3,
.article-card h2 {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
}

.metric-chip strong {
  font-size: 1.24rem;
}

.metric-chip span {
  color: rgba(243, 249, 246, 0.74);
  line-height: 1.6;
}

.section {
  padding: 4.75rem 0;
}

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

.section-heading h2,
.cta-panel h2,
.article-card h1 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.97;
}

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

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

.spotlight-grid,
.service-grid,
.area-grid,
.faq-grid,
.metric-grid,
.gallery-grid,
.blog-grid,
.contact-grid,
.content-grid {
  display: grid;
  gap: 1.15rem;
}

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

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.area-grid,
.faq-grid,
.gallery-grid,
.blog-grid,
.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.content-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.spotlight-card,
.service-card,
.area-card,
.faq-card,
.metric-card,
.blog-card,
.contact-card,
.content-card {
  padding: 1.35rem;
}

.spotlight-card-accent,
.service-card.featured,
.blog-card.featured {
  background:
    linear-gradient(180deg, rgba(94, 160, 109, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(10, 21, 24, 0.6);
}

.card-kicker,
.service-kicker,
.meta {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 249, 246, 0.84);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3,
.spotlight-card h3,
.area-card h3,
.faq-card h3,
.content-card h3,
.contact-card h3,
.blog-card h3,
.article-card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.42rem;
}

.service-card p,
.spotlight-card p,
.area-card p,
.faq-card p,
.metric-card p,
.content-card p,
.contact-card p,
.blog-card p {
  margin-bottom: 1rem;
}

.service-card a,
.blog-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #effbf4;
  font-weight: 700;
}

.service-card a::after,
.blog-card a::after,
.text-link::after {
  content: "→";
}

.band-panel,
.cta-panel,
.article-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.8rem;
}

.band-panel,
.cta-panel {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.metric-grid {
  min-width: min(100%, 27rem);
  grid-template-columns: 1fr;
}

.metric-card strong {
  margin-bottom: 0.55rem;
  font-size: 1.24rem;
}

.blog-card {
  display: grid;
  gap: 0.6rem;
}

.blog-card h3 a {
  color: inherit;
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

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

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
  color: rgba(243, 249, 246, 0.86);
  line-height: 1.6;
}

.article-card {
  gap: 1rem;
}

.article-card h1 {
  max-width: 18ch;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 0.96;
}

.article-card .lede {
  font-size: 1.04rem;
  max-width: 48rem;
}

.article-section {
  display: grid;
  gap: 0.8rem;
}

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

.article-note {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 249, 246, 0.82);
}

.site-footer {
  padding: 1rem 0 3rem;
}

.footer-shell {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(7, 17, 18, 0.66);
  box-shadow: var(--shadow);
}

.footer-top,
.footer-bottom {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.85rem 1rem;
  flex-wrap: wrap;
  color: rgba(243, 249, 246, 0.84);
}

.footer-note {
  color: rgba(243, 249, 246, 0.62);
  font-size: 0.94rem;
}

.tag-link {
  min-height: 40px;
  padding: 0 1rem;
  font-size: 0.92rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-panel,
.page-intro-card,
.blog-hero-card,
.spotlight-card,
.service-card,
.gallery-card,
.area-card,
.faq-card,
.metric-card,
.blog-card,
.content-card,
.contact-card,
.article-card,
.cta-panel,
.band-panel {
  animation: rise 700ms ease both;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-grid,
  .content-grid,
  .band-panel,
  .cta-panel,
  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-copy h1,
  .blog-copy h1,
  .article-card h1 {
    max-width: none;
  }
}

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

  .nav-links,
  .nav-actions {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.is-open .nav-shell {
    align-items: flex-start;
  }

  .site-header.is-open .nav-links,
  .site-header.is-open .nav-actions {
    display: flex;
  }

  .nav-shell {
    flex-wrap: wrap;
  }

  .nav-links {
    gap: 0.25rem;
    padding-top: 0.4rem;
  }

  .nav-links > a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0;
  }

  .nav-actions {
    gap: 0.7rem;
    padding: 0.2rem 0 0.5rem;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .hero,
  .page-hero,
  .blog-hero {
    padding-top: 1.4rem;
  }

  .hero-grid,
  .page-grid,
  .article-card {
    padding: 1.4rem;
  }

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

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

  .nav-shell,
  .section-shell,
  .footer-shell,
  .hero-shell,
  .cta-shell,
  .blog-shell {
    width: min(var(--max), calc(100% - 1.2rem));
  }
}
