:root {
  --ink: #11140f;
  --muted: #5d665b;
  --paper: #f4f2ea;
  --white: #ffffff;
  --green: #69bd28;
  --green-dark: #316d1d;
  --amber: #d8ad35;
  --line: #ded8cc;
  --charcoal: #171a16;
  --shadow: 0 20px 60px rgba(17, 20, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

main {
  overflow: hidden;
}

#about,
#services,
#book,
#contact {
  scroll-margin-top: 88px;
}

.hero {
  position: relative;
  isolation: isolate;
  background: #050806;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 150px;
  background: linear-gradient(180deg, rgba(5, 8, 6, 0.8), rgba(5, 8, 6, 0));
  pointer-events: none;
}

.hero-cover-image {
  display: block;
  width: 100%;
  min-height: clamp(430px, 43.9vw, 720px);
  object-fit: cover;
  object-position: center;
}

.mobile-action-bar {
  display: none;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-weight: 900;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.34));
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a,
.header-cta,
.button {
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  background: var(--amber);
  color: #211a07;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(580px, 100%);
  margin: 0 auto;
  transform: translateX(calc((min(1180px, 100vw - 48px) - min(580px, 100vw - 48px)) / -2));
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 8vw, 6.25rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2.4vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  min-width: 170px;
  padding: 0 22px;
}

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

.button.primary {
  background: var(--green);
  color: #091006;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #82d637;
}

.button.secondary {
  border: 2px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
}

.hero-points span {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 800;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.services-band,
.booking-band {
  padding: 74px 0;
}

.about-grid > p,
.booking-layout > div > p,
.contact-layout > div > p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.04;
  font-weight: 900;
}

.about-section,
.contact-section {
  padding: 88px 0;
}

.section-heading {
  margin-bottom: 34px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 48px;
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.brand-panel {
  display: grid;
  gap: 18px;
}

.brand-panel img {
  width: min(270px, 100%);
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(17, 20, 15, 0.2));
}

.proof-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-left: 5px solid var(--amber);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 27, 31, 0.07);
  font-weight: 800;
}

.services-band {
  position: relative;
  isolation: isolate;
  background-color: #121812;
  background-image:
    linear-gradient(180deg, rgba(8, 10, 8, 0.22), rgba(8, 10, 8, 0.4)),
    radial-gradient(circle at 50% 42%, rgba(105, 189, 40, 0.12), rgba(8, 10, 8, 0.08) 46%, rgba(8, 10, 8, 0.34) 84%),
    linear-gradient(90deg, rgba(8, 10, 8, 0.36), rgba(8, 10, 8, 0.06) 50%, rgba(8, 10, 8, 0.36)),
    url("assets/services-background.png");
  background-position: center;
  background-size: cover;
  background-blend-mode: normal, soft-light, normal, normal;
  color: var(--white);
}

.services-band .section-shell {
  position: relative;
  z-index: 1;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(216, 173, 53, 0.3);
  border-radius: 8px;
  padding: 26px;
  background: rgba(12, 16, 12, 0.52);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(1px);
  transform-origin: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    z-index: 2;
    transform: scale(1.035);
    border-color: rgba(216, 173, 53, 0.62);
    background: rgba(12, 16, 12, 0.6);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  }
}

.service-card h3 {
  margin-bottom: 18px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.booking-band {
  background:
    linear-gradient(135deg, rgba(105, 189, 40, 0.14), rgba(216, 173, 53, 0.2)),
    var(--white);
}

.booking-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 500px);
  gap: 52px;
  align-items: center;
}

.booking-panel,
.contact-card {
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-panel {
  padding: 14px;
}

.booking-frame {
  display: grid;
  min-height: 560px;
  align-content: start;
  gap: 18px;
  border-radius: 8px;
  padding: 10px;
  text-align: left;
}

.full-width {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.contact-section {
  background: #f0ece3;
}

.contact-card {
  padding: 30px;
}

.contact-card dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-card div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.contact-card div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-card dt {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.hours-list {
  display: grid;
  gap: 6px;
}

.hours-list span {
  display: block;
}

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

  .nav-links {
    display: none;
  }

  .hero-content {
    transform: none;
    margin: 0;
  }

  .about-grid,
  .booking-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .hero {
    background: #050806;
  }

  .hero::before {
    display: none;
  }

  .hero-cover-image {
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .site-header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 10px 14px;
    background: rgba(5, 8, 6, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
  }

  .brand {
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.05;
  }

  .brand span {
    max-width: 128px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .header-cta {
    min-width: 106px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.55rem, 6.8vw, 1.95rem);
    line-height: 1.08;
  }

  #about,
  #services,
  #book,
  #contact {
    scroll-margin-top: 68px;
  }

  .button {
    width: 100%;
  }

  .section-shell {
    width: calc(100% - 32px);
  }

  .services-band,
  .booking-band,
  .about-section,
  .contact-section {
    padding: 46px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .about-grid,
  .booking-layout,
  .contact-layout {
    gap: 28px;
  }

  .about-grid > p,
  .booking-layout > div > p,
  .contact-layout > div > p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    min-height: 0;
    padding: 20px;
  }

  .service-card h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
  }

  .service-card p {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .brand-panel img {
    width: min(220px, 82vw);
  }

  .proof-list span {
    min-height: 52px;
    padding: 12px 14px;
  }

  .booking-frame {
    min-height: 500px;
    padding: 0;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(5, 8, 6, 0.94);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
  }

  .mobile-action-bar a {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 900;
  }

  .mobile-action-bar a:first-child {
    background: var(--green);
    color: #091006;
  }

  .mobile-action-bar a:last-child {
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: var(--white);
  }
}
