﻿@font-face {
  font-family: "Dancing Script";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/dancing-script-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Dancing Script";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/dancing-script-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --canvas: #f4efe6;
  --surface: #f8f4ec;
  --surface-strong: #efe6da;
  --ink: #332015;
  --ink-soft: #5a3a2c;
  --sun: #d2875f;
  --sun-deep: #bb6940;
  --moss: #899970;
  --moss-deep: #6e7f58;
  --glass: rgba(255, 252, 246, 0.62);
  --line: rgba(130, 113, 95, 0.24);
  --shadow: 0 18px 45px rgba(88, 63, 38, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.backdrop {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  background-color: var(--canvas);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image:
    linear-gradient(145deg, rgba(244, 239, 230, 0.74), rgba(232, 223, 210, 0.72)),
    url("../images/bg-1600.jpg");
  background-image:
    linear-gradient(145deg, rgba(244, 239, 230, 0.74), rgba(232, 223, 210, 0.72)),
    image-set(
      url("../images/bg-1280.webp") type("image/webp") 1x,
      url("../images/bg-1600.webp") type("image/webp") 1.5x,
      url("../images/bg-2364.webp") type("image/webp") 2x,
      url("../images/bg-1280.jpg") type("image/jpeg") 1x,
      url("../images/bg-1600.jpg") type("image/jpeg") 1.5x,
      url("../images/bg-2364.jpg") type("image/jpeg") 2x
    );
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  animation: float 14s ease-in-out infinite;
}

.glow-one {
  width: 44vw;
  height: 44vw;
  min-width: 360px;
  min-height: 360px;
  left: -10vw;
  top: -7vw;
  background: radial-gradient(circle, rgba(210, 135, 95, 0.34) 0%, rgba(210, 135, 95, 0) 68%);
}

.glow-two {
  width: 40vw;
  height: 40vw;
  min-width: 320px;
  min-height: 320px;
  right: -12vw;
  top: 38vh;
  background: radial-gradient(circle, rgba(137, 153, 112, 0.28) 0%, rgba(137, 153, 112, 0) 70%);
  animation-delay: -6s;
}

.mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0) 42%),
    repeating-linear-gradient(120deg, rgba(129, 111, 96, 0.045) 0 1px, transparent 1px 18px);
  mix-blend-mode: multiply;
  opacity: 0.45;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -22px, 0) scale(1.04);
  }
}

.container {
  width: min(1260px, calc(100% - 1.4rem));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  font-family: "Dancing Script", cursive;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  letter-spacing: 0.04em;
  font-weight: 700;
}

.top-links {
  display: flex;
  gap: 1.1rem;
}

.top-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  position: relative;
}

.top-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: linear-gradient(90deg, var(--sun), var(--moss));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.top-links a:hover::after,
.top-links a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  padding-bottom: 2.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 44%);
  gap: 1.5rem;
  align-items: center;
  padding-top: 1.8rem;
}

.hero-copy {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(1.5rem, 2.6vw, 2.3rem);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--moss-deep);
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Dancing Script", cursive;
  font-weight: 400;
  font-style: normal;
  line-height: 1.15;
}

.pacifico-regular,
.dancing-script-regular {
  font-family: "Dancing Script", cursive;
  font-weight: 400;
  font-style: normal;
}


h1 {
  font-size: clamp(2.45rem, 7vw, 5.35rem);
  margin-top: 0.6rem;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 1rem 0 0;
  max-width: 57ch;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.05vw, 1.3rem);
}

.hero-actions {
  display: grid;
  gap: 0.72rem;
  margin-top: 1.4rem;
}

.hero-actions-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-actions-sub {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.76rem 1.25rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 200ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

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

.btn:disabled {
  opacity: 1;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary:disabled,
.btn-forest:disabled {
  background: #b7aea6;
  color: #f3ebe1;
  border-color: #b7aea6;
}

.btn-primary {
  color: #efe1cf;
  background: linear-gradient(120deg, var(--sun), var(--sun-deep));
  box-shadow: 0 10px 20px rgba(130, 71, 39, 0.25);
}

.btn-forest {
  color: #efe1cf;
  background: linear-gradient(120deg, #3f6f4f, #2f5a3f);
  box-shadow: 0 10px 20px rgba(34, 70, 47, 0.28);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(102, 94, 87, 0.26);
}

.btn-large {
  min-height: 3rem;
  padding-inline: 1.35rem;
}

.hero-visual {
  margin: 0;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 36px rgba(83, 55, 31, 0.25);
  transform: perspective(900px) rotateY(-4deg);
}

.hero-image {
  width: 100%;
  height: min(72vh, 660px);
  min-height: 420px;
  object-fit: cover;
  object-position: 52% 62%;
  display: block;
}

.hero-visual figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.35rem;
}

.hero-visual figcaption span {
  width: fit-content;
  color: #fff;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, var(--sun), var(--sun-deep));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 16px rgba(130, 71, 39, 0.28);
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-bottom: 1.35rem;
}

.questions {
  padding-top: 2rem;
}

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

.question-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(245, 236, 226, 0.8));
  box-shadow: 0 14px 24px rgba(86, 64, 46, 0.1);
}

