/* ====================================================================
   Loolaah's Dog Grooming — Site Styles
   Brand: airy editorial, soft pink + sage, elegant serif + clean sans
   ==================================================================== */

:root {
  --pink: #E5398F;
  --pink-deep: #C82777;
  --pink-soft: #F8D5E5;
  --pink-wash: #FBEEF4;
  --sage: #BFCDA5;
  --sage-soft: #DEE5CC;
  --sage-wash: #EEF1E5;
  --cream: #FDF9F5;
  --paper: #FFFFFF;
  --ink: #1a1a1a;
  --ink-soft: #4a4644;
  --muted: #8a8380;
  --line: #ece6e0;

  --serif: "Cormorant Garamond", "Garamond", Georgia, serif;
  --sans: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;

  --measure: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--pink-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.15rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--pink-deep);
  font-weight: 500;
  margin: 0 0 1.4em;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--pink-deep);
}

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--pink-deep);
}

/* ====================== LAYOUT ====================== */

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

section { padding: clamp(60px, 9vw, 130px) 0; }

/* ====================== HEADER ====================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 249, 245, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand img {
  height: 42px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.brand-text { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--pink-deep); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--pink);
}

.nav-cta {
  display: inline-block;
  padding: 11px 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--pink-deep); color: white; transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: 0.3s; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px var(--gutter);
    gap: 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-cta { padding: 9px 18px; font-size: 0.8rem; }
}

/* ====================== BUTTONS ====================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary {
  background: var(--pink);
  color: white;
}
.btn-primary:hover {
  background: var(--pink-deep);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -16px rgba(229, 57, 143, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--pink-deep); color: white; }

.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ====================== HERO ====================== */

.hero {
  padding: clamp(50px, 7vw, 100px) 0 clamp(70px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--pink-wash) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero-copy h1 .ital {
  display: block;
  font-style: italic;
  color: var(--pink-deep);
  font-weight: 400;
}
.hero-copy .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 460px;
  margin-top: 24px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

.hero-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.hero-img-wrap::after {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid var(--pink);
  border-radius: 4px;
  z-index: 1;
}

.hero-badges {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero-badges .badge {
  text-align: left;
}
.hero-badges .badge .num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--pink-deep);
  font-style: italic;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-badges .badge .lbl {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img-wrap { aspect-ratio: 4/4; max-width: 480px; }
  .hero-badges { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ====================== SECTION HEAD ====================== */

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 80px);
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head p {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* ====================== FEATURE TILES ====================== */

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -30px rgba(26, 26, 26, 0.18);
}
.tile .tile-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pink-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--pink-deep);
}
.tile h3 { font-size: 1.4rem; margin-bottom: 10px; }
.tile p { font-size: 0.97rem; }

@media (max-width: 800px) {
  .tiles { grid-template-columns: 1fr; gap: 20px; }
}

/* ====================== ABOUT STRIP ====================== */

.about-strip {
  background: var(--sage-wash);
}
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.about-img-wrap .stamp {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 170px;
  height: 170px;
  background: var(--pink);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  box-shadow: 0 20px 40px -16px rgba(229, 57, 143, 0.5);
}
.about-img-wrap .stamp .top {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1;
}
.about-img-wrap .stamp .bot {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.9;
}
.about-copy .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1.4;
  margin: 28px 0;
  padding-left: 24px;
  border-left: 2px solid var(--pink);
}
.about-credentials {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-credentials li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink);
}
.about-credentials .dot {
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}
.about-credentials ul { padding: 0; margin: 0; }

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap .stamp { width: 130px; height: 130px; bottom: -20px; right: 10px; }
  .about-img-wrap .stamp .top { font-size: 1.2rem; }
  .about-credentials { grid-template-columns: 1fr; }
}

