:root {
  /* Foundation */
  --ink: #0a1929;
  --ink-soft: #475569;
  --cream: #fafbfc;          /* paper white background */
  --cream-deep: #f1f5f9;     /* subtle slate panels */

  /* Water palette — primary brand */
  --mist: #e0f2fe;           /* light sky tint */
  --water: #0284c7;          /* sky-600 — primary brand blue */
  --water-bright: #0ea5e9;   /* sky-500 — hover/highlight */
  --water-deep: #075985;     /* sky-800 — depth */
  --shine: #06b6d4;          /* cyan-500 — sparkle accent */

  /* Functional */
  --star: #f59e0b;           /* amber for star ratings only */
  --rush: #f97316;           /* orange-500 — rush fee */
  --leaf: #10b981;           /* emerald-500 — success */

  --line: rgba(10, 25, 41, 0.1);
  --line-strong: rgba(10, 25, 41, 0.18);
  --shadow-sm: 0 4px 12px -4px rgba(2, 132, 199, 0.12);
  --shadow: 0 24px 60px -20px rgba(2, 132, 199, 0.22);
  --shadow-lg: 0 40px 80px -30px rgba(2, 132, 199, 0.3);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}

.italic { font-style: italic; font-variation-settings: 'opsz' 144; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
a { color: inherit; }

/* ================== NAV ================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(250, 251, 252, 0.85);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}
nav.scrolled {
  box-shadow: 0 4px 24px -12px rgba(2, 132, 199, 0.18);
  background: rgba(250, 251, 252, 0.95);
}
nav .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Fraunces', serif;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-image: url('logo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 2px 12px -2px rgba(2, 132, 199, 0.3);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.logo-name .italic { color: var(--water); }
.logo-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--water); }
.nav-links a.active { color: var(--water); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 2px;
  background: var(--water);
  border-radius: 1px;
}
.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 999px;
  transition: all 0.25s;
  box-shadow: 0 4px 16px -4px rgba(10, 25, 41, 0.3);
}
.nav-cta:hover {
  background: var(--water);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -6px rgba(2, 132, 199, 0.4);
}
.nav-cta::after { display: none !important; }
.menu-toggle {
  display: none; background: none; border: none;
  font-size: 24px; cursor: pointer; color: var(--ink);
}

/* ================== BUTTONS ================== */
.btn {
  padding: 18px 32px;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(180deg, var(--ink) 0%, #061829 100%);
  color: var(--cream);
  box-shadow: 0 8px 24px -8px rgba(10, 25, 41, 0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--water) 0%, var(--water-deep) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(2, 132, 199, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn:disabled:hover { transform: none; }

/* ================== HERO ================== */
.hero { padding: 160px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--water); margin-bottom: 32px;
}
.eyebrow::before { content: ''; width: 32px; height: 1.5px; background: var(--water); }
.hero h1 {
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95;
  margin-bottom: 28px;
  font-weight: 350;
}
.hero h1 .italic { color: var(--water); font-weight: 300; }
.hero-sub { font-size: 19px; color: var(--ink-soft); max-width: 520px; margin-bottom: 40px; line-height: 1.6; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* Hero logo stage */
.hero-logo-stage {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero-logo-stage::before {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(224, 242, 254, 0.6) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 0;
  animation: pulse 6s ease-in-out infinite;
}
.hero-logo-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px dashed rgba(2, 132, 199, 0.2);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-logo {
  position: relative;
  width: 78%;
  height: 78%;
  background-image: url('logo.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(2, 132, 199, 0.4));
  animation: gentleFloat 6s ease-in-out infinite;
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}
.hero-water-drops { position: absolute; inset: 0; overflow: hidden; border-radius: 50%; z-index: 1; }
.drop {
  position: absolute;
  width: 3px;
  height: 14px;
  background: linear-gradient(to bottom, transparent, rgba(14, 165, 233, 0.7));
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  transform: translateY(-100vh);
  animation: drop 3s linear infinite;
}
@keyframes drop { to { transform: translateY(120vh); } }

.badge-floating {
  position: absolute;
  background: var(--cream);
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 32px -8px rgba(2, 132, 199, 0.25), 0 0 0 1px var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  z-index: 3;
}
.badge-tl { top: 8%; left: -8%; animation: float 4s ease-in-out infinite; }
.badge-br { bottom: 8%; right: -8%; animation: float 4s ease-in-out infinite 2s; }
.badge-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 600;
}
.badge-tl .badge-icon { background: var(--leaf); color: white; }
.badge-br .badge-icon { background: var(--star); color: white; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ================== PAGE HERO ================== */
.page-hero { padding: 160px 0 80px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(48px, 6vw, 84px); margin-bottom: 24px; font-weight: 350; max-width: 900px; }
.page-hero h1 .italic { color: var(--water); }
.page-hero p { font-size: 19px; color: var(--ink-soft); max-width: 640px; line-height: 1.6; }

/* ================== TRUST BAR ================== */
.trust { padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-deep); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: center; }
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: 0.04em; color: var(--ink-soft);
  font-weight: 500;
}
.trust-item svg { flex-shrink: 0; color: var(--water); }

/* ================== SECTIONS ================== */
section { padding: 120px 0; }
.section-header { margin-bottom: 80px; max-width: 720px; }
.section-header h2 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 24px; font-weight: 350; }
.section-header h2 .italic { color: var(--water); }
.section-header p { font-size: 18px; color: var(--ink-soft); line-height: 1.6; }

/* ================== SERVICES ================== */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.service-card {
  background: white;
  border-radius: 16px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  border: 1px solid var(--line);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--water), var(--shine));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card.dark {
  background: linear-gradient(135deg, var(--ink) 0%, #061a2c 100%);
  color: var(--cream);
  border-color: transparent;
}
.service-card.dark::before {
  background: linear-gradient(90deg, var(--shine), var(--water-bright));
}
.service-card.dark h3, .service-card.dark .service-num { color: var(--cream); }
.service-card.dark .service-list li { border-color: rgba(255, 255, 255, 0.12); }
.service-num {
  font-family: 'Fraunces', serif; font-size: 14px; font-weight: 500;
  letter-spacing: 0.1em; color: var(--water); margin-bottom: 32px; display: block;
}
.service-card.dark .service-num { color: var(--shine); }
.service-card h3 { font-size: 42px; margin-bottom: 24px; font-weight: 350; }
.service-card h3 .italic { color: var(--water); }
.service-card.dark h3 .italic { color: var(--shine); }
.service-desc { font-size: 16px; line-height: 1.7; margin-bottom: 32px; opacity: 0.85; }
.service-list { list-style: none; }
.service-list li {
  padding: 16px 0; border-top: 1px solid var(--line);
  font-size: 15px; display: flex; align-items: center; gap: 12px;
}
.service-list li::before { content: '◆'; color: var(--shine); font-size: 12px; }

.service-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start; padding: 80px 0; border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse > div:first-child { order: 2; }
.service-detail-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--mist) 0%, var(--water) 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-detail-visual.dark { background: linear-gradient(135deg, var(--water-deep) 0%, var(--ink) 100%); }
.service-detail-visual.green { background: linear-gradient(135deg, var(--leaf) 0%, #047857 100%); }
.service-detail-visual::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.25) 0%, transparent 50%);
}
.service-detail h3 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 24px; font-weight: 350; }
.service-detail h3 .italic { color: var(--water); }
.service-detail p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 16px; }
.service-detail-list { margin-top: 24px; list-style: none; }
.service-detail-list li {
  padding: 14px 0; border-top: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 12px; font-size: 15px;
}
.service-detail-list li::before { content: '✓'; color: var(--shine); font-weight: 700; }

