:root {
  --bg: #fffdf9;
  --text: #24406c;
  --text-soft: #527091;
  --heading: #23416e;
  --line: rgba(53, 87, 131, 0.12);
  --white: rgba(255,255,255,0.78);
  --peach: #f7b48d;
  --peach-deep: #ed8c5d;
  --mint: #bfe7d1;
  --aqua: #c6ecf4;
  --sky: #8dd6e9;
  --lavender: #dad7fb;
  --soft-shadow: 0 16px 45px rgba(72, 102, 141, 0.12);
  --card-shadow: 0 12px 32px rgba(102, 124, 152, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 229, 220, 0.55), transparent 25%),
    radial-gradient(circle at 85% 20%, rgba(198, 236, 244, 0.52), transparent 24%),
    linear-gradient(180deg, #fffefb 0%, #fffaf7 100%);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  filter: blur(10px);
  opacity: .55;
}

.blob-a {
  width: 260px;
  height: 260px;
  left: -60px;
  top: 140px;
  background: rgba(244, 179, 145, .26);
  border-radius: 51% 49% 63% 37% / 38% 48% 52% 62%;
}

.blob-b {
  width: 340px;
  height: 340px;
  right: -80px;
  top: 520px;
  background: rgba(195, 236, 243, .28);
  border-radius: 61% 39% 48% 52% / 47% 57% 43% 53%;
}

.blob-c {
  width: 280px;
  height: 280px;
  left: -70px;
  bottom: 140px;
  background: rgba(212, 217, 251, .3);
  border-radius: 42% 58% 57% 43% / 60% 34% 66% 40%;
}

.blob-d {
  width: 240px;
  height: 240px;
  right: 7%;
  top: 120px;
  background: rgba(191, 231, 209, .26);
  border-radius: 59% 41% 44% 56% / 45% 62% 38% 55%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.74));
  border-bottom: 1px solid rgba(88, 114, 152, 0.08);
  overflow: visible;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px 0;
  min-height: 78px;
}

.brand-logo {
  height: 110px;
  width: auto;
  max-width: none;
  margin: -10px 0;
  display: block;
}

.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 500;
  color: var(--text-soft);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--peach), #64c6d8);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--card-shadow);
  border-radius: 14px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  color: var(--heading);
}

.hero { padding: 70px 0 38px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #2f8b9e;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
}

.hero-branding {
  width: min(100%, 560px);
  margin: 0 0 16px;
}

.hero-text,
.section-text,
.split-grid p,
.feature-band p,
.promise-card p,
.service-card p,
.contact-section p,
.info-card p,
.gallery-note p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 24px 0 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--peach), var(--peach-deep));
  color: white;
  box-shadow: 0 12px 24px rgba(237, 140, 93, 0.24);
}

.btn-secondary {
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(55, 93, 137, 0.09);
  color: var(--heading);
  box-shadow: var(--card-shadow);
}

.hero-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-points span {
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(82, 112, 145, 0.1);
  box-shadow: 0 8px 20px rgba(98, 123, 150, 0.08);
  color: var(--text-soft);
  font-size: .95rem;
}

.hero-visuals {
  position: relative;
  min-height: 590px;
}

.image-card {
  overflow: hidden;
  position: absolute;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shape-arch { border-radius: 240px 240px 34px 34px; }
.shape-circle { border-radius: 50%; }
.shape-oval { border-radius: 50% / 40%; }
.shape-blob { border-radius: 38% 62% 63% 37% / 34% 42% 58% 66%; }
.shape-leaf { border-radius: 52% 48% 50% 50% / 34% 62% 38% 66%; }
.landscape { border-radius: 120px 120px 30px 30px; }

.hero-main-image {
  width: min(100%, 450px);
  height: 520px;
  right: 18px;
  top: 10px;
}

.hero-small-image {
  width: 230px;
  height: 230px;
  left: 10px;
  bottom: 100px;
  border: 10px solid rgba(255,255,255,.95);
}

.card-soft {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(82, 112, 145, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: var(--card-shadow);
}

.hero-badge {
  position: absolute;
  left: 0;
  top: 48px;
  width: min(310px, 72%);
  padding: 22px 22px 18px;
  border-radius: 24px;
}

.hero-badge strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.soft-outline {
  border: 12px solid rgba(255,255,255,.94);
}

.float-a { transform: rotate(-2deg); }
.float-b { transform: rotate(3deg); }

.intro-strip { padding: 16px 0 20px; }

.intro-grid,
.service-grid,
.promise-grid,
.gallery-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

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

.info-card,
.service-card,
.promise-card,
.contact-card,
.gallery-note,
.contact-panel {
  padding: 24px;
  border-radius: 28px;
}

.highlight-card,
.service-card,
.promise-card,
.contact-card,
.gallery-note,
.contact-panel {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(82, 112, 145, 0.08);
  box-shadow: var(--card-shadow);
}

.info-card h3,
.service-card h3,
.promise-card h4,
.gallery-note h3,
.contact-panel h3,
.contact-card strong {
  margin: 0 0 10px;
  color: var(--heading);
}

.section { padding: 70px 0; }

.soft-bg {
  background: linear-gradient(180deg, rgba(244, 252, 250, 0.6), rgba(255, 255, 255, 0));
}

.soft-accent {
  background: linear-gradient(180deg, rgba(255, 243, 237, 0.5), rgba(255,255,255,0));
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.section h2,
.feature-band h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  color: var(--heading);
  margin: 0 0 18px;
}

.center { text-align: center; }

.narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.tick-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.tick-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text-soft);
  line-height: 1.6;
}

