*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Afacad", sans-serif;
  font-size: clamp(18px, 1.1vw, 20px);
  line-height: 1.7;
  color: #246B6A;
  background: #C2F0C0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

p {
  margin: 0 0 16px;
}

.script-heading, .contact__title {
  font-family: "Borel", cursive;
  font-weight: 400;
  font-size: clamp(29px, 3.6vw, 46px);
  line-height: 1.4;
  color: #246B6A;
  text-align: center;
  margin: 0 0 28px;
}

.eyebrow {
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 19px);
  text-align: center;
  margin: 0 0 8px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 3vw, 48px);
  background: #FBFBDA;
  border-bottom: 1px solid rgba(36, 107, 106, 0.08);
}

.nav__brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  color: #246B6A;
}

.nav__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  line-height: 1;
}

.nav__tag {
  font-family: "Afacad", sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  .nav__tag {
    display: none;
  }
}

.nav__links {
  display: flex;
  gap: clamp(16px, 2.4vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-family: "Afacad", sans-serif;
  font-size: clamp(18px, 1.1vw, 20px);
  text-decoration: none;
  color: #246B6A;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__links a:hover::after {
  transform: scaleX(1);
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 8vh, 96px) clamp(16px, 5vw, 48px);
  margin-block: clamp(40px, 7vh, 96px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 900px) {
  .section {
    min-height: auto;
  }
}

.section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #C2F0C0;
  border-radius: 28px;
  padding: 48px clamp(28px, 4vw, clamp(48px, 8vh, 96px));
}

.section__prose {
  text-align: left;
}

.figure {
  width: 340px;
  max-width: 100%;
  aspect-ratio: 4/3;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 28px;
}

.figure--photo {
  box-shadow: 0 12px 26px rgba(18, 59, 58, 0.16);
}
.figure--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.figure--motif {
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
}
.figure--motif img {
  width: auto;
  max-height: 90%;
  max-width: 86%;
}

.lead {
  font-family: "Borel", cursive;
  font-size: clamp(19px, 1.9vw, 25px);
  line-height: 1.7;
  max-width: 32ch;
  margin: 0 auto;
}

