:root {
  --white: #fafbfc;
  --paper: #ffffff;
  --ink: #1a1f1c;
  --muted: #5c6560;
  --emerald: #0f6b4e;
  --emerald-light: #1b8f6a;
  --sage: #e8f0eb;
  --line: #e2e8e4;
  --shadow: 0 22px 60px rgba(15, 107, 78, 0.12);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: var(--emerald);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--emerald-light);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--paper);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 251, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo:hover {
  color: var(--emerald);
}

.nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--emerald);
  color: var(--paper) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  text-decoration: none !important;
}

.nav-cta:hover {
  background: var(--emerald-light);
  color: var(--paper) !important;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  cursor: pointer;
}

.menu-icon {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 4vw 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.mobile-nav a {
  padding: 0.6rem 0;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

@media (min-width: 860px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  color: var(--paper);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26, 31, 28, 0.78) 0%, rgba(26, 31, 28, 0.35) 48%, rgba(15, 107, 78, 0.25) 100%);
}

.hero-content {
  position: relative;
  padding: 4rem 0 3.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  max-width: 14ch;
}

.hero-lead {
  font-size: 1.08rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--paper);
  color: var(--emerald);
}

.btn-primary:hover {
  background: var(--sage);
  color: var(--emerald);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  border-color: var(--paper);
  color: var(--paper);
}

.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.trust-row strong {
  color: var(--paper);
  font-weight: 600;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.section-header h2,
.split-text h2,
.band-copy h2,
.section-contact h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.section-intro {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.split-text p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.split-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-services {
  background: var(--paper);
}

.cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  margin: 1rem 1.25rem 0.5rem;
}

.card p {
  margin: 0 1.25rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-band {
  background: linear-gradient(180deg, var(--sage) 0%, var(--white) 100%);
}

.band-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .band-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
}

.band-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line);
}

.section-testimonials {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.quote {
  margin: 0 auto;
  max-width: 44rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-style: italic;
  color: var(--ink);
}

.quote p {
  margin: 0 0 1rem;
}

.quote footer {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
  color: var(--muted);
}

.section-contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-grid > div > p {
  color: var(--muted);
}

.contact-details {
  font-style: normal;
  margin-top: 1.5rem;
  color: var(--ink);
}

.contact-details a {
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: var(--paper);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-full {
  width: 100%;
  margin-top: 0.5rem;
  background: var(--emerald);
  color: var(--paper);
  border: none;
}

.btn-full:hover {
  background: var(--emerald-light);
  color: var(--paper);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 1.75rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-right: 1rem;
}

.site-footer a:hover {
  color: var(--paper);
}

.site-footer nav a:last-child {
  margin-right: 0;
}