.tick-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(191, 231, 209, .8);
  color: #1b6a4c;
  font-weight: 700;
}

.shape-gallery {
  position: relative;
  min-height: 470px;
}

.about-gallery .shape-oval {
  width: 320px;
  height: 360px;
  left: 40px;
  top: 10px;
}

.about-gallery .shape-blob {
  width: 260px;
  height: 250px;
  right: 10px;
  bottom: 20px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.service-card { min-height: 180px; }

.feature-band {
  padding-top: 30px;
  padding-bottom: 30px;
}

.feature-band-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(198, 236, 244, 0.5), rgba(255,255,255,0.7), rgba(255, 228, 215, .55));
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(82,112,145,0.08);
}

.approach-gallery .shape-leaf {
  width: 330px;
  height: 380px;
  left: 0;
  top: 10px;
}

.approach-gallery .shape-arch {
  width: 280px;
  height: 240px;
  right: 10px;
  bottom: 18px;
}

.promise-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 26px;
}

.gallery-grid {
  grid-template-columns: 280px 1fr 320px;
  align-items: center;
  margin-top: 30px;
}

.gallery-grid .shape-circle {
  width: 260px;
  height: 260px;
}

.gallery-grid .shape-arch {
  width: 100%;
  height: 360px;
  position: relative;
}

.gallery-grid .image-card {
  position: relative;
}

.contact-grid {
  grid-template-columns: 1.15fr .85fr;
  align-items: start;
}

.contact-card-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-card span {
  color: var(--text-soft);
}

.contact-panel {
  text-align: center;
  padding: 34px 26px;
}

.contact-logo,
.footer-logo {
  width: min(100%, 270px);
  margin: 0 auto 16px;
}

.site-footer { padding: 26px 0 38px; }

.footer-wrap {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--text-soft);
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .feature-band-wrap,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-visuals { min-height: 720px; }

  .hero-main-image {
    right: 50%;
    transform: translateX(50%) rotate(-2deg);
  }

  .hero-small-image {
    left: 6%;
    bottom: 120px;
  }

  .hero-badge {
    left: auto;
    right: 6%;
    top: 26px;
  }

  .service-grid,
  .intro-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1180px); }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 12px;
    left: 12px;
    flex-direction: column;
    padding: 18px;
    background: rgba(255,255,255,.96);
    border-radius: 22px;
    box-shadow: var(--card-shadow);
  }

  .site-nav.open { display: flex; }

  .nav-wrap {
    padding: 4px 0;
    min-height: 68px;
  }

  .brand-logo {
    height: 110px;
    margin: -10px 0;
  }

  .hero { padding-top: 38px; }

  .hero-branding { max-width: 90%; }

  .hero-visuals { min-height: 540px; }

  .hero-main-image {
    width: 78vw;
    height: 420px;
    top: 24px;
    right: 50%;
    transform: translateX(50%) rotate(-2deg);
  }

  .hero-small-image {
    width: 150px;
    height: 150px;
    left: 2%;
    bottom: 110px;
  }

  .hero-badge {
    width: 70%;
    right: 3%;
    top: 0;
    padding: 18px;
  }

  .intro-grid,
  .service-grid,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .shape-gallery { min-height: 400px; }

  .about-gallery .shape-oval {
    width: 220px;
    height: 260px;
    left: 0;
  }

  .about-gallery .shape-blob {
    width: 190px;
    height: 180px;
    right: 0;
  }

  .approach-gallery .shape-leaf {
    width: 230px;
    height: 270px;
  }

  .approach-gallery .shape-arch {
    width: 180px;
    height: 180px;
  }

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

  .gallery-grid .shape-circle,
  .gallery-grid .shape-arch {
    width: 100%;
  }

  .gallery-grid .shape-circle {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .gallery-grid .shape-arch {
    height: 280px;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.service-list {
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--text-soft);
  line-height: 1.7;
}

.service-list li + li { margin-top: 6px; }

.gallery-grid-simple {
  grid-template-columns: 280px 1fr;
  justify-content: center;
}

@media (max-width: 1024px) {
  .gallery-grid-simple {
    grid-template-columns: 1fr;
  }
}
