:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --surface-soft: #f0f6f4;
  --surface-warm: #f8f1e8;
  --ink: #102129;
  --muted: #4a636b;
  --line: #d1e0dd;
  --brand: #1a7a76;
  --brand-dark: #135754;
  --radius: 18px;
  --shadow: 0 16px 34px rgba(16, 33, 41, 0.08);
  --container: 1120px;
  --ring: rgba(26, 122, 118, 0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.99rem, 0.28vw + 0.93rem, 1.08rem);
  color: var(--ink);
  background:
    radial-gradient(1000px 500px at 90% -20%, rgba(26, 122, 118, 0.12), transparent 60%),
    radial-gradient(700px 400px at -10% 20%, rgba(228, 199, 166, 0.18), transparent 62%),
    var(--bg);
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.announcement {
  border-bottom: 1px solid var(--line);
  background: #e9f5f2;
  color: #1b5855;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.announcement .container {
  padding: 10px 0;
  text-align: center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 243, 238, 0.95);
  backdrop-filter: blur(12px);
  overflow: visible;
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #2da39c, #7ad0ca);
  box-shadow: 0 0 12px rgba(45, 163, 156, 0.45);
  transition: width 0.08s linear;
}

.light-ribbon {
  position: relative;
  z-index: 20;
  overflow: hidden;
  border-bottom: 1px solid #c8dbd7;
  background:
    linear-gradient(90deg, rgba(26, 122, 118, 0.10), rgba(255, 255, 255, 0.8), rgba(26, 122, 118, 0.10)),
    #edf7f5;
}

.light-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.45) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: shine 7s linear infinite;
}

.light-ribbon-track {
  display: flex;
  gap: 34px;
  width: max-content;
  padding: 9px 0;
  color: #1a6662;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: ribbon-scroll 28s linear infinite;
}

.light-ribbon-track span {
  white-space: nowrap;
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 700;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), #7fc7c3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="page"] {
  color: var(--brand-dark);
}

.nav-links .nav-book {
  margin-left: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #b8cfcb;
  background: #fff;
  color: #1e464e;
  font-weight: 800;
}

.nav-links .nav-book::after {
  display: none;
}

.nav-links .nav-book:hover {
  background: #eef8f6;
  border-color: #8ebdb8;
}

.nav-links .nav-book[aria-current="page"] {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 11px;
  padding: 10px;
  font-weight: 700;
  width: 54px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-lines span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #1f4f58;
  transition: transform 0.22s ease, opacity 0.2s ease;
}

body.menu-open .nav-toggle-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .nav-toggle-lines span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

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

h1, h2, h3 {
  margin: 0 0 12px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-family: "Fraunces", Georgia, serif;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }

p {
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 68ch;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #c0d8d4;
  color: #1b5f5b;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero { padding: 72px 0 54px; }
.hero p:first-of-type {
  font-size: clamp(1.03rem, 0.35vw + 0.95rem, 1.2rem);
  color: #325159;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 26px;
  align-items: center;
}

.hero-image {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section { padding: 62px 0; }

.section.alt {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section.warm {
  background: var(--surface-warm);
  border-top: 1px solid #e8dac8;
  border-bottom: 1px solid #e8dac8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 800;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(22, 56, 58, 0.12);
}

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

.btn-primary:hover { background: var(--brand-dark); }

.btn-secondary {
  background: #fff;
  color: #22424a;
  border-color: #b8cfcb;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(16, 33, 41, 0.12);
}

.card > h2,
.card > h3 {
  color: #153842;
}

.offer-card {
  display: flex;
  flex-direction: column;
}

.offer-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.gift-hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 24px;
}

.gift-hero-card {
  align-self: center;
  max-width: 520px;
  display: flex;
  flex-direction: column;
}

.gift-hero-card .actions {
  margin-top: 10px;
}

.gift-hero-card .checklist {
  margin-top: 2px;
}

.gift-hero-card .checklist li {
  margin-bottom: 6px;
}

.price {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 1.55rem;
  font-family: "Fraunces", Georgia, serif;
}

.meta {
  color: #5e787f;
  font-size: 0.94rem;
}

.checklist {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.checklist li {
  margin-bottom: 8px;
  color: #2f4f56;
  line-height: 1.5;
}

.checklist li::before {
  content: "•";
  color: var(--brand);
  margin-right: 8px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.stat {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #bfd6d1;
  background: #fff;
  color: #21454e;
  font-weight: 700;
  font-size: 0.9rem;
}

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

.cred-group {
  border: 1px solid #c6d9d5;
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}

.cred-group h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.cred-group ul {
  margin: 0;
  padding-left: 18px;
  color: #325259;
}

.process {
  counter-reset: step;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.process li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 38px;
}

.process li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #d9ece9;
  color: #1b5855;
  font-size: 0.84rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.faq-list details {
  border: 1px solid #c7ddda;
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: #1d4950;
}

.faq-list details p {
  margin-top: 10px;
}

blockquote {
  margin: 0;
  font-size: 1.01rem;
  color: #233f47;
  line-height: 1.62;
}

.testimonials-highlight {
  position: relative;
  background:
    radial-gradient(850px 280px at 20% 0%, rgba(26, 122, 118, 0.10), transparent 70%),
    radial-gradient(700px 250px at 90% 100%, rgba(219, 190, 156, 0.15), transparent 72%),
    var(--surface-soft);
}

.testimonial-card {
  border: 1px solid #bfd8d4;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 251, 249, 0.95));
  box-shadow: 0 18px 34px rgba(22, 60, 64, 0.10);
  display: flex;
  flex-direction: column;
}

.testimonial-card blockquote {
  position: relative;
  padding-top: 18px;
  font-size: 1.03rem;
  flex: 1;
}

.testimonial-card blockquote::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: -2px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  color: #2a928b;
}

.testimonial-card .meta {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #cde1dd;
  color: #28545d;
  font-weight: 700;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(20, 58, 60, 0.16);
}

.form {
  display: grid;
  gap: 12px;
}

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

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #21424a;
}

input, textarea, select {
  width: 100%;
  border: 1px solid #bdd2ce;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #2a8c86;
  box-shadow: 0 0 0 4px var(--ring);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: #4b646b;
  font-size: 0.92rem;
  background: #f4f7f6;
}

.footer-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.4fr 1fr 1fr;
}

.footer-title {
  display: block;
  margin-bottom: 8px;
  color: #1b3f47;
}

.footer-meta {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #d5e3df;
  color: #5c787e;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

main section[id] {
  scroll-margin-top: 110px;
}

@keyframes ribbon-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes shine {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  .light-ribbon-track,
  .light-ribbon::before,
  .reveal {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .credentials, .footer-grid, .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 46px;
  }

  .light-ribbon + main .hero {
    padding-top: 24px;
  }

  .nav-toggle { display: inline-flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    left: 4%;
    right: 4%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links .nav-book {
    margin-left: 0;
  }

  body.menu-open .nav-links { display: flex; }
  body.menu-open { overflow: hidden; }
}
