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

:root {
  --ink: #171512;
  --muted: #6e675d;
  --paper: #f8f4eb;
  --cream: #fff7e7;
  --red: #e4483b;
  --yellow: #f8cd46;
  --green: #1e7552;
  --blue: #2f66cc;
  --line: rgba(23, 21, 18, 0.14);
  --glass: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 54px rgba(23, 21, 18, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--yellow);
  color: var(--ink);
  padding: 0.7rem 1rem;
  font-weight: 800;
  border-radius: 8px;
}

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

.site-header {
  position: fixed;
  inset: 1rem 1rem auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(23, 21, 18, 0.58);
  backdrop-filter: blur(22px) saturate(130%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.brand,
.nav-links,
.hero-actions,
.contact-actions,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0;
  box-shadow: inset 0 -10px 22px rgba(255, 255, 255, 0.22);
}

.nav-links {
  gap: 1.2rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.header-call {
  color: var(--ink);
  background: white;
  padding: 0.62rem 0.9rem;
  border-radius: 8px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-scrim {
  background:
    radial-gradient(circle at 75% 15%, rgba(248, 205, 70, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(23, 21, 18, 0.92) 0%, rgba(23, 21, 18, 0.66) 44%, rgba(23, 21, 18, 0.24) 100%),
    linear-gradient(0deg, rgba(23, 21, 18, 0.88) 0%, rgba(23, 21, 18, 0) 54%);
}

.hero-content {
  position: relative;
  width: calc(100% - 2rem);
  max-width: 1120px;
  margin: 0 auto;
  padding: 9rem 0 7.5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Sora, "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(4rem, 9vw, 8.4rem);
  font-weight: 800;
  text-wrap: balance;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 1.1rem;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.hero-tags span {
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-actions,
.contact-actions {
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.button.primary {
  color: var(--ink);
  background: var(--yellow);
}

.button.secondary {
  color: white;
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.button.outline {
  background: transparent;
}

.hero-status {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(22rem, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(18px);
}

.hero-status span,
.hero-status small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
}

.hero-status strong {
  display: block;
  margin: 0.05rem 0 0.25rem;
  font-size: 2rem;
  line-height: 1;
}

.quick-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: #fffdf8;
}

.quick-bar div {
  padding: 1.15rem 1.4rem;
  border-right: 1px solid var(--line);
}

.quick-bar div:last-child {
  border-right: 0;
}

.quick-bar span {
  display: block;
  color: rgba(21, 18, 13, 0.7);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-bar strong {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.section {
  width: calc(100% - 2rem);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(18rem, 1.25fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading.compact {
  max-width: 850px;
  display: block;
}

.section-heading h2,
.visit h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  font-weight: 800;
  text-wrap: balance;
}

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

.feature-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.feature-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.feature-panel div {
  position: absolute;
  inset: auto 1rem 1rem;
  padding: 1rem;
  color: white;
  border-radius: 8px;
  background: rgba(23, 21, 18, 0.68);
  backdrop-filter: blur(14px);
}

.feature-panel span {
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-panel h3 {
  margin: 0.35rem 0 0;
  font-family: Sora, "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.35vw, 2.15rem);
  line-height: 1.08;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.05rem;
  margin-top: 2rem;
}

.service-grid article {
  min-height: 15rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 44px rgba(23, 21, 18, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(23, 21, 18, 0.13);
}

.service-grid article:nth-child(2),
.service-grid article:nth-child(5) {
  background: #e9f2ff;
}

.service-grid article:nth-child(3),
.service-grid article:nth-child(6) {
  background: #eaf8ef;
}

.service-grid span {
  display: inline-block;
  margin-bottom: 2.1rem;
  padding: 0.38rem 0.58rem;
  color: var(--green);
  border-radius: 999px;
  background: rgba(30, 117, 82, 0.1);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-grid h3 {
  margin-bottom: 0.55rem;
  font-family: Sora, "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.24rem;
  line-height: 1.18;
}

.service-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.24);
  color: white;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.marquee div {
  display: flex;
  width: max-content;
  animation: slide 22s linear infinite;
}

.marquee span {
  padding: 1rem 2rem;
  font-family: Sora, "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 3.1rem);
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.85fr);
  gap: 2rem;
  width: calc(100% - 2rem);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.visit-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.12rem;
}

.map-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(21, 18, 13, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(21, 18, 13, 0.1) 1px, transparent 1px),
    #e9f2ff;
  background-size: 42px 42px;
  box-shadow: var(--shadow);
}

.map-lines {
  position: absolute;
  inset: 11% -8%;
  transform: rotate(-16deg);
  border-top: 18px solid var(--yellow);
  border-bottom: 18px solid var(--red);
}

.map-pin {
  position: absolute;
  left: 48%;
  top: 38%;
  width: 2.8rem;
  aspect-ratio: 1;
  transform: rotate(45deg);
  border: 2px solid var(--ink);
  border-radius: 8px 8px 8px 0;
  background: var(--red);
  box-shadow: 6px 6px 0 var(--ink);
}

.map-card strong,
.map-card span {
  position: relative;
  z-index: 1;
}

.map-card strong {
  font-size: 2rem;
  font-family: Sora, "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1;
}

.map-card span {
  color: var(--muted);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
  padding: 2rem;
  color: white;
  background: var(--ink);
}

.site-footer p {
  max-width: 34rem;
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav {
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 800;
}

.plain-page {
  min-height: 100svh;
  padding: 8rem 1rem 4rem;
  background: var(--paper);
}

.plain-card {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: white;
  box-shadow: 12px 12px 0 var(--yellow);
}

.plain-card h1 {
  color: var(--ink);
  font-size: clamp(2.5rem, 7vw, 4.7rem);
}

.plain-card p {
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 850px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    padding: 8rem 0 11rem;
  }

  .hero-status {
    left: 1rem;
    right: 1rem;
  }

  .quick-bar,
  .section-heading,
  .intro-grid,
  .service-grid,
  .visit,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-bar div {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .quick-bar div:last-child {
    border-bottom: 0;
  }

  .feature-panel {
    min-height: 390px;
  }

  .site-footer {
    align-items: start;
  }
}

@media (max-width: 520px) {
  .site-header {
    inset: 0 0 auto;
    padding: 0.65rem;
    border-inline: 0;
    border-top: 0;
  }

  .brand span:last-child {
    max-width: 11rem;
    line-height: 1.05;
  }

  .header-call {
    padding-inline: 0.75rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 13.5vw, 3.45rem);
  }

  .button {
    width: 100%;
  }

  .feature-panel div {
    inset: auto 0 0;
  }
}