/* ================== PROCESS ================== */
.process {
  background: linear-gradient(135deg, var(--ink) 0%, #061829 50%, var(--water-deep) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.process .container { position: relative; z-index: 1; }
.process h2, .process .section-header p { color: var(--cream); }
.process h2 .italic { color: var(--shine); }
.process .section-header p { opacity: 0.75; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.process-step {
  padding: 48px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s;
}
.process-step:hover { background: rgba(14, 165, 233, 0.06); }
.process-step:last-child { border-right: none; }
.step-num {
  font-family: 'Fraunces', serif; font-size: 72px; font-weight: 300;
  color: var(--shine); line-height: 1; margin-bottom: 24px;
  font-variation-settings: 'opsz' 144;
}
.process-step h4 { font-size: 24px; color: var(--cream); margin-bottom: 16px; font-weight: 400; }
.process-step p { color: rgba(255, 255, 255, 0.7); font-size: 14px; line-height: 1.6; }

/* ================== AREAS ================== */
.areas { background: linear-gradient(180deg, var(--mist) 0%, #cfe7f5 100%); }
.areas-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.areas h2 .italic { color: var(--water-deep); }
.areas-list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: white; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow);
}
.area-item {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px; font-weight: 500; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s;
}
.area-item:hover { background: var(--mist); color: var(--water-deep); }
.area-item:nth-child(3n) { border-right: none; }
.area-item::before {
  content: ''; width: 6px; height: 6px;
  background: var(--shine); border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}
.areas-note { margin-top: 32px; font-size: 14px; color: var(--ink-soft); font-style: italic; }

/* ================== TESTIMONIALS ================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stars { color: var(--star); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-quote {
  font-family: 'Fraunces', serif; font-size: 19px; font-weight: 350;
  line-height: 1.5; margin-bottom: 24px; color: var(--ink);
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--water), var(--water-deep));
  color: white;
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 500;
}
.author-name { font-size: 14px; font-weight: 600; }
.author-loc { font-size: 12px; color: var(--ink-soft); }

/* ================== CTA BAND ================== */
.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, var(--water-deep) 100%);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'SHINE';
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 380px; font-weight: 300;
  color: rgba(14, 165, 233, 0.08); line-height: 1;
  pointer-events: none; font-variation-settings: 'opsz' 144;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band-content { position: relative; z-index: 1; max-width: 720px; }
.cta-band h2 { color: var(--cream); font-size: clamp(40px, 5vw, 64px); font-weight: 350; margin-bottom: 24px; }
.cta-band h2 .italic { color: var(--shine); }
.cta-band p { color: rgba(255, 255, 255, 0.8); margin-bottom: 32px; font-size: 18px; }
.cta-band .btn-primary {
  background: linear-gradient(180deg, white 0%, #f0f9ff 100%);
  color: var(--ink);
  box-shadow: 0 8px 24px -4px rgba(14, 165, 233, 0.4);
}
.cta-band .btn-primary:hover {
  background: linear-gradient(180deg, var(--shine) 0%, var(--water-bright) 100%);
  color: white;
}
.cta-band .eyebrow { color: var(--shine) !important; }
.cta-band .eyebrow::before { background: var(--shine); }

/* ================== FORMS ================== */
.form-page { padding: 60px 0 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.form-info h2 { font-size: clamp(36px, 4vw, 52px); margin-bottom: 20px; font-weight: 350; }
.form-info h2 .italic { color: var(--water); }
.form-info > p { color: var(--ink-soft); margin-bottom: 32px; line-height: 1.7; }
.info-box {
  background: white;
  padding: 28px;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.info-box:hover { border-color: var(--water); box-shadow: var(--shadow-sm); }
.info-box h4 {
  font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--water);
  margin-bottom: 12px;
}
.info-box p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.info-box ul { list-style: none; margin-top: 12px; }
.info-box ul li { padding: 8px 0; font-size: 14px; display: flex; gap: 10px; }
.info-box ul li::before { content: '◆'; color: var(--shine); }

.form {
  background: white;
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-section + .form-section {
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.form-section-title {
  font-family: 'Fraunces', serif; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--water); margin-bottom: 20px; font-weight: 600;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 8px;
}
.form-group label .required { color: var(--shine); }
.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--line);
  background: var(--cream-deep);
  border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 15px; color: var(--ink);
  transition: all 0.2s;
}
.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--water);
  background: white;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group small { display: block; margin-top: 6px; font-size: 12px; color: var(--ink-soft); }
.form button[type="submit"] {
  width: 100%; padding: 18px;
  background: linear-gradient(180deg, var(--ink) 0%, #061829 100%);
  color: var(--cream);
  border: none; border-radius: 999px;
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.25s; margin-top: 24px;
  box-shadow: 0 8px 24px -8px rgba(10, 25, 41, 0.5);
}
.form button[type="submit"]:hover {
  background: linear-gradient(180deg, var(--water) 0%, var(--water-deep) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(2, 132, 199, 0.5);
}
.form-success {
  background: linear-gradient(135deg, var(--leaf) 0%, #059669 100%);
  color: white;
  padding: 32px; border-radius: 12px; margin-bottom: 16px;
  display: none; text-align: center;
}
.form-success.show { display: block; }
.form-success h3 { color: white; font-size: 24px; margin-bottom: 12px; }

.service-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.service-pick label {
  cursor: pointer;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s;
  background: white;
  display: block;
  text-transform: none; letter-spacing: 0;
}
.service-pick label:hover {
  border-color: var(--water);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.service-pick input[type="radio"] { display: none; }
.service-pick label:has(input:checked) {
  border-color: var(--water);
  background: linear-gradient(135deg, var(--ink) 0%, var(--water-deep) 100%);
  color: var(--cream);
  box-shadow: var(--shadow);
}
.service-pick label:has(input:checked) .pick-price { color: var(--shine); }
.pick-title { font-family: 'Fraunces', serif; font-size: 20px; margin-bottom: 6px; font-weight: 500; }
.pick-desc { font-size: 13px; opacity: 0.8; margin-bottom: 12px; line-height: 1.5; }
.pick-price { font-size: 13px; font-weight: 700; color: var(--water); letter-spacing: 0.05em; }

/* ================== CALENDAR ================== */
.calendar { background: white; border: 1px solid var(--line); border-radius: 12px; padding: 24px; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cal-month { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; }
.cal-nav {
  background: var(--cream-deep); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; font-size: 18px;
  display: grid; place-items: center;
  transition: all 0.2s;
  color: var(--ink);
}
.cal-nav:hover { background: var(--water); color: white; }
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-nav:disabled:hover { background: var(--cream-deep); color: var(--ink); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day-name {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); text-align: center; padding: 8px 0;
}
.cal-day {
  aspect-ratio: 1;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  border: 1.5px solid transparent;
  position: relative;
}
.cal-day:not(.empty):not(.disabled):hover {
  background: var(--mist);
  border-color: var(--water);
  color: var(--water-deep);
}
.cal-day.empty { cursor: default; }
.cal-day.disabled {
  color: rgba(10, 25, 41, 0.25);
  cursor: not-allowed; text-decoration: line-through;
}
.cal-day.rush {
  background: rgba(249, 115, 22, 0.1);
  color: var(--rush);
  font-weight: 700;
}
.cal-day.rush::after {
  content: ''; position: absolute;
  bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--rush);
}
.cal-day.rush:not(.disabled):hover {
  background: rgba(249, 115, 22, 0.2);
  border-color: var(--rush);
  color: var(--rush);
}
.cal-day.selected.rush {
  background: var(--rush); color: white;
}
.cal-day.selected.rush::after { background: white; }
.cal-day.selected:not(.rush) {
  background: linear-gradient(135deg, var(--water), var(--water-deep));
  color: white;
  border-color: var(--water);
}
.cal-day.today { border-color: var(--water); font-weight: 700; }

.cal-legend {
  display: flex; gap: 20px; margin-top: 16px;
  font-size: 12px; color: var(--ink-soft); flex-wrap: wrap;
}
.cal-legend-item { display: flex; align-items: center; gap: 6px; }
.cal-legend-dot {
  width: 12px; height: 12px; border-radius: 4px;
  background: white; border: 1.5px solid var(--line);
}
.cal-legend-dot.rush {
  background: rgba(249, 115, 22, 0.2);
  border-color: var(--rush);
}
.cal-legend-dot.standard { background: var(--water); border-color: var(--water); }

.rush-notice {
  margin-top: 16px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(249, 115, 22, 0.04));
  border: 1.5px solid var(--rush);
  border-radius: 12px;
  display: none;
  align-items: flex-start;
  gap: 14px;
}
.rush-notice.show { display: flex; }
.rush-notice-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--rush); color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700;
}
.rush-notice-text { font-size: 14px; color: var(--ink); line-height: 1.5; }
.rush-notice-text strong { color: var(--rush); }

.time-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.time-slot {
  padding: 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: white;
  cursor: pointer; text-align: center;
  transition: all 0.2s;
  font-size: 14px; font-weight: 500;
}
.time-slot:hover:not(.disabled) {
  border-color: var(--water);
  background: var(--mist);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.time-slot.selected {
  background: linear-gradient(135deg, var(--ink), var(--water-deep));
  color: white; border-color: var(--water);
}
.time-slot.disabled { opacity: 0.3; cursor: not-allowed; }
.time-slot small { display: block; font-size: 11px; margin-top: 4px; opacity: 0.7; font-weight: 400; }

.time-slot-empty {
  grid-column: 1 / -1; padding: 20px; text-align: center;
  color: var(--ink-soft); font-size: 14px; font-style: italic;
  background: var(--cream-deep); border-radius: 10px;
}

.hours-list { display: grid; gap: 8px; margin-top: 12px; }
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 14px; padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--ink); }
.hours-time { color: var(--ink-soft); }

/* ================== FOOTER ================== */
footer {
  background: linear-gradient(180deg, var(--cream-deep) 0%, #e2e8f0 100%);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-col h5 {
  font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--water); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; font-size: 14px; color: var(--ink); }
.footer-col a { color: var(--ink); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--water); }
.footer-tagline {
  font-family: 'Fraunces', serif; font-size: 22px; line-height: 1.4;
  margin-top: 16px; max-width: 320px; color: var(--ink-soft);
}
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--ink-soft);
  flex-wrap: wrap; gap: 12px;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 900px) {
  .hero-grid, .areas-grid, .form-grid, .service-detail { grid-template-columns: 1fr; gap: 48px; }
  .service-detail.reverse > div:first-child { order: 0; }
  .services-grid, .form-row, .service-pick, .time-slots { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-right: 1px solid rgba(255, 255, 255, 0.12); border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .process-step:nth-child(2n) { border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
  .area-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .area-item:nth-child(2n) { border-right: none; }
  section { padding: 80px 0; }
  .hero, .page-hero { padding: 120px 0 60px; }
  .container, .container-narrow { padding: 0 24px; }
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    background: white;
    flex-direction: column; padding: 32px; gap: 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-150%); transition: transform 0.3s;
    box-shadow: 0 8px 24px -8px rgba(2, 132, 199, 0.2);
  }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  .badge-tl, .badge-br { display: none; }
  .form { padding: 32px 24px; }
  .cta-band::before { font-size: 200px; right: -50px; }
  .service-card { padding: 40px 32px; }
  .logo-tagline { display: none; }
  .logo-img { width: 36px; height: 36px; }
}

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ================== PRICE BOOK ================== */
.price-book { padding: 120px 0; background: var(--cream); }
.price-book .section-header { margin-bottom: 56px; }
.price-book-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}
.price-cat h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--water-deep);
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1.5px solid var(--line);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.price-row:last-child { border-bottom: none; }
.price-row-name strong {
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  display: block;
}
.price-row-name span {
  font-size: 13px;
  color: var(--ink-soft);
  display: block;
  margin-top: 2px;
}
.price-row-rate {
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}
.price-row-rate .rate {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--water);
  font-weight: 500;
}
.price-row-rate .unit {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.price-disclaimer {
  margin-top: 56px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
}
.price-disclaimer a { color: var(--water); font-weight: 600; text-decoration: none; }
.price-disclaimer a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .price-book { padding: 80px 0; }
  .price-book-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ================== QUOTE CALCULATOR ================== */
.service-calculator {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  overflow: hidden;
}
.svc-loading {
  padding: 20px;
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
  font-style: italic;
}
.svc-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.svc-row:last-child { border-bottom: none; }
.svc-row-pick {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0;
}
.svc-row-pick input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
}
.svc-row-name {
  flex: 1;
  font-weight: 500;
}
.svc-row-rate {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: var(--water);
  white-space: nowrap;
}
.svc-row-rate em {
  font-style: normal;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: var(--ink-soft);
  margin-left: 4px;
}
.svc-row-dim {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px 14px 44px;
  background: var(--cream-deep);
  padding-top: 12px;
  margin-top: -4px;
  border-top: 1px dashed var(--line);
}
.svc-row-dim .svc-dim-input {
  width: 110px !important;
  padding: 8px 10px !important;
  font-size: 14px !important;
  border: 1px solid var(--line) !important;
  border-radius: 6px !important;
  background: white !important;
}
.svc-row-unit-label {
  font-size: 13px;
  color: var(--ink-soft);
}
.svc-row-subtotal {
  margin-left: auto;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}
.estimate-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 16px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--mist), var(--cream));
  border: 1.5px solid var(--water);
  border-radius: 10px;
}
.estimate-total span {
  font-size: 14px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.estimate-total strong {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  color: var(--water-deep);
  font-weight: 500;
}

@media (max-width: 600px) {
  .svc-row-pick { flex-wrap: wrap; }
  .svc-row-rate { flex-basis: 100%; padding-left: 28px; }
  .svc-row-dim { padding-left: 16px; flex-wrap: wrap; }
  .svc-row-subtotal { margin-left: auto; }
}

/* ================== BOOKING ESTIMATE SUMMARY ================== */
.booking-estimate {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 20px;
}
.be-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.be-line:last-child { border-bottom: none; }
.be-name {
  font-size: 15px;
  color: var(--ink);
  flex: 1;
}
.be-name small {
  font-size: 12px;
  color: var(--ink-soft);
}
.be-amount {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--ink);
  white-space: nowrap;
}
.be-total {
  border-top: 1.5px solid var(--line-strong);
  margin-top: 4px;
  padding-top: 16px;
}
.be-total .be-name strong, .be-total .be-amount strong {
  font-size: 18px;
  color: var(--water-deep);
}
.be-total .be-amount strong { font-size: 22px; }