.question-card h3 {
  font-size: 1.65rem;
  margin-bottom: 0.45rem;
}

.question-card p {
  margin: 0;
  color: var(--ink-soft);
}

.about {
  padding-top: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.about-copy {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(241, 233, 223, 0.9));
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.about-text {
  display: grid;
  gap: 0.48rem;
}

.about-text p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.52;
}

.about-focus {
  margin-top: 0.72rem;
  padding-top: 0.62rem;
  border-top: 1px solid var(--line);
}

.about-focus h3 {
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}

.about-focus ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.22rem;
}

.about-focus li {
  color: var(--ink-soft);
}

.about-image-wrap {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: none;
  justify-self: stretch;
  align-self: stretch;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 40%;
}

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

.offer-card {
  border-radius: 30px;
  padding: 1.5rem 1.3rem;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.offer-card h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.offer-card--sun {
  background: linear-gradient(155deg, rgba(239, 216, 196, 0.72), rgba(255, 242, 228, 0.92));
}

.offer-card--moss {
  background: linear-gradient(155deg, rgba(223, 232, 210, 0.7), rgba(242, 248, 235, 0.92));
}

.offer-lead {
  margin: 0.4rem 0 0.8rem;
  color: var(--ink-soft);
}

.offer-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.offer-card li {
  position: relative;
  padding-left: 1.55rem;
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--sun), var(--moss));
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
}

.offer-closing {
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.offer-cta {
  margin-top: 1rem;
  width: fit-content;
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.journey-copy {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(240, 233, 224, 0.9));
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.journey-copy ol {
  margin: 0;
  padding-left: 1.4rem;
  display: grid;
  gap: 0.8rem;
}

.journey-copy li::marker {
  font-weight: 700;
  color: var(--sun-deep);
}


.contact-shell {
  background: linear-gradient(125deg, rgba(247, 240, 229, 0.93), rgba(228, 218, 202, 0.86));
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 1.45rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 1rem;
  align-items: stretch;
  box-shadow: var(--shadow);
}

.contact-shell h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.contact-shell p {
  margin: 0.5rem 0 0.8rem;
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  gap: 0.42rem;
  max-width: 100%;
}

.contact-form label {
  font-weight: 700;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(102, 94, 87, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  padding: 0.58rem 0.74rem;
}

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

.contact-form .btn {
  margin-top: 0.35rem;
}

.contact-side-image-wrap {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: auto;
  align-self: stretch;
}

.contact-side-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  display: block;
}

.flash-stack {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.flash {
  margin: 0;
  padding: 0.55rem 0.72rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
}

.flash-success {
  background: rgba(111, 154, 116, 0.2);
  border: 1px solid rgba(111, 154, 116, 0.36);
  color: #35563b;
}

.flash-error {
  background: rgba(208, 109, 86, 0.15);
  border: 1px solid rgba(208, 109, 86, 0.3);
  color: #894537;
}

.footer {
  padding: 1.2rem 1rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(244, 239, 230, 0.6), rgba(232, 223, 210, 0.9));
}

.footer-inner {
  display: grid;
  gap: 0.9rem;
}

.footer-contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 0.95rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.footer-icon {
  width: 1.05rem;
  height: 1.05rem;
  display: inline-flex;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--sun-deep);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1rem;
}

.footer-legal a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--sun-deep);
}

.footer-credit {
  margin: 0;
  color: var(--ink-soft);
}

.footer-credit a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--sun-deep);
}

.footer-copy {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.legal-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.legal-card {
  width: min(860px, calc(100% - 2rem));
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.legal-card h1 {
  margin: 0 0 0.8rem;
}

.legal-card h2 {
  margin: 1.2rem 0 0.5rem;
  font-size: 1.7rem;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

.legal-card ul {
  margin: 0.4rem 0 0;
}

.legal-back {
  margin-top: 1.2rem;
}

.legal-back a {
  color: var(--sun-deep);
  text-decoration: none;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-enhanced .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .glow,
  .reveal-enhanced .reveal,
  .hero-visual {
    animation: none;
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .reveal-enhanced .reveal,
  .reveal-enhanced .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .backdrop {
    background-attachment: scroll;
  }

  .hero-layout,
  .about-layout,
  .offer-grid,
  .journey-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    transform: none;
  }

  .about-image-wrap {
    max-width: 100%;
    justify-self: stretch;
  }

  .about-image {
    height: auto;
    min-height: 0;
    max-height: none;
    object-position: center top;
  }

  .contact-side-image-wrap {
    height: 220px;
    max-height: 220px;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 1rem);
  }

  .top-nav {
    flex-direction: column;
    gap: 0.7rem;
  }

  .question-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 340px;
    height: min(52vh, 430px);
    object-position: 50% 68%;
  }

  .hero-actions-main,
  .hero-actions-sub {
    display: grid;
  }

  .section {
    padding: 3.3rem 0;
  }

  .hero-copy,
  .question-card,
  .about-copy,
  .offer-card,
  .journey-copy,
  .contact-shell,
  .contact-side-image-wrap {
    border-radius: 22px;
  }
}







