@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,400;1,9..144,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300;1,9..40,400&family=Anybody:wght@100;400;700;900&display=swap');

:root {
  --dune: #f2ebe0;
  --sand: #e6dac8;
  --clay: #c9a882;
  --terracotta: #c47d4e;
  --terra-deep: #9e5a2b;
  --earth: #3d2e1f;
  --night: #1c1612;
  --pool: #3b9aaa;
  --pool-deep: #1e6e7c;
  --pool-pale: #d0ecf0;
  --pool-glow: rgba(59, 154, 170, 0.12);
  --sky: #8ecad4;
  --white: #fffdf9;
  --text-warm: #6b5a48;
  --text-body: #7a6d5f;
  --text-light: #a99c8e;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dune);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--pool); color: var(--white); }

/* ═══ TYPOGRAPHY ═══ */

h1, h2, h3 { font-family: 'Fraunces', serif; color: var(--earth); font-weight: 300; }

.display {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-weight: 300;
}

.display .wonky {
  font-variation-settings: 'WONK' 1;
  font-style: italic;
  color: var(--pool);
  font-weight: 700;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-title .wonky {
  font-variation-settings: 'WONK' 1;
  font-style: italic;
  color: var(--pool);
  font-weight: 700;
}

.tag {
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--terracotta);
  display: block;
}

/* ═══ ORGANIC SHAPES ═══ */

.blob {
  position: absolute;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  pointer-events: none;
  animation: blobFloat 20s ease-in-out infinite alternate;
}

@keyframes blobFloat {
  0% { border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; }
  33% { border-radius: 55% 45% 38% 62% / 52% 60% 40% 48%; }
  66% { border-radius: 38% 62% 50% 50% / 45% 55% 45% 55%; }
  100% { border-radius: 48% 52% 58% 42% / 55% 38% 62% 45%; }
}

/* ═══ NAV ═══ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1rem, 2vh, 1.5rem) clamp(1.5rem, 4vw, 4rem);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav.scrolled {
  background: rgba(242, 235, 224, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-brand .name {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--earth);
  letter-spacing: -0.02em;
}

.nav-brand .sub {
  font-family: 'Anybody', sans-serif;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-light);
}

.nav-phone {
  font-family: 'Anybody', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  background: var(--earth);
  padding: 0.65rem 1.4rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-phone:hover {
  background: var(--pool-deep);
  transform: translateY(-1px);
}

/* ═══ HERO ═══ */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
  padding-top: 6rem;
  position: relative;
  z-index: 2;
}

.hero-left .blob {
  width: 500px;
  height: 500px;
  background: var(--pool-glow);
  top: -100px;
  left: -150px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-badge .stars { color: var(--terracotta); font-size: 1rem; letter-spacing: 0.08em; }
.hero-badge .count {
  font-family: 'Anybody', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-light);
}

.hero .display { animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both; }

.hero-desc {
  max-width: 400px;
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-warm);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}

.btn-fill {
  background: var(--earth);
  color: var(--white);
}

.btn-fill:hover {
  background: var(--pool-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30, 110, 124, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--earth);
  border: 1.5px solid var(--clay);
}

.btn-ghost:hover { border-color: var(--pool); color: var(--pool-deep); }

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-right::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(0deg, var(--sand) 0%, transparent 100%);
  pointer-events: none;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 20%;
  background: linear-gradient(90deg, var(--sand) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* ═══ STAT RIBBON ═══ */

.stat-ribbon {
  background: var(--pool);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  position: relative;
}

.stat-cell + .stat-cell::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%; width: 1px;
  background: rgba(255,255,255,0.2);
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-family: 'Anybody', sans-serif;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
}

/* ═══ STORY ═══ */

.story {
  padding: clamp(6rem, 12vh, 12rem) clamp(2rem, 8vw, 10rem);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.story .blob {
  width: 600px; height: 600px;
  background: var(--pool-glow);
  top: -100px; right: -200px;
}

.story .section-title { margin-top: 1rem; margin-bottom: 2rem; }

.story p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.9;
  color: var(--text-warm);
  max-width: 650px;
  margin: 0 auto;
}

.story p + p { margin-top: 1.5rem; }

/* ═══ SERVICES ═══ */

.services-section {
  background: var(--white);
  padding: clamp(5rem, 10vh, 10rem) 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--pool-glow) 0%, transparent 70%);
  pointer-events: none;
}

.services-header {
  text-align: center;
  padding: 0 clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.services-header .section-title { margin-top: 1rem; }

.services-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.svc {
  padding: clamp(2.5rem, 4vw, 4rem);
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid var(--sand);
  border-right: 1px solid var(--sand);
  overflow: hidden;
}

.svc:nth-child(3n) { border-right: none; }
.svc:nth-child(n+4) { border-bottom: none; }

.svc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pool-glow), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.svc:hover::after { opacity: 1; }
.svc:hover { transform: translateY(-3px); }

.svc-icon { font-size: 2.2rem; margin-bottom: 1.2rem; position: relative; z-index: 1; }

.svc h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}