.thread {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.thread path {
  fill: none;
  stroke: #246B6A;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 2 18;
  vector-effect: non-scaling-stroke;
  animation: thread-sway 6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@media (max-width: 900px) {
  .thread {
    width: 220px;
  }
  .thread path {
    stroke-width: 3.2;
    stroke-dasharray: 2 15;
  }
}
@media (max-width: 600px) {
  .thread {
    width: 170px;
  }
  .thread path {
    stroke-width: 2.4;
    stroke-dasharray: 2 13;
  }
}

@keyframes thread-sway {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .thread path {
    animation: none;
  }
}
.thread-zone {
  position: relative;
}

.newsletter {
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 48px);
  max-width: 640px;
  margin: clamp(48px, 8vh, 96px) auto 0;
  text-align: center;
  box-shadow: 0 14px 34px rgba(18, 59, 58, 0.08);
}
.newsletter__title {
  font-family: "Afacad", sans-serif;
  font-weight: 700;
  font-size: clamp(21px, 1.8vw, 26px);
  color: #246B6A;
  margin: 0 0 8px;
}
.newsletter__sub {
  font-size: clamp(18px, 1.1vw, 20px);
  margin-bottom: 28px;
  opacity: 0.85;
}
.newsletter__form {
  text-align: left;
}
.newsletter__form .field {
  margin-bottom: 0;
}
.newsletter__row {
  display: flex;
  gap: 16px;
  align-items: stretch;
}
.newsletter__row .input {
  flex: 1;
}
.newsletter__row .btn {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .newsletter__row {
    flex-direction: column;
  }
  .newsletter__row .btn {
    width: 100%;
  }
}

.contact {
  position: relative;
  background: linear-gradient(to bottom, #256B6A 0, #256B6A 200px, #052828 100%);
  color: #C2F0C0;
  margin-top: clamp(112px, 16vh, 192px);
  padding: clamp(64px, 12vh, 128px) clamp(16px, 5vw, 48px) 48px;
  text-align: center;
  overflow: visible;
}
.contact__transition {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% - 4px);
  height: 360px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.contact__grass {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1700px;
  max-width: none;
}
.contact__cap {
  position: absolute;
  bottom: 0;
  width: 1600px;
  max-width: none;
  height: auto;
  display: block;
}
.contact__cap--left {
  right: 50%;
  left: auto;
}
.contact__cap--right {
  left: 50%;
  right: auto;
}
.contact__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.contact__title {
  color: #C2F0C0;
}
.contact__links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.contact__form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.contact__form .btn--primary {
  width: 100%;
  margin-top: 8px;
}

.footer {
  background: #052828;
  color: rgba(194, 240, 192, 0.7);
  text-align: center;
  font-size: 15px;
  padding: 28px 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Afacad", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
  padding: 12px 28px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn:disabled, .btn[aria-disabled=true] {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.btn--primary {
  background: #246B6A;
  color: #C2F0C0;
  box-shadow: 0 6px 16px rgba(18, 59, 58, 0.18);
}
.btn--primary:hover {
  box-shadow: 0 10px 22px rgba(18, 59, 58, 0.24);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #C2F0C0;
  border-color: rgba(194, 240, 192, 0.55);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}
.btn--ghost img {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.btn--icon {
  padding: 12px 20px;
}
.btn--icon img {
  height: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  text-align: left;
}

.field__label {
  font-family: "Afacad", sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.input,
.textarea {
  font-family: "Afacad", sans-serif;
  font-size: clamp(18px, 1.1vw, 20px);
  color: #246B6A;
  background: rgba(255, 255, 255, 0.65);
  border: 1.5px solid rgba(36, 107, 106, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.input::placeholder,
.textarea::placeholder {
  color: rgba(36, 107, 106, 0.5);
}
.input:focus,
.textarea:focus {
  outline: none;
  border-color: #246B6A;
  box-shadow: 0 0 0 3px rgba(36, 107, 106, 0.15);
}
.input:disabled,
.textarea:disabled {
  opacity: 0.6;
}

.textarea {
  min-height: 130px;
  resize: vertical;
}

.field--dark .field__label {
  color: #C2F0C0;
}
.field--dark .input, .field--dark .textarea {
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  border-color: rgba(194, 240, 192, 0.35);
}
.field--dark .input::placeholder, .field--dark .textarea::placeholder {
  color: rgba(194, 240, 192, 0.6);
}
.field--dark .input:focus, .field--dark .textarea:focus {
  border-color: #C2F0C0;
  box-shadow: 0 0 0 3px rgba(194, 240, 192, 0.25);
}

.field.is-invalid .input, .field.is-invalid .textarea {
  border-color: #C2453D;
}

.field__error {
  font-family: "Afacad", sans-serif;
  font-size: 15px;
  color: #C2453D;
  min-height: 16px;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.field.is-invalid .field__error {
  opacity: 1;
  transform: translateY(0);
}

.field--dark.is-invalid .input, .field--dark.is-invalid .textarea {
  border-color: #ffb3ad;
}
.field--dark.is-invalid .field__error {
  color: #ffc9c4;
}

.form-status {
  font-family: "Afacad", sans-serif;
  font-size: clamp(18px, 1.1vw, 20px);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
  display: none;
}
.form-status.is-visible {
  display: block;
  animation: status-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.form-status.is-success {
  background: rgba(31, 122, 90, 0.15);
  color: #d9f6ea;
  border: 1.5px solid rgba(31, 122, 90, 0.6);
}
.form-status.is-error {
  background: rgba(194, 69, 61, 0.15);
  color: #ffd6d2;
  border: 1.5px solid rgba(194, 69, 61, 0.6);
}

.form-status--light.is-success {
  color: #1F7A5A;
  background: rgba(31, 122, 90, 0.12);
  border-color: rgba(31, 122, 90, 0.4);
}
.form-status--light.is-error {
  color: #C2453D;
  background: rgba(194, 69, 61, 0.1);
  border-color: rgba(194, 69, 61, 0.4);
}

@keyframes status-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn.is-loading {
  color: transparent !important;
  position: relative;
  pointer-events: none;
}
.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
.hero {
  position: relative;
  width: 100%;
  height: calc(100dvh - 64px);
  min-height: 640px;
  overflow: hidden;
  background: linear-gradient(to bottom, #FFFFD7 0%, #B4E7CB 100%);
  isolation: isolate;
}

.hero__layer {
  position: absolute;
  bottom: 0;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
  max-width: none;
}
.hero__layer, .hero__layer img {
  max-width: none;
}

.hero__pines {
  bottom: 40px;
  left: 50%;
  width: 1600px;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  z-index: 1;
  animation: hero-fade 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.hero__pines img {
  opacity: 0.5;
}
.hero__pines img:nth-child(1) {
  height: 430px;
}
.hero__pines img:nth-child(2) {
  height: 370px;
}
.hero__pines img:nth-child(3) {
  height: 490px;
}
.hero__pines img:nth-child(4) {
  height: 400px;
}

.hero__tree {
  bottom: -12px;
  height: 820px;
  width: auto;
  z-index: 2;
  opacity: 0;
}

.hero__tree--left {
  left: calc(50% - 920px);
  transform: translateX(-140px);
  animation: hero-slide-left 1.3s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.hero__tree--right {
  left: calc(50% + 217px);
  transform: translateX(140px);
  animation: hero-slide-right 1.3s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.hero__bgplants {
  left: 50%;
  bottom: 6px;
  width: 1900px;
  transform: translate(-50%, 34px);
  opacity: 0;
  z-index: 3;
  animation: hero-rise 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.hero__center {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 92px;
  pointer-events: none;
}

.hero__title {
  font-family: "Borel", cursive;
  font-weight: 400;
  color: #246B6A;
  text-align: center;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.5;
  margin: 0 0 20px;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(-14px);
  animation: hero-rise-y 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.hero__shelf {
  width: 480px;
  max-width: 84vw;
  height: auto;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  animation: hero-pop 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
  filter: drop-shadow(0 18px 26px rgba(18, 59, 58, 0.14));
}

.hero__foreground {
  left: 50%;
  bottom: -1px;
  width: 1700px;
  transform: translate(-50%, 55px);
  opacity: 0;
  z-index: 6;
  animation: hero-rise-up 1.3s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.hero__cap {
  bottom: -1px;
  width: 1600px;
  height: auto;
  z-index: 7;
  display: block;
}

.hero__cap--left {
  right: 50%;
  left: auto;
}

.hero__cap--right {
  left: 50%;
  right: auto;
}

.hero__more {
  position: absolute;
  left: 50%;
  bottom: 300px;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #246B6A;
  font-family: "Borel", cursive;
  font-size: 17px;
  opacity: 0;
  pointer-events: auto;
  animation: hero-fade 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.15s forwards;
}
.hero__more:hover .hero__caret {
  transform: translateY(3px);
}
.hero__more .hero__caret {
  width: 26px;
  height: 26px;
  transition: transform 0.25s ease;
  animation: caret-bounce 1.8s cubic-bezier(0.65, 0, 0.35, 1) 2s infinite;
}
@media (max-height: 999px) {
  .hero__more {
    display: none;
  }
}

@keyframes hero-fade {
  to {
    opacity: 1;
  }
}
@keyframes hero-rise-y {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-pop {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes hero-slide-left {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes hero-slide-right {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes hero-rise-up {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes caret-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__pines, .hero__bgplants, .hero__foreground {
    animation: none !important;
    opacity: 1 !important;
    transform: translateX(-50%) !important;
  }
  .hero__tree {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__title, .hero__shelf {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__cap {
    animation: none !important;
    opacity: 1 !important;
  }
  .hero__more {
    animation: none !important;
    opacity: 1 !important;
  }
  .hero__caret {
    animation: none !important;
  }
}

/*# sourceMappingURL=style.css.map */
