:root {
  --ink: #173d45;
  --muted: #527078;
  --aqua-dark: #276d70;
  --cream: #fbfcf7;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: Inter, Avenir, "Helvetica Neue", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
h1, h2, p { margin-top: 0; }

.hero {
  position: relative;
  min-height: max(740px, 100svh);
  overflow: hidden;
  background: linear-gradient(150deg, #d9efed 0%, #c8e8e4 48%, #a8d2d1 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(to top, rgba(230,244,239,.98) 12%, rgba(224,241,238,.72) 62%, transparent 100%);
  pointer-events: none;
}
.hero-art, .hero-art img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-art img { object-fit: cover; object-position: center top; }
.site-header {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(23,61,69,.18);
}
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem,2.3vw,2rem); font-style: italic; letter-spacing: -.04em; }
.brand-tagline { margin-top: 6px; font-size: .58rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.header-link {
  padding: 11px 18px;
  border: 1px solid rgba(23,61,69,.45);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.header-link:hover { background: var(--ink); color: var(--white); }
.hero-content {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(34px,6vh,70px);
  width: min(720px, calc(100% - 40px));
  transform: translateX(-50%);
  text-align: center;
}
.eyebrow, .section-kicker { margin: 0 0 14px; color: var(--aqua-dark); font-size: .72rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
h1 {
  max-width: 680px;
  margin: 0 auto 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem,5vw,4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.045em;
}
h1 em { color: var(--aqua-dark); font-weight: 400; }
.hero-copy { max-width: 610px; margin: 0 auto 24px; color: #31575f; font-size: clamp(.98rem,1.7vw,1.08rem); line-height: 1.65; }
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(23,61,69,.22);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(23,61,69,.3); }
.whatsapp-mark { display: inline-grid; place-items: center; width: 24px; height: 24px; border: 1px solid currentColor; border-radius: 50%; font-size: .73rem; line-height: 1; }
.hero-note { margin: 14px 0 0; color: var(--muted); font-size: .77rem; }

.welcome {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px,10vw,130px) 0;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(340px,.95fr);
  align-items: center;
  gap: clamp(42px,8vw,100px);
}
.lotus { position: absolute; z-index: -1; width: 280px; opacity: .17; pointer-events: none; }
.lotus-left { left: -140px; bottom: 0; }
.lotus-right { right: -150px; top: 20px; }
.welcome-image-wrap { position: relative; padding: 18px; border: 1px solid rgba(39,109,112,.18); border-radius: 44% 44% 12px 12px; background: rgba(255,255,255,.66); }
.welcome-image { display: block; width: 100%; border-radius: 42% 42% 8px 8px; }
.welcome-content h2, .final-cta h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem,4vw,3.7rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.045em;
}
.welcome-content > p:not(.section-kicker) { color: var(--muted); line-height: 1.75; }
.services { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0; padding: 0; list-style: none; }
.services li { padding: 9px 13px; border: 1px solid rgba(39,109,112,.22); border-radius: 999px; background: #eef7f4; font-size: .78rem; font-weight: 750; }
address { color: var(--muted); font-size: .88rem; font-style: normal; line-height: 1.55; }
address span { display: block; color: var(--ink); font-weight: 800; }

.final-cta { position: relative; overflow: hidden; padding: clamp(76px,10vw,120px) 24px; background: linear-gradient(135deg,#173d45,#28686c); color: var(--white); text-align: center; }
.final-cta::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  top: -180px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255,255,255,.025), 0 0 0 130px rgba(255,255,255,.02);
}
.final-cta .section-kicker { color: #aee0d9; }
.final-cta h2 { position: relative; margin-left: auto; margin-right: auto; max-width: 760px; }
.final-cta > p:not(.section-kicker) { color: #c9dddc; }
.light-button { margin-top: 16px; background: var(--white); color: var(--ink); }
footer { display: flex; justify-content: space-between; gap: 16px; padding: 26px max(24px,calc((100% - 1160px)/2)); background: #102f35; color: rgba(255,255,255,.7); font-size: .75rem; }
footer span:first-child { color: var(--white); font-family: Georgia,serif; font-size: 1rem; font-style: italic; }
.floating-whatsapp {
  position: fixed;
  z-index: 20;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 17px 0 12px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: #1d9a5e;
  color: white;
  box-shadow: 0 12px 30px rgba(15,72,48,.28);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .04em;
}
.floating-whatsapp:hover { background: #178450; }

@media (max-width: 800px) {
  .hero { min-height: max(720px,100svh); }
  .hero::after { height: 58%; }
  .welcome { grid-template-columns: 1fr; gap: 50px; }
  .welcome-image-wrap { width: min(100%,560px); margin: 0 auto; }
  .welcome-content { text-align: center; }
  .services { justify-content: center; }
}
@media (max-width: 560px) {
  .site-header { width: calc(100% - 32px); padding: 16px 0; }
  .brand-tagline { display: none; }
  .header-link { padding: 9px 12px; font-size: .66rem; }
  .hero { min-height: max(650px, 100svh);}
  .hero-content { top: clamp(250px, 36svh, 310px); bottom: auto; width: calc(100% - 32px); }
  .eyebrow { margin-bottom: 10px; font-size: .61rem; letter-spacing: .12em; }
  h1 { font-size: clamp(2rem,10vw,2.8rem); }
  .hero-copy { margin-bottom: 18px; font-size: .91rem; line-height: 1.5; }
  .primary-button { width: 100%; padding: 0 18px; font-size: .71rem; }
  .hero-note { margin-top: 10px; }
  .welcome { padding: 74px 0; }
  .welcome-image-wrap { padding: 10px; }
  footer { flex-direction: column; align-items: center; text-align: center; }
  .floating-whatsapp { width: 52px; height: 52px; right: 14px; bottom: 14px; padding: 0; justify-content: center; }
  .floating-whatsapp > span:last-child { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