.svc p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

/* ═══ PHOTO BAND ═══ */

.photo-band {
  display: flex;
  gap: 4px;
  overflow: hidden;
  background: var(--earth);
}

.photo-band img {
  flex: 1;
  min-width: 0;
  height: clamp(220px, 32vh, 380px);
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: all 0.6s ease;
}

.photo-band img:hover { filter: saturate(1.15); flex: 1.5; }

/* ═══ TESTIMONIALS ═══ */

.testimonials {
  background: var(--night);
  color: var(--sand);
  padding: clamp(6rem, 12vh, 12rem) clamp(2rem, 5vw, 6rem);
  position: relative;
  overflow: hidden;
}

.testimonials .blob {
  width: 700px; height: 700px;
  background: rgba(59, 154, 170, 0.05);
  bottom: -200px; right: -200px;
}

.testimonials .tag { color: var(--sky); }

.testimonials .section-title {
  color: var(--dune);
  margin-top: 1rem;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.testimonials .section-title .wonky { color: var(--sky); }

.review-big {
  max-width: 850px;
  margin-bottom: clamp(4rem, 8vh, 7rem);
  position: relative;
  padding-left: clamp(2rem, 4vw, 4rem);
}

.review-big::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--terracotta), var(--pool));
  border-radius: 3px;
}

.review-big blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream);
}

.review-big .who {
  margin-top: 1.5rem;
  font-family: 'Anybody', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--terracotta);
}

.review-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

.review-sm {
  background: rgba(255,255,255,0.03);
  padding: clamp(2rem, 4vw, 3rem);
}

.review-sm .stars { color: var(--terracotta); font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 1rem; }

.review-sm p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--sand);
  margin-bottom: 1.2rem;
}

.review-sm .who {
  font-family: 'Anybody', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-light);
}

.reviews-link {
  text-align: center;
  margin-top: 3rem;
}

.reviews-link a {
  color: var(--sand);
  font-size: 0.8rem;
  text-decoration: none;
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.3rem;
}

.reviews-link a:hover { color: var(--sky); border-color: var(--sky); }

/* ═══ CONTACT ═══ */

.contact-section {
  background: var(--white);
  padding: clamp(6rem, 12vh, 10rem) clamp(2rem, 5vw, 6rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}

.contact-left .section-title { margin-top: 1rem; margin-bottom: 2rem; }

.info-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--sand);
  align-items: baseline;
}

.info-row:last-child { border: none; }

.info-row .info-label {
  font-family: 'Anybody', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-light);
}

.info-row .info-value { font-size: 1rem; color: var(--earth); }

.info-row a { color: var(--earth); text-decoration: none; transition: color 0.3s; }
.info-row a:hover { color: var(--pool); }

.hours-card {
  background: var(--dune);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.hours-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--pool));
}

.hours-card h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }

.h-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.h-row:last-child { border: none; }
.h-row .day { color: var(--text-light); }
.h-row .time { color: var(--earth); font-weight: 500; }
.h-row.today .day, .h-row.today .time { color: var(--pool); font-weight: 600; }

.contact-cta-block { margin-top: 2.5rem; }

/* ═══ FOOTER ═══ */

footer {
  background: var(--earth);
  color: var(--clay);
  padding: clamp(2rem, 4vh, 3rem) clamp(2rem, 5vw, 6rem);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand { font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--sand); }
.footer-links { display: flex; gap: 2rem; }

.footer-links a {
  font-size: 0.8rem;
  color: var(--clay);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--sky); }

.footer-copy {
  text-align: center;
  font-size: 0.65rem;
  color: var(--text-light);
  opacity: 0.5;
  margin-top: 1.5rem;
}

/* ═══ FLOATING CTA ═══ */

.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--earth);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  box-shadow: 0 8px 30px rgba(61, 46, 31, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.float-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.float-cta:hover {
  background: var(--pool-deep);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(30, 110, 124, 0.3);
}

/* ═══ ANIMATIONS ═══ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ RESPONSIVE ═══ */

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding-top: 7rem; }
  .hero-right { height: 50vh; order: -1; }
  .hero-right::before { display: none; }
  .hero-right::after {
    height: 40%;
    background: linear-gradient(0deg, var(--sand) 0%, transparent 100%);
  }
  .stat-ribbon { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(3)::before { display: none; }
  .services-mosaic { grid-template-columns: 1fr; }
  .svc { border-right: none !important; border-bottom: 1px solid var(--sand) !important; }
  .svc:last-child { border-bottom: none !important; }
  .photo-band { flex-direction: column; gap: 0; }
  .photo-band img { width: 100%; height: 55vw; flex: none; object-fit: cover; }
  .photo-band img:hover { flex: none; filter: saturate(0.85); }
  .review-pair { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 500px) {
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .info-row { grid-template-columns: 1fr; gap: 0.2rem; }
  .float-cta .cta-label { display: none; }
  .float-cta { padding: 0.85rem; border-radius: 50%; }
  .nav-phone { padding: 0.5rem 1rem; font-size: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .blob { animation: none; }
}
