/* ===========================================================
   DafneWebDesign — shared stylesheet
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,600;1,700&display=swap');

:root{
  --navy: #0e1b2e;
  --navy-2: #14243d;
  --navy-soft: #1b2f4d;
  --cream: #f8f2e7;
  --cream-2: #f2ead9;
  --coral: #ff6f5e;
  --coral-dark: #ef5a48;
  --terracotta: #b85c3e;
  --blue: #4c6fe0;
  --ink: #16233d;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --white: #ffffff;
  --line: #e7ded0;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 40px -20px rgba(14,27,46,0.25);
  --container: 1160px;
}

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

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4{
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

p{ margin: 0; }

a{ color: inherit; text-decoration: none; }

img{ max-width: 100%; display: block; }

ul{ margin: 0; padding: 0; list-style: none; }



.accent-italic{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--coral);
}

.on-dark .accent-italic{ color: var(--coral); }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section{ padding: 88px 0; }
.section-tight{ padding: 56px 0; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn:hover{ transform: translateY(-1px); }

.btn-coral{ background: var(--coral); color: var(--white); }
.btn-coral:hover{ background: var(--coral-dark); }

.btn-dark{ background: var(--navy); color: var(--white); }
.btn-dark:hover{ background: #0a1524; }

.btn-white{ background: var(--white); color: var(--navy); }
.btn-white:hover{ background: #f1f1f1; }

.btn-outline-navy{ background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover{ background: var(--navy); color: var(--white); }

.btn-outline-white{ background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover{ background: rgba(255,255,255,0.1); }

.btn-sm{ padding: 10px 20px; font-size: 14px; }

.link-arrow{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--coral);
  font-size: 15px;
}

.link-play{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
}
.on-dark .link-play{ color: #cbd5e1; }

/* ---------- Nav ---------- */
.navbar{
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  background: var(--cream);
}
.navbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 10px 12px 10px 20px;
  box-shadow: var(--shadow-soft);
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  color: var(--ink);
}
.brand-mark{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: url("images/V2_logo_no_name.png") center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}
.navbar.on-dark .brand-mark{ background: url("images/V2_logo_no_name.png") center/cover no-repeat; color: var(--navy); }