/* ====================== GALLERY ====================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery .g {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.gallery .g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery .g:hover img { transform: scale(1.05); }

.gallery .g1 { grid-column: span 4; aspect-ratio: 3/4; }
.gallery .g2 { grid-column: span 4; aspect-ratio: 3/4; margin-top: 50px; }
.gallery .g3 { grid-column: span 4; aspect-ratio: 3/4; }
.gallery .g4 { grid-column: span 6; aspect-ratio: 4/3; }
.gallery .g5 { grid-column: span 6; aspect-ratio: 4/3; }
.gallery .g6 { grid-column: span 4; aspect-ratio: 3/4; }
.gallery .g7 { grid-column: span 4; aspect-ratio: 3/4; margin-top: 50px; }
.gallery .g8 { grid-column: span 4; aspect-ratio: 3/4; }
.gallery .g9 { grid-column: span 12; aspect-ratio: 16/7; }

@media (max-width: 700px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .g { grid-column: span 1 !important; margin-top: 0 !important; aspect-ratio: 1 !important; }
}

/* ====================== PRICING ====================== */

.pricing-strip { background: var(--pink-wash); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 36px 36px 30px;
  border: 1px solid var(--line);
}
.price-card.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.price-card.featured h3, .price-card.featured .price-head { color: white; }
.price-card.featured .price-row { border-color: rgba(255,255,255,0.12); }
.price-card.featured .price-row .name { color: rgba(255,255,255,0.92); }
.price-card.featured .price-row .amt { color: var(--pink-soft); }
.price-card.featured .desc { color: rgba(255,255,255,0.7); }

.price-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  gap: 12px;
}
.price-card h3 { margin: 0; }
.price-card .badge-from {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-deep);
}
.price-card.featured .badge-from { color: var(--pink-soft); }
.price-card .desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.price-rows {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
  gap: 16px;
}
.price-row:last-child { border-bottom: 0; }
.price-row .name { font-size: 0.97rem; color: var(--ink); }
.price-row .amt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--pink-deep);
  white-space: nowrap;
}

.price-note {
  margin-top: 36px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 800px) {
  .price-grid { grid-template-columns: 1fr; }
}

/* ====================== FAQ ====================== */

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--ink);
  font-weight: 500;
  gap: 30px;
}
.faq-q:hover { color: var(--pink-deep); }
.faq-q .toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pink-wash);
  color: var(--pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
  font-family: var(--sans);
  font-weight: 300;
}
.faq-item[open] .faq-q .toggle { transform: rotate(45deg); background: var(--pink); color: white; }
.faq-a {
  padding: 0 0 30px;
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 720px;
}
.faq-a ul { padding-left: 20px; }
.faq-a li { margin: 6px 0; }

/* ====================== TESTIMONIAL ====================== */

.testimonials {
  background: var(--ink);
  color: var(--cream);
}
.testimonials .section-head h2 { color: white; }
.testimonials .section-head .eyebrow { color: var(--pink-soft); }
.testimonials .section-head .eyebrow::before { background: var(--pink-soft); }

.tcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
}
.tcard .stars {
  color: var(--pink);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.tcard blockquote {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: white;
}
.tcard .who {
  font-size: 0.88rem;
  color: var(--pink-soft);
  letter-spacing: 0.04em;
}
.tcard .who strong { color: white; font-weight: 500; }

@media (max-width: 800px) {
  .tcards { grid-template-columns: 1fr; }
}

/* ====================== TESTIMONIAL WITH PHOTO ====================== */

.tcard .who-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tcard .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--pink);
}
.tcard .avatar img { width: 100%; height: 100%; object-fit: cover; }
.tcard .date {
  font-size: 0.78rem;
  color: var(--pink-soft);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ====================== HOME PRICING STRIP ====================== */

.home-prices {
  background: var(--sage-wash);
  padding-top: 140px;
  padding-bottom: 130px;
}
.home-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.hp-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.hp-card h3 {
  font-size: 1.4rem;
  margin: 0 0 4px;
}
.hp-card .from {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--pink-deep);
  margin-bottom: 16px;
  display: block;
}
.hp-card .from .smol {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  font-family: var(--sans);
  margin-right: 6px;
}
.hp-card .blurb {
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.hp-card .sizes {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hp-card .sizes li {
  display: flex;
  justify-content: space-between;
}
.hp-card .sizes li strong { color: var(--ink); font-weight: 500; }

.home-price-extras {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 22px 28px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.home-price-extras .x {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 1rem;
}
.home-price-extras .x .lbl { color: var(--ink); }
.home-price-extras .x .v {
  font-family: var(--serif);
  font-style: italic;
  color: var(--pink-deep);
  font-size: 1.2rem;
}

@media (max-width: 800px) {
  .home-price-grid { grid-template-columns: 1fr; }
}

/* ====================== CTA STRIP ====================== */

.cta-strip {
  background: var(--pink);
  color: white;
  text-align: center;
  padding: clamp(60px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip h2 { color: white; max-width: 760px; margin: 0 auto 24px; }
.cta-strip p { color: rgba(255,255,255,0.92); max-width: 560px; margin: 0 auto 36px; font-size: 1.1rem; }
.cta-strip .btn-dark { background: var(--ink); }
.cta-strip .btn-dark:hover { background: white; color: var(--ink); }
.cta-strip .paws {
  position: absolute;
  font-size: 200px;
  opacity: 0.08;
  pointer-events: none;
  font-family: var(--serif);
  color: white;
}
.cta-strip .paws.l { top: -40px; left: -20px; }
.cta-strip .paws.r { bottom: -80px; right: -20px; }

/* ====================== FOOTER ====================== */

.site-footer {
  background: var(--ink);
  color: rgba(253, 249, 245, 0.75);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-grid h4 {
  color: white;
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.footer-grid a {
  color: rgba(253, 249, 245, 0.75);
  display: block;
  margin: 8px 0;
  font-size: 0.95rem;
}
.footer-grid a:hover { color: var(--pink-soft); }

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.footer-brand img {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.footer-brand .name, .footer-brand .sub { display: none; }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(253,249,245,0.85);
  max-width: 320px;
  line-height: 1.5;
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ====================== PAGE HEAD (sub-pages) ====================== */

.page-head {
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--pink-wash) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.page-head > * { position: relative; z-index: 1; }
.page-head h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}
.page-head h1 .ital { font-style: italic; color: var(--pink-deep); font-weight: 400; }
.page-head .crumbs {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 24px;
}
.page-head .crumbs a { color: var(--muted); }
.page-head .crumbs a:hover { color: var(--pink-deep); }

/* ====================== CONTACT ====================== */

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info { padding-right: 20px; }
.contact-info h2 { margin-bottom: 18px; }

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
  flex-shrink: 0;
}
.contact-row .label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-row .val { font-size: 1.1rem; color: var(--ink); }
.contact-row .val a { color: var(--ink); }
.contact-row .val a:hover { color: var(--pink-deep); }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
}
.form-card h3 { margin-bottom: 8px; }
.form-card .form-intro { color: var(--muted); margin-bottom: 28px; font-size: 0.97rem; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--pink);
  background: white;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field textarea { resize: vertical; min-height: 130px; }
.form-card button { margin-top: 8px; width: 100%; justify-content: center; }
.form-success {
  display: none;
  padding: 20px;
  background: var(--sage-wash);
  border-radius: 4px;
  color: var(--ink);
  margin-top: 16px;
  font-size: 0.97rem;
}
.form-success.show { display: block; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

.map-frame {
  margin-top: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--line);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ====================== ABOUT PAGE ====================== */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.story-grid img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
}
.story-grid.reverse .story-img { order: 2; }

.values {
  background: var(--sage-wash);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.value-card {
  text-align: left;
}
.value-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.value-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.value-card p { font-size: 0.97rem; }

@media (max-width: 800px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-grid.reverse .story-img { order: 0; }
  .values-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ====================== INFO BANNER ====================== */

.info-banner {
  background: var(--sage-wash);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 60px;
}
.info-banner .ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
  flex-shrink: 0;
}
.info-banner h3 { margin-bottom: 4px; font-size: 1.3rem; }
.info-banner p { margin: 0; font-size: 0.97rem; }

@media (max-width: 700px) {
  .info-banner { flex-direction: column; text-align: center; padding: 28px; }
}
