:root {
  --bg: #f4efe6;
  --surface: rgba(255, 250, 242, 0.76);
  --surface-strong: #fffaf2;
  --ink: #18261f;
  --muted: #536257;
  --line: rgba(24, 38, 31, 0.12);
  --accent: #0f766e;
  --accent-strong: #0a4f4d;
  --accent-soft: #cbe7df;
  --shadow: 0 24px 60px rgba(23, 39, 32, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.16), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(143, 184, 124, 0.18), transparent 24%),
    linear-gradient(180deg, #f5f0e8 0%, #f2eee8 46%, #ebe4d8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 92%);
  pointer-events: none;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0 56px;
}

.contact-list a {
  color: var(--ink);
  text-decoration: none;
}

section {
  margin-bottom: 28px;
}

main {
  display: grid;
  gap: 28px;
}

.hero,
.services,
.reasons,
.process,
.contact {
  display: grid;
  gap: 22px;
}

.hero {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.hero-copy,
.hero-card,
.services,
.reasons,
.process,
.contact,
.cta-banner {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-copy {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

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

h1,
h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.hero-text,
.service-card p,
.reason-grid p,
.process-list p,
.contact-copy p,
.hero-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 55ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

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

.button-hero-call {
  min-height: 68px;
  padding: 0 32px;
  font-size: 1.22rem;
  border-radius: 24px;
  box-shadow: 0 22px 40px rgba(15, 118, 110, 0.24);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 32px rgba(15, 118, 110, 0.28);
}

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

.hero-points,
.trust-strip {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-panel {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.hero-panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.hero-panel-grid div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.7);
  border: 1px solid rgba(24, 38, 31, 0.08);
}

.hero-panel-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-panel-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  position: relative;
}

.hero-art {
  width: calc(100% + 20px);
  margin: -12px -10px 20px;
  display: block;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62));
}

.hero-card-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.2), transparent 70%);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card-content h2,
.section-heading h2,
.contact-copy h2 {
  max-width: 14ch;
}

.hero-card-content p,
.contact-copy p {
  margin: 0;
}

.hero-highlights {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.hero-highlight {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.hero-highlight strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.hero-highlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.trust-strip p {
  margin: 0;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 250, 242, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.services,
.reasons,
.process,
.contact {
  padding: 30px;
}

.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  align-content: start;
}

.service-grid,
.reason-grid,
.process-list,
.visual-row {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.visual-row {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  margin-bottom: 8px;
}

.visual-card {
  margin: 0;
  padding: 14px;
  min-height: 260px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.46);
  overflow: hidden;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.visual-card-offset {
  transform: translateY(24px);
}

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

.service-card,
.reason-grid article,
.process-list article,
.contact-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.service-card,
.reason-grid article,
.process-list article {
  height: 100%;
}

.accent-card {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.94), rgba(10, 79, 77, 0.94));
  color: white;
}

.accent-card p {
  color: rgba(255, 255, 255, 0.84);
}

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

.reason-grid article span,
.process-list article strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 800;
}

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

.contact {
  grid-template-columns: 1fr 0.95fr;
  align-items: start;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-list a {
  font-weight: 700;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.contact-phone {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1;
}

.contact-area {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.98;
  font-weight: 800;
  color: var(--ink);
  max-width: 10ch;
}

.contact-callout {
  min-height: 100%;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.94), rgba(10, 79, 77, 0.94));
  color: white;
}

.contact-callout-label {
  margin: 0;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.contact-callout-number {
  margin: 0;
  color: white;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 0.95;
  font-weight: 800;
  text-decoration: none;
}

.contact-callout-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: min(520px, calc(100% - 20px));
  display: grid;
  gap: 18px;
  padding: 20px 22px;
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(23, 39, 32, 0.2);
  backdrop-filter: blur(14px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-copy {
  display: grid;
  gap: 8px;
}

.cookie-banner-title,
.cookie-banner-text {
  margin: 0;
}

.cookie-banner-title {
  font-weight: 800;
  color: var(--ink);
}

.cookie-banner-text {
  color: var(--muted);
  line-height: 1.55;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .contact,
  .reason-grid,
  .process-list,
  .visual-row {
    grid-template-columns: 1fr;
  }

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

  .visual-card-offset {
    transform: none;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 12px;
  }

  .hero,
  .hero-copy,
  .hero-card,
  .services,
  .reasons,
  .process,
  .contact,
  .cta-banner {
    padding: 22px;
  }

  .service-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-panel-grid,
  .hero-highlight {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .visual-card {
    min-height: 220px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    padding: 18px;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-card-content h2,
  .section-heading h2,
  .contact-copy h2 {
    max-width: none;
  }

  h1 {
    max-width: none;
  }
}