.nav-links{
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a{
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
}
.nav-links a.active,
.nav-links a:hover{ color: var(--ink); }

.navbar.on-dark .navbar-inner{ background: var(--navy-soft); }
.navbar.on-dark .nav-links a{ color: #9fb0c9; }
.navbar.on-dark .nav-links a.active,
.navbar.on-dark .nav-links a:hover{ color: var(--white); }
.navbar.on-dark .brand{ color: var(--white); }

/* ---------- Badges / pills ---------- */
.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px 9px 14px;
  border-radius: var(--radius-pill);
}
.badge-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3fbf6a;
  flex-shrink: 0;
}
.eyebrow{
  display: block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;

}
.eyebrow-onlight{ color: var(--coral); }
.eyebrow-onnavy{ color: #7fa0ff; }

.tag{
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}
.tag-onnavy{ background: rgba(255,255,255,0.12); color: #dbe4f3; }
.tag-oncream{ background: var(--cream-2); color: var(--ink); }

/* ---------- Hero (dark, with blob) ---------- */
.hero{
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 72px 48px;
  color: #cbd5e1;
}
.hero .blob{
  position: absolute;
  background: var(--coral);
  border-radius: 50%;
  z-index: 0;
}
.hero-content{ position: relative; z-index: 1; }

.hero-light{
  position: relative;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 72px 48px;
  
}
.hero-simple{
  text-align: center;
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}
.hero-simple h1{
  color: var(--navy);
  font-size: clamp(32px, 4.4vw, 46px);
  max-width: 720px;
  margin: 0 auto 20px;
  z-index: 1;
  position: relative;
}
.hero-simple p{
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
.hero-simple .blob{
  width: 460px;
  height: 300px;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.9;
  z-index: 0;
  position: absolute;
}
.hero-simple .eyebrow{ position: relative; z-index: 1; text-align: center; color: rgba(22,35,61,0.55); }

/* Home hero specific */
.hero-home{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 96px;
}
.hero-home .blob{
  width: 420px;
  height: 420px;
  top: -140px;
  left: -140px;
}
.hero-home h1{
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 52px);
  margin: 22px 0 22px;
}
.hero-home p.lead{
  color: #a9b8cf;
  font-size: 17px;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-home .hero-actions{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-media{
  position: relative;
}
.hero-photo-card{
  background: url("images/home_background.jpg") center/cover no-repeat;
  border-radius: var(--radius-md);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  width: auto;
  height: auto;
}
.hero-photo-card .icon-ph{
  width: 40px; height: 40px;
  border: 2px solid #b7ac93;
  border-radius: 8px;
  opacity: 0.7;
}
.intro-bubble{
  position: absolute;
  bottom: -28px;
  left: -20px;
  background: var(--white);
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  max-width: 260px;
}
.intro-bubble .avatar{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.intro-bubble .name{ font-weight: 700; font-size: 14px; color: var(--ink); }
.intro-bubble .role{ font-size: 13px; color: var(--muted); }

/* Client marquee strip */
.strip{
  background: var(--navy);
  border-radius: var(--radius-lg);
  margin-top: -56px;
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.strip span{
  color: #b9c6dc;
  font-weight: 600;
  font-size: 15px;
}
.strip .dot{ color: var(--coral); font-size: 14px; }

/* ---------- Section headers ---------- */
.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.section-head h2{ font-size: clamp(26px, 3.2vw, 34px); max-width: 560px; }
.section-head-center{ text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head-center h2{ font-size: clamp(24px, 3vw, 32px); }

/* ---------- Bento grid (home services teaser + services page) ---------- */
.bento{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: min-content;
  gap: 22px;
}
.card{
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.card-navy{ background: var(--navy); color: #cbd5e1; grid-column: span 2; grid-row: span 2; }
.card-navy .blob{ position: absolute; background: var(--coral); border-radius: 50%; width: 220px; height: 220px; top: -90px; right: -60px; z-index: 0; }
.card-navy .card-inner{ position: relative; z-index: 1; }
.card-navy h3{ color: var(--white); font-size: 28px; margin: 12px 0 14px; }
.card-navy p{ color: #a9b8cf; font-size: 15.5px; max-width: 420px; }

.card-white{ background: var(--white); box-shadow: var(--shadow-soft); }
.card-white .stat{ font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 30px; color: var(--blue); }
.card-white h3{ font-size: 19px; margin: 6px 0 8px; }
.card-white p{ color: var(--muted); font-size: 14.5px; }

.card-terracotta{ background: var(--terracotta); color: #f6e9e0; }
.card-terracotta .eyebrow{ color: rgba(255,255,255,0.75); }
.card-terracotta h3{ color: var(--white); font-size: 20px; margin: 4px 0 8px; }
.card-terracotta p{ color: #f0d9cc; font-size: 14.5px; }

.card-coral{ background: var(--coral); color: var(--white); display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.card-coral h3{ color: var(--white); font-size: 20px; }

.card-photo{
  background: url("images/wireframes.jpg") center/cover no-repeat;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-weight: 500;
  font-size: 14.5px;
  min-height: 220px;
  text-align: center;
  padding: 20px;
}
.icon-ph-lg{
  width: auto; height: auto;
  border-radius: 8px;
  opacity: 0.7;
  background: url("images/wireframes.jpg") center/cover no-repeat;
}

.project-content{
  background: url("images/Bertola/Bertola_1.png")
}



.card-1on1{ background: var(--white); box-shadow: var(--shadow-soft); }
.card-1on1 h3{ font-size: 26px; margin-bottom: 8px; }
.card-1on1 p{ color: var(--muted); font-size: 14.5px; }

.card-cta-mini{ background: var(--coral); color: var(--white); display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.card-cta-mini h3{ color: var(--white); font-size: 20px; }

/* pill icon square */
.icon-square{
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.icon-square.blue{ background: var(--blue); }
.icon-square.terracotta-light{ background: rgba(255,255,255,0.25); }
.icon-square.coral{background: var(--coral); }
.icon-square.terracotta{background: var(--terracotta); }

/* ---------- About / real person section ---------- */
.about-split{
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.about-split .photo{
  background: #24314a;
  
  border-radius: var(--radius-md);
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  color: #7f92ad;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  background: url("images/dafne-lazaro.jpg") center/cover no-repeat;
}
.about-split h2{ color: var(--white); font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 18px; }
.about-split p{ color: #a9b8cf; font-size: 16px; max-width: 520px; margin-bottom: 28px; }
.about-actions{ display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.about-actions .handle{ color: #7fa0ff; font-weight: 600; }

/* ---------- Testimonial ---------- */
.testimonial{ text-align: center; max-width: 780px; margin: 0 auto; }
.stars{ color: var(--coral); font-size: 20px; letter-spacing: 4px; margin-bottom: 24px; }
.testimonial blockquote{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--ink);
  margin: 0 0 28px;
  line-height: 1.35;
}
.testimonial-author{
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.testimonial-author .avatar{
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-author .name{ font-weight: 700; font-size: 15px; text-align: left; }
.testimonial-author .biz{ font-size: 13.5px; color: var(--muted); text-align: left; }

/* ---------- CTA banner ---------- */
.cta-banner{
  position: relative;
  background: #0a0f18;
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
  overflow: hidden;
}
.cta-banner .blob{
  position: absolute;
  background: var(--coral);
  border-radius: 50%;
  width: 340px; height: 200px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0.95;
  z-index: 0;
}
.cta-banner-content{ position: relative; z-index: 1; }
.cta-banner h2{
  color: var(--white);
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 14px;
}
.cta-banner p{
  color: #b6c0cf;
  font-size: 16px;
  margin-bottom: 32px;
}
.cta-banner .cta-actions{
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 34px 0;
}
.site-footer .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-left{ display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.footer-{ display: flex; align-items: center; gap: 10px; font-weight: 800; font-family: 'Poppins', sans-serif; }
.footer-links{ display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a{ font-size: 14.5px; color: var(--muted); font-weight: 500; }
.footer-links a:hover{ color: var(--ink); }
.footer-copy{ font-size: 13.5px; color: var(--muted-light); }
.footer-right{ display: flex; align-items: center; gap: 20px; }

.site-footer.on-dark{ border-top: 1px solid rgba(255,255,255,0.08); }
.site-footer.on-dark .footer-links a{ color: #94a3b8; }
.site-footer.on-dark .footer-links a:hover{ color: var(--white); }
.site-footer.on-dark .footer-copy{ color: #64708a; }
.site-footer.on-dark .footer-brand{ color: var(--white); }
.site-footer.on-dark .footer-brand .brand-mark{ background: url("images/V2_logo_no_name.png") center/cover no-repeat; color: var(--navy); }

/* ================= SERVICES PAGE ================= */
.services-grid{
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 22px;
}
.services-grid .card-navy{ grid-column: auto; grid-row: auto; }
.services-grid .card-photo{ min-height: 100%; }
.services-side{
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
}

.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.process-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
}
.process-num{
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--coral);
  margin-bottom: 16px;
}
.process-card h3{ font-size: 18px; margin-bottom: 8px; }
.process-card p{ color: var(--muted); font-size: 14.5px; }

/* ================= PRICING PAGE ================= */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.price-card.featured{
  background: var(--navy);
  color: #cbd5e1;
  position: relative;
  overflow: hidden;
  transform: translateY(-14px);
}
.price-card.featured .blob{
  position: absolute;
  background: var(--coral);
  width: 220px; height: 220px;
  border-radius: 50%;
  top: -100px; right: -60px;
  z-index: 0;
}
.price-card.featured .price-inner{ position: relative; z-index: 1; }
.price-card .most-popular{
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.price-card h3{ font-size: 24px; margin-bottom: 8px; }
.price-card.featured h3{ color: var(--white); }
.price-card .plan-desc{ color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.price-card.featured .plan-desc{ color: #a9b8cf; }
.price-amount{
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 34px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
}
.price-amount .cadence{ font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px; color: var(--muted); }
.price-card.featured .price-amount .cadence{ color: #a9b8cf; }
.price-card hr{ border: none; border-top: 1px solid var(--line); margin-bottom: 22px; }
.price-card.featured hr{ border-top: 1px solid rgba(255,255,255,0.15); }
.price-features{ display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.price-features li{ display: flex; gap: 10px; font-size: 14.5px; align-items: flex-start; }
.price-features li::before{ content: "✓"; color: var(--coral); font-weight: 700; flex-shrink: 0; }
.price-card .btn{ width: 100%; }
.pricing-note{
  text-align: center;
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 38px;
}

.faq-list{ display: flex; flex-direction: column; gap: 16px; max-width: 760px; margin: 0 auto; }
.faq-item{
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 26px 30px;
  box-shadow: var(--shadow-soft);
}
.faq-item h3{ font-size: 17px; margin-bottom: 8px; }
.faq-item p{ color: var(--muted); font-size: 15px; }

/* ================= WORK PAGE ================= */
.featured-project{
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.featured-project .fp-content{ padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.featured-project h3{ font-size: clamp(24px, 3vw, 32px); margin: 10px 0 16px; }
.featured-project p{ color: var(--muted); font-size: 15.5px; margin-bottom: 22px; max-width: 420px; }
.featured-project .tags{ display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.fp-media{
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.fp-media-inner{
  background: url("images/Lazaro_Landscaping/LL_homepage.png") center/cover no-repeat;
  border-radius: var(--radius-md);
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  color: #8fa0ba;
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

.work-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}
.work-card{
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.work-card .thumb{
  background: #eee6d8;
  aspect-ratio: 16/11;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 14px;
  gap: 10px;
  flex-direction: column;
}
.work-card .meta{ padding: 20px 22px; }
.work-card h4{ font-size: 16px; margin-bottom: 4px; }
.work-card .meta p{ color: var(--muted); font-size: 13.5px; }

.work-cta-card{
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}
.work-cta-card .blob{
  position: absolute;
  background: var(--coral);
  width: 200px; height: 200px;
  border-radius: 50%;
  top: -80px; right: -60px;
}
.work-cta-card h3{ color: var(--white); font-size: 20px; position: relative; z-index: 1; }
.work-cta-card .btn{ position: relative; z-index: 1; }

/* ================= CONTACT PAGE ================= */
body.page-contact{ background: var(--navy); }
.contact-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h1{
  color: var(--white);
  font-size: clamp(30px, 4vw, 42px);
  margin: 16px 0 18px;
}
.contact-info > p.lead{ color: #a9b8cf; font-size: 16px; max-width: 440px; margin-bottom: 34px; }
.contact-eyebrow{
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  color: #cdd8ea;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
}
.contact-methods{ display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.contact-method{ display: flex; align-items: center; gap: 16px; }
.method-icon{ width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; }
.method-icon.coral{ background: var(--coral); }
.method-icon.blue{ background: var(--blue); }
.method-icon.terracotta{ background: var(--terracotta); }
.contact-method .label{ font-size: 13px; color: #93a3bd; margin-bottom: 2px; }
.contact-method .value{ font-weight: 700; color: var(--white); font-size: 16px; }

.contact-icon {
    color: white;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    margin-right: 10px;
}

.reassurance-card{
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.reassurance-card .wave{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.reassurance-card h4{ color: var(--white); font-size: 15px; margin-bottom: 4px; }
.reassurance-card p{ color: #93a3bd; font-size: 14px; }

.contact-form-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.contact-form-card h2{ font-size: 22px; margin-bottom: 24px; }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field{ margin-bottom: 18px; }
.field label{ display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.field input,
.field textarea{
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  resize: vertical;
}
.field textarea{ min-height: 110px; }
.field input:focus,
.field textarea:focus{ outline: 2px solid var(--coral); outline-offset: 1px; }
.contact-form-card .btn{ width: 100%; margin-top: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .hero-home{ grid-template-columns: 1fr; }
  .hero-home .hero-media{ order: -1; max-width: 340px; margin: 0 auto 24px; }
  .bento{ grid-template-columns: 1fr; }
  .card-navy{ grid-column: auto; grid-row: auto; }
  .about-split{ grid-template-columns: 1fr; }
  .about-split .photo{ max-width: 260px; margin: 0 auto; }
  .services-grid{ grid-template-columns: 1fr; }
  .process-grid{ grid-template-columns: repeat(2, 1fr); }
  .pricing-grid{ grid-template-columns: 1fr; }
  .price-card.featured{ transform: none; }
  .featured-project{ grid-template-columns: 1fr; }
  .work-grid{ grid-template-columns: 1fr; }
  .contact-wrap{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .strip{ margin-top: 0; }
  .nav-links{ display: none; }
}

@media screen and (max-width: 768px){
  .section{ padding: 56px 0; }
  .hero, .hero-simple, .cta-banner, .about-split{ padding: 40px 22px; }
  .contact-form-card{ padding: 28px; }
  .intro-bubble { display: none !important;}
}



