:root {
  --ink: #16211f;
  --muted-ink: #5c6b66;
  --soft-ink: #7b8782;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --mist: #eef4f1;
  --sage: #28443f;
  --sage-2: #3f6b61;
  --clay: #b76e4a;
  --ochre: #d99a3f;
  --line: #dfe7e2;
  --danger: #8f2f2f;
  --success: #276749;
  --shadow: 0 18px 45px rgba(22, 33, 31, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 231, 226, 0.75);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(22, 33, 31, 0.08);
  background: rgba(251, 250, 246, 0.96);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.15;
}

.brand small {
  color: var(--muted-ink);
  font-size: 12px;
  margin-top: 2px;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 11px;
  border-radius: var(--radius);
  color: var(--muted-ink);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--mist);
  color: var(--sage);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 760;
  line-height: 1.1;
  cursor: pointer;
}

.header-cta {
  background: var(--sage);
  color: #fff;
  font-size: 14px;
}

.btn.primary {
  background: var(--sage);
  color: #fff;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border-color: var(--line);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(22, 33, 31, 0.12);
}

.btn.full {
  width: 100%;
}

.btn svg,
.header-cta svg,
.text-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 52px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image, url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=82"));
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(22, 33, 31, 0.82), rgba(22, 33, 31, 0.48) 48%, rgba(22, 33, 31, 0.1));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 660px) 330px;
  gap: 48px;
  align-items: end;
  padding: 82px 0 58px;
}

.hero-copy h1,
.page-hero h1 {
  margin: 12px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  font-weight: 700;
}

.hero-copy h1 {
  font-size: clamp(48px, 7vw, 86px);
  max-width: 780px;
}

.hero-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.55;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-panel {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-panel div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.hero-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.hero-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: #f4bd76;
}

.section {
  padding: 86px 0;
}

.intro-section {
  padding-top: 62px;
}

.muted {
  background: var(--mist);
}

.two-col,
.process-grid,
.split-feature,
.contact-grid,
.about-grid,
.info-layout {
  display: grid;
  gap: 48px;
}

.two-col {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.two-col h2,
.section-head h2,
.process-grid h2,
.split-feature h2,
.cta-inner h2,
.rich-text h2,
.contact-panel h2,
.side-panel h2,
.content-block h2 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
  font-size: clamp(30px, 4vw, 48px);
}

.lead-stack p,
.process-grid p,
.split-feature p,
.page-hero p,
.card p,
.rich-text p,
.content-block p,
.legal-text p,
details p {
  color: var(--muted-ink);
}

.lead-stack p {
  font-size: 18px;
  margin: 0 0 18px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--sage);
  font-weight: 800;
}

.text-link.disabled {
  color: var(--soft-ink);
  pointer-events: none;
}

.cards {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 236px;
  box-shadow: 0 1px 0 rgba(22, 33, 31, 0.03);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card > svg {
  width: 32px;
  height: 32px;
  color: var(--sage-2);
}

.card h2,
.card h3 {
  margin: 22px 0 10px;
  font-size: 23px;
  line-height: 1.18;
}

.card p {
  margin: 0;
}

.process-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
}

.process-grid .btn {
  margin-top: 18px;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  display: grid;
  grid-template-columns: 58px 150px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  color: var(--clay);
  font-weight: 900;
}

.steps strong {
  font-size: 18px;
}

.steps p {
  margin: 0;
}

.split-feature {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.feature-photo,
.portrait-photo {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  min-height: 500px;
  box-shadow: var(--shadow);
}

.feature-photo {
  background-image: var(--feature-image, url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1200&q=82"));
}

.portrait-photo {
  background-image: var(--portrait-image, url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1000&q=82"));
  min-height: 420px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted-ink);
}

.check-list svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--sage-2);
}

.cta-band {
  background: var(--sage);
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  margin-top: 8px;
  max-width: 760px;
}

