/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #eef9fc;
  font-family: 'Nunito', sans-serif;
  color: #56685f;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: #bfe6c6; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== Animations ===== */
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes twinkle { 0%, 100% { opacity: .3; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.15); } }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(2deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* ===== Nav ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(234, 246, 251, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #d6ebf2;
}
.site-nav .wrap {
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9cd6a6, #7bb588);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  box-shadow: 0 3px 8px rgba(123, 181, 136, .4);
  flex: none;
}
.brand-text {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: #3a4a45;
  line-height: 1;
}
.brand-sub {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 10.5px;
  color: #7e9488;
  letter-spacing: .11em;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 15px;
  color: #52635c;
}
.nav-textlinks {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navlink {
  position: relative;
  text-decoration: none;
  color: #52635c;
  transition: color .2s;
}
.navlink:hover { color: #7bb588; }

.btn {
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
  border: none;
  font-family: 'Fredoka', sans-serif;
  text-decoration: none;
  display: inline-block;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid #7bb588; outline-offset: 2px; }

.btn-cta {
  background: #7bb588;
  color: #fff;
  padding: 11px 22px;
  border-radius: 30px;
  box-shadow: 0 5px 12px rgba(123, 181, 136, .45);
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
}

/* ===== Hero / trust strip ===== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #c4e7f6 0%, #dff2fb 55%, #eef9fc 100%);
  overflow: hidden;
  scroll-margin-top: 80px;
}
.hero-arc { position: absolute; right: -90px; top: -100px; pointer-events: none; opacity: .8; }
.hero-deco { pointer-events: none; position: absolute; opacity: .85; }
.cloud {
  position: relative;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 6px 14px rgba(120, 160, 180, .18);
}
.cloud::before, .cloud::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 50%;
}
.cloud-1 { width: 110px; height: 42px; }
.cloud-1::before { width: 49px; height: 49px; top: -22px; left: 17px; }
.cloud-1::after { width: 37px; height: 37px; top: -13px; left: 58px; }
.cloud-face span { position: absolute; }
.cloud-eye-l { top: 15px; left: 37px; width: 6px; height: 6px; background: #5a6f66; border-radius: 50%; }
.cloud-eye-r { top: 15px; left: 58px; width: 6px; height: 6px; background: #5a6f66; border-radius: 50%; }
.cloud-mouth { top: 22px; left: 42px; width: 14px; height: 8px; border-bottom: 2px solid #5a6f66; border-radius: 0 0 14px 14px; }
.cloud-cheek-l { top: 19px; left: 30px; width: 8px; height: 4px; background: #f6b6ae; border-radius: 50%; opacity: .7; }
.cloud-cheek-r { top: 19px; left: 56px; width: 8px; height: 4px; background: #f6b6ae; border-radius: 50%; opacity: .7; }

.sparkle { color: #f6d96b; opacity: .8; }
.dot { border-radius: 50%; opacity: .4; }

.hero-row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}
.hero-copy {
  flex: 1;
  max-width: 540px;
  padding: 10px 0 70px;
  position: relative;
}
.badge {
  display: inline-block;
  background: #fff;
  color: #7bb588;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 9px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(40, 70, 90, .1);
}
.h1big {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 58px;
  line-height: 1.05;
  color: #33453f;
  margin: 22px 0 18px;
  letter-spacing: -.01em;
}
.h1big .c-green { color: #7bb588; }
.h1big .c-orange { color: #e89a6b; }
.hero-copy > p {
  font-weight: 600;
  font-size: 19px;
  line-height: 1.55;
  color: #56685f;
  margin: 0 0 32px;
  max-width: 450px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-btn {
  font-weight: 500;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 34px;
  text-align: center;
}
.hero-btn-primary { background: #7bb588; color: #fff; box-shadow: 0 10px 20px rgba(123, 181, 136, .45); }
.hero-btn-secondary { background: #fff; color: #52635c; box-shadow: 0 4px 12px rgba(40, 70, 90, .12); padding: 16px 26px; }

.scallop { position: relative; display: block; margin-bottom: -1px; }

.trust-strip { padding: 8px 40px 0; }
.trust-strip .wrap { padding-top: 8px; }
.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.chip {
  background: #fff;
  border-radius: 30px;
  padding: 12px 22px;
  box-shadow: 0 4px 14px rgba(40, 70, 90, .07);
  font-weight: 800;
  font-size: 14px;
  color: #52635c;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: transform .15s;
}
.chip:hover { transform: translateY(-3px) rotate(-1deg); }
.chip-icon { font-size: 18px; }

/* ===== Section shared ===== */
.eyebrow {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .1em;
  color: #7bb588;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.sec-h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 38px;
  line-height: 1.15;
  color: #33453f;
  margin: 0;
}
.sec-head { text-align: center; margin-bottom: 44px; }

/* ===== About ===== */
.about {
  position: relative;
  padding: 76px 0 20px;
  scroll-margin-top: 80px;
  overflow: hidden;
}
.about-row {
  display: flex;
  gap: 56px;
  align-items: center;
  position: relative;
}
.photo-wrap {
  flex: 0 0 auto;
  position: relative;
  width: 360px;
  height: 360px;
}
.photo-ring {
  position: absolute;
  inset: 0;
  animation: floaty 9s ease-in-out infinite;
}
.photo-ring-fill {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  padding: 7px;
  background: conic-gradient(from 220deg, #f4837b, #f6a96b, #f6d96b, #8fd49a, #7fc1e8, #b89fe0, #f4837b);
  box-shadow: 0 14px 34px rgba(40, 70, 90, .16);
}
.photo-ring-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.greeting-badge {
  position: absolute;
  bottom: 6px;
  right: -6px;
  background: #fff;
  border-radius: 22px;
  padding: 10px 16px;
  box-shadow: 0 6px 16px rgba(40, 70, 90, .14);
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #3a4a45;
  animation: bob 5s ease-in-out infinite;
  white-space: nowrap;
}
.about-copy { flex: 1; }
.about-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: #56685f;
  margin: 0 0 16px;
  font-weight: 500;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-copy b { color: #4a5a53; }

/* ===== Credentials ===== */
.credentials {
  position: relative;
  padding: 64px 0 76px;
  scroll-margin-top: 80px;
  overflow: hidden;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cred-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: 0 8px 24px rgba(40, 70, 90, .07);
  border-top: 5px solid var(--accent, #7fc1e8);
}
.cred-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cred-icon {
  width: 54px;
  height: 54px;
  flex: none;
  border-radius: 16px;
  background: var(--accent-bg, #e6f4fb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.cred-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #33453f;
}
.cred-body {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7d75;
  font-weight: 600;
}

/* ===== FAQ ===== */
.faq {
  position: relative;
  background: linear-gradient(180deg, #f4faf5 0%, #eaf6ee 100%);
  padding: 76px 0;
  scroll-margin-top: 80px;
  overflow: hidden;
}
.faq .wrap { max-width: 820px; position: relative; }
.faq-deco { position: absolute; pointer-events: none; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(40, 70, 90, .06);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.faq-item.is-open { border-color: #bfe6c6; }
.faq-q {
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
}
.faq-q-text {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #33453f;
}
.faq-icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef6f0;
  color: #7bb588;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  transition: all .2s;
}
.faq-item.is-open .faq-icon {
  background: #7bb588;
  color: #fff;
  transform: rotate(45deg);
}
.faq-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq-item.is-open .faq-a-wrap { max-height: 260px; }
.faq-a {
  padding: 0 24px 22px;
  font-size: 15.5px;
  line-height: 1.65;
  color: #6b7d75;
  font-weight: 600;
}

/* ===== Visit ===== */
.visit {
  position: relative;
  padding: 76px 0;
  scroll-margin-top: 80px;
  overflow: hidden;
}
.two-col {
  display: flex;
  gap: 26px;
  align-items: stretch;
}
.visit-info {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-card {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 8px 24px rgba(40, 70, 90, .07);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: none;
}
.info-icon-blue { background: #e6f4fb; }
.info-icon-green { background: #e7f6ea; }
.info-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #33453f;
  margin-bottom: 4px;
}
.info-body {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7d75;
  font-weight: 600;
}
.info-phone {
  font-size: 16px;
  color: #7bb588;
  font-weight: 800;
  text-decoration: none;
}
.btn-visit-cta {
  background: #7bb588;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  padding: 17px 24px;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(123, 181, 136, .4);
  text-align: center;
}
.map-wrap {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(40, 70, 90, .09);
  min-height: 360px;
  position: relative;
}
.map-wrap iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
}

/* ===== Booking ===== */
.booking {
  position: relative;
  background: linear-gradient(180deg, #dff2fb 0%, #cfe9f5 100%);
  padding: 78px 0;
  scroll-margin-top: 70px;
  overflow: hidden;
}
.booking-arc { position: absolute; left: -40px; bottom: -30px; opacity: .5; pointer-events: none; }
.booking .wrap { max-width: 760px; position: relative; }
.booking-head { text-align: center; margin-bottom: 36px; }
.booking-head p {
  font-size: 16px;
  color: #56685f;
  font-weight: 600;
  margin: 0 auto;
  max-width: 480px;
}
#form-card {
  background: #fff;
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(40, 70, 90, .14);
}
.gform-embed {
  border-radius: 20px;
  overflow: hidden;
}
.gform-embed iframe {
  display: block;
  width: 100%;
  height: 981px;
  border: 0;
}
.form-note {
  text-align: center;
  font-size: 13px;
  color: #8a9a92;
  font-weight: 600;
  margin: 14px 0 6px;
}

/* ===== Footer ===== */
.site-footer {
  background: #3a4a45;
  color: #cdd9d3;
  padding: 48px 0 30px;
  position: relative;
  overflow: hidden;
}
.foot-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.foot-brand { max-width: 320px; }
.foot-brand-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.foot-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9cd6a6, #7bb588);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.foot-name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}
.foot-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #a9bab2;
  font-weight: 600;
  margin: 0;
}
.foot-heading {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin-bottom: 14px;
}
.foot-col {
  font-size: 14px;
  line-height: 1.9;
  color: #a9bab2;
  font-weight: 600;
}
.foot-col a { text-decoration: none; }
.foot-phone { color: #9cd6a6; font-weight: 800; }
.foot-link { color: #a9bab2; }
.foot-bottom {
  margin: 26px auto 0;
  padding: 20px 40px 0;
  border-top: 1px solid #4c5c56;
  font-size: 13px;
  color: #8ba096;
  font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 1280px) {
  .hero-arc { width: 260px; height: 152px; right: -40px; top: -55px; opacity: .8; }
}

@media (max-width: 1040px) {
  .nav-textlinks { display: none !important; }
}

@media (max-width: 900px) {
  .wrap { padding-left: 22px; padding-right: 22px; }
  .hero-row { flex-direction: column; align-items: flex-start; }
  .two-col { flex-direction: column; }
  .visit-info { flex: 1 1 auto; }
  .about-row { flex-direction: column; text-align: center; gap: 34px; }
  .about-row h2, .about-row p { text-align: left; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-row { flex-direction: column; gap: 22px; }
  .h1big { font-size: 38px; }
  #form-card { padding: 24px; }
  .hero-deco { display: none; }
  .hero-arc { width: 300px; height: 160px; right: -90px; top: -90px; opacity: .7; }
}

@media (max-width: 640px) {
  .photo-ring { display: none; }
  .photo-ring-fill { background: #fff; padding: 5px; }
  .hero .wrap { padding-top: 120px; }
  .hero-copy { padding-bottom: 36px; max-width: none; }
  .h1big { font-size: 34px; line-height: 1.12; width: auto; height: auto; max-width: 100%; }
  .hero-copy > p { font-size: 17px; max-width: none; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-btn { display: block; width: 100%; padding: 16px 20px; }
  .cred-grid { grid-template-columns: 1fr; gap: 14px; }
  .cred-card { padding: 14px 16px; border-radius: 16px; }
  .cred-head { gap: 10px; margin-bottom: 8px; }
  .cred-icon { width: 32px; height: 32px; font-size: 15px; border-radius: 10px; }
  .cred-title { font-size: 15px; }
  .cred-body { font-size: 13px; line-height: 1.5; }
  .about { padding: 52px 0 8px; }
  .credentials { padding: 44px 0 52px; }
  .faq { padding: 52px 0; }
  .visit { padding: 52px 0; }
  .booking { padding: 56px 0; }
  .map-wrap, .map-wrap iframe { min-height: 260px; }
  .sec-h2 { font-size: 30px; }
  .hero-copy { padding-top: 0; }
  #form-card { padding: 10px; }
  .gform-embed iframe { height: 1150px; }
}

@media (max-width: 520px) {
  .h1big { font-size: 31px; }
  .photo-wrap { width: 260px; height: 260px; }
}
