:root {
  --bg: #f7f3eb;
  --surface: rgba(255, 252, 246, 0.88);
  --surface-strong: #fffdf9;
  --surface-accent: #eef6f2;
  --ink: #1f2933;
  --muted: #5f6c76;
  --line: rgba(31, 41, 51, 0.12);
  --accent: #1d4f49;
  --accent-soft: #2f746a;
  --warm: #d4af6a;
  --shadow: 0 24px 60px rgba(31, 41, 51, 0.09);
  --shadow-soft: 0 18px 35px rgba(31, 41, 51, 0.07);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 106, 0.22), transparent 32%),
    radial-gradient(circle at right 10%, rgba(29, 79, 73, 0.14), transparent 28%),
    linear-gradient(180deg, #fcfaf5 0%, var(--bg) 100%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

:target {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.34);
}

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

.section-heading h2,
.hero-copy h1,
.about-card h2,
.coverage-panel h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-heading h2,
.about-card h2,
.coverage-panel h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 0.98;
}

.services-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.06;
  max-width: 40ch;
}

.section-lead,
.hero-lead,
.about-text,
.about-item p,
.service-card p,
.process-card p,
.faq-list p,
.contact-row span,
.coverage-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  backdrop-filter: none;
  background: transparent;
  border-bottom: 0;
  transition: background-color 0.22s ease, backdrop-filter 0.22s ease, border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.site-header.scrolled {
  backdrop-filter: blur(14px);
  background: rgba(29, 79, 73, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(13, 39, 36, 0.18);
}

.header-shell {
  width: 100%;
  margin: 0;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(24px, 6vw, 88px);
}

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

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 0.96;
  color: #f0d69a;
}

.brand-meta {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-1px);
}

.site-nav .nav-contact {
  color: #17312e;
  background: linear-gradient(135deg, #d4af6a, #f0d69a);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact:focus-visible {
  color: #17312e;
  background: linear-gradient(135deg, #f0d69a, #d4af6a);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 8px) 0 32px;
  overflow: hidden;
  background: #102321;
}

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

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 19, 18, 0.84) 0%, rgba(9, 19, 18, 0.56) 46%, rgba(9, 19, 18, 0.4) 100%),
    radial-gradient(circle at left 20%, rgba(47, 116, 106, 0.34), transparent 32%),
    radial-gradient(circle at right 12%, rgba(212, 175, 106, 0.18), transparent 24%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-inline: clamp(24px, 6vw, 88px);
}

.hero-copy,
.service-card,
.document-panel,
.coverage-panel,
.about-photo-frame,
.about-card,
.process-card,
.faq-list details,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  width: 100%;
  padding: 0;
  background: none;
  backdrop-filter: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #fffdf8;
}

.hero-eyebrow {
  color: #d8e4dc;
}

.hero-copy h1 {
  font-size: clamp(1.55rem, 2.8vw, 2.7rem);
  line-height: 0.88;
  max-width: 17ch;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.hero-lead {
  margin: 20px 0 0;
  max-width: 72ch;
  font-size: 1.03rem;
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(29, 79, 73, 0.24);
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  box-shadow: 0 18px 34px rgba(29, 79, 73, 0.24);
}

.hero .btn {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero .btn:hover,
.hero .btn:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary {
  background: linear-gradient(135deg, #d4af6a, #f0d69a);
  color: #18312d;
}

.hero-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 600;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.card-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.service-card,
.process-card {
  padding: 26px;
  background: var(--surface);
}

.service-card svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.service-card h3,
.process-card h3 {
  margin: 18px 0 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.section-heading.narrow {
  margin-bottom: 0;
}

.document-panel {
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(29, 79, 73, 0.06);
}

.check-list svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex: 0 0 auto;
}

.coverage {
  padding-top: 0;
}

.coverage-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  padding: 30px 34px;
  background:
    linear-gradient(140deg, rgba(29, 79, 73, 0.94), rgba(47, 116, 106, 0.9)),
    radial-gradient(circle at right top, rgba(212, 175, 106, 0.18), transparent 28%);
  color: #fffdf8;
}

.coverage-copy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #fff;
}

.text-link::after {
  content: ">";
  font-size: 0.9rem;
}

.about-section {
  padding-top: 72px;
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}

.about-photo-frame {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
}

.about-photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}

.about-photo-frame figcaption {
  padding: 22px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 242, 0.94)),
    radial-gradient(circle at top right, rgba(212, 175, 106, 0.14), transparent 30%);
}

.about-photo-frame strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.95;
}

.about-photo-frame span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.about-card {
  padding: 34px 36px;
  background: rgba(255, 255, 255, 0.8);
}

.about-lead {
  margin: 22px 0 14px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.65;
}

.about-text {
  margin: 0;
}

.about-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 41, 51, 0.08);
}

.about-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
}

.about-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-item strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.about-item p {
  margin: 0;
}

.about-close {
  margin: 28px 0 0;
  color: var(--accent);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.7;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(29, 79, 73, 0.08);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
}

.contact-section {
  padding-top: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.84);
}

.contact-row {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
}

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

.contact-row .label {
  color: var(--accent-soft);
}

.contact-row a {
  font-size: 1.05rem;
  font-weight: 700;
}

.site-footer {
  padding: 32px 0 44px;
  border-top: 1px solid rgba(31, 41, 51, 0.08);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-shell strong {
  display: block;
  margin-bottom: 6px;
}

.footer-shell p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.footer-note {
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .hero-shell,
  .split-layout,
  .coverage-panel,
  .about-shell,
  .contact-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .about-photo-frame {
    position: static;
  }
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(29, 79, 73, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 50px rgba(13, 39, 36, 0.24);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav .nav-contact {
    text-align: center;
  }

  .header-shell {
    padding-inline: 20px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 78svh;
    align-items: flex-start;
    padding: calc(var(--header-height) + 22px) 0 28px;
  }

  .split-layout,
  .coverage-panel,
  .about-shell,
  .contact-grid,
  .service-grid,
  .process-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-shell {
    padding-inline: 20px;
  }

  .coverage-panel,
  .contact-card {
    padding: 24px;
  }

  .about-card {
    padding: 28px 24px;
  }

  .about-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-shell {
    gap: 12px;
    padding-inline: 12px;
  }

  .brand-name {
    font-size: 1.28rem;
  }

  .brand-meta {
    font-size: 0.5rem;
  }

  .hero-copy,
  .service-card,
  .document-panel,
  .about-card,
  .process-card,
  .contact-card {
    padding: 22px;
  }

  .hero-shell {
    padding-inline: 12px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-heading,
  .section-heading.narrow {
    margin-bottom: 28px;
  }

  .faq-list summary {
    padding: 18px 18px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }
}