.page-hero {
  padding: 92px 0 74px;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.page-hero.compact {
  padding: 70px 0 58px;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  max-width: 920px;
}

.page-hero p {
  max-width: 760px;
  font-size: 18px;
  margin: 0;
}

.about-grid {
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: start;
}

.portrait-card {
  position: sticky;
  top: 102px;
}

.portrait-card h2 {
  margin: 20px 0 0;
  font-size: 25px;
}

.portrait-card p {
  margin: 4px 0 0;
  color: var(--muted-ink);
}

.rich-text,
.legal-text {
  max-width: 820px;
}

.rich-text > p:first-child,
.legal-text > p:first-child {
  font-size: 19px;
  color: var(--ink);
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 20px 0 34px;
}

.timeline div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 6px 18px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline span {
  grid-row: span 2;
  color: var(--clay);
  font-weight: 900;
}

.timeline p {
  margin: 0;
}

.info-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.info-main {
  display: grid;
  gap: 18px;
}

.content-block,
.side-panel,
.contact-panel,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.content-block h2,
.side-panel h2,
.contact-panel h2 {
  font-size: 30px;
}

.alert-block {
  border-color: rgba(143, 47, 47, 0.28);
  background: #fff8f6;
}

.side-panel {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 18px;
}

.side-panel div,
.contact-panel a,
.contact-panel .hours {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted-ink);
}

.side-panel svg,
.contact-panel svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--sage-2);
  margin-top: 2px;
}

.blog-card {
  min-height: 250px;
}

.faq-list {
  max-width: 880px;
  display: grid;
  gap: 12px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 22px;
}

summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 820;
  font-size: 18px;
}

details p {
  margin: 0 0 20px;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sage-2);
  box-shadow: 0 0 0 4px rgba(63, 107, 97, 0.14);
}

.full-field,
.form-message {
  grid-column: 1 / -1;
}

.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  color: var(--muted-ink) !important;
  font-weight: 520 !important;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.form-message {
  padding: 13px 15px;
  border-radius: var(--radius);
  font-weight: 760;
}

.form-message.success {
  background: rgba(39, 103, 73, 0.1);
  color: var(--success);
}

.form-message.error {
  background: rgba(143, 47, 47, 0.1);
  color: var(--danger);
}

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

.map-box {
  display: grid;
  gap: 4px;
  min-height: 170px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(40, 68, 63, 0.18), rgba(217, 154, 63, 0.16)),
    var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-content: end;
}

.map-box span {
  color: var(--muted-ink);
}

.legal-text h2 {
  margin: 30px 0 6px;
  font-size: 26px;
}

.site-footer {
  background: #121a18;
  color: rgba(255, 255, 255, 0.84);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 1.1fr;
  gap: 34px;
}

.footer-brand .brand-mark {
  background: #fff;
  color: var(--sage);
}

.footer-brand small,
.site-footer p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.64);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
}

.site-footer a {
  display: block;
  margin: 9px 0;
}

.footer-note {
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 40px;
  padding-top: 22px;
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1f8f5f;
  color: #fff;
  box-shadow: 0 16px 34px rgba(31, 143, 95, 0.3);
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
}

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

  .nav-toggle {
    display: grid;
    justify-self: end;
    order: 3;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-inner,
  .process-grid,
  .split-feature,
  .about-grid,
  .info-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .portrait-card,
  .side-panel {
    position: static;
  }

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

  .footer-bottom,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 68px;
    gap: 10px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    top: 68px;
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(22, 33, 31, 0.62), rgba(22, 33, 31, 0.9));
  }

  .hero-inner {
    gap: 24px;
    padding: 54px 0 32px;
  }

  .hero-copy h1 {
    font-size: 45px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .page-hero,
  .page-hero.compact {
    padding: 54px 0 44px;
  }

  .two-col,
  .steps div,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .cards.two {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-photo,
  .portrait-photo {
    min-height: 330px;
  }

  .card {
    min-height: 0;
  }

  .timeline div {
    grid-template-columns: 1fr;
  }

  .timeline span {
    grid-row: auto;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}
