:root {
  --cream: #faf4ec;
  --cream-deep: #f0e7d8;
  --rose: #f4c6c2;
  --rose-deep: #e89b95;
  --sage: #a8b89c;
  --sage-deep: #7c8e6e;
  --ink: #2a2722;
  --ink-soft: #5a544b;
  --gold: #c89b4a;
  --shadow: rgba(42, 39, 34, 0.08);
  --shadow-strong: rgba(42, 39, 34, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(244, 198, 194, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(168, 184, 156, 0.2) 0%, transparent 45%);
  background-attachment: fixed;
}

/* Decorative paw pattern - desktop only to save mobile paint */
@media (min-width: 768px) {
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      radial-gradient(circle at 12% 18%, rgba(232, 155, 149, 0.06) 8px, transparent 9px),
      radial-gradient(circle at 88% 82%, rgba(124, 142, 110, 0.05) 6px, transparent 7px),
      radial-gradient(circle at 30% 75%, rgba(200, 155, 74, 0.04) 5px, transparent 6px),
      radial-gradient(circle at 70% 30%, rgba(232, 155, 149, 0.05) 7px, transparent 8px);
    background-size: 400px 400px;
    pointer-events: none;
    z-index: 0;
    will-change: auto;
  }
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 100%;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(250, 244, 236, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(240, 231, 216, 0.6);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.nav-brand svg {
  width: 28px;
  height: 28px;
  color: var(--rose-deep);
}

.nav-brand span {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-cta {
  background: var(--ink);
  color: white !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: all 0.2s !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.nav-cta svg {
  width: 14px;
  height: 14px;
}

.nav-call {
  background: var(--sage-deep) !important;
  color: white !important;
  padding: 10px 18px !important;
  border-radius: 100px;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s !important;
}

.nav-call:hover {
  background: var(--ink) !important;
  transform: translateY(-1px);
}

.nav-call svg {
  width: 14px;
  height: 14px;
}

.nav-quote {
  background: var(--rose-deep) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 100px;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s !important;
}

.nav-quote:hover {
  background: var(--ink) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232, 155, 149, 0.4);
}

.nav-quote svg {
  width: 14px;
  height: 14px;
}

/* ===== HAMBURGER & MOBILE DRAWER ===== */
.nav-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 2px 8px var(--shadow);
  transition: all 0.2s;
}

.nav-hamburger:hover {
  background: var(--cream-deep);
}

.nav-hamburger:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 2px;
}

.nav-hamburger-icon {
  width: 18px;
  height: 14px;
  position: relative;
}

.nav-hamburger-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-hamburger-icon span:nth-child(1) { top: 0; }
.nav-hamburger-icon span:nth-child(2) { top: 6px; }
.nav-hamburger-icon span:nth-child(3) { top: 12px; }

/* Open state — hamburger turns to X */
.nav-hamburger[aria-expanded="true"] .nav-hamburger-icon span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger-icon span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 244, 236, 0.98);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 99;
  padding: 32px 24px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.mobile-drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-drawer-section {
  margin-bottom: 28px;
}

.mobile-drawer-label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  padding-left: 4px;
  letter-spacing: 0.02em;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: white;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s;
  box-shadow: 0 1px 3px var(--shadow);
}

.mobile-drawer-links a:hover,
.mobile-drawer-links a:active {
  background: var(--cream);
  transform: translateX(4px);
}

.mobile-drawer-links a::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink-soft);
  border-top: 2px solid var(--ink-soft);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.5;
}

.mobile-drawer-cta {
  display: block;
  text-align: center;
  background: var(--ink);
  color: white !important;
  text-decoration: none;
  padding: 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 8px;
  transition: all 0.2s;
}

.mobile-drawer-cta:hover,
.mobile-drawer-cta:active {
  background: var(--rose-deep);
}

.mobile-drawer-contact {
  background: white;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 1px 3px var(--shadow);
}

.mobile-drawer-contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.mobile-drawer-contact-line svg {
  width: 16px;
  height: 16px;
  color: var(--rose-deep);
  flex-shrink: 0;
}

.mobile-drawer-contact-line a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
  overflow: hidden;
}

/* ===== PAGE ===== */
.page {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 64px;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border-radius: 100px;
  box-shadow: 0 4px 16px var(--shadow);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--rose-deep);
  border-radius: 50%;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-deep);
  font-variation-settings: 'opsz' 144;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hero CTA buttons */
.hero-cta-primary {
  background: var(--ink);
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(42, 39, 34, 0.15);
}

.hero-cta-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 155, 149, 0.4);
}

.hero-cta-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.hero-cta-primary:hover svg {
  transform: translateX(4px);
}

.hero-cta-secondary {
  background: white;
  color: var(--ink);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px var(--shadow);
  border: 1.5px solid var(--cream-deep);
}

.hero-cta-secondary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--shadow-strong);
  border-color: var(--sage);
}

.hero-cta-secondary svg {
  width: 16px;
  height: 16px;
  color: var(--sage-deep);
}

@media (max-width: 500px) {
  .hero-cta-primary, .hero-cta-secondary {
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* ===== SERVICES GRID (homepage) ===== */
.services-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

@media (max-width: 980px) {
  .services-overview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-overview {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px var(--shadow);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow-strong);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: var(--rose);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--rose-deep);
}

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.service-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-card:hover .service-card-link {
  gap: 10px;
}

.service-card-link svg {
  width: 14px;
  height: 14px;
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.service-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 28px;
  margin: 36px 0 16px;
  line-height: 1.2;
}

.service-content h2:first-child {
  margin-top: 0;
}

.service-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.service-content ul {
  margin: 16px 0 24px 0;
  list-style: none;
}

.service-content li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  border-bottom: 1px solid var(--cream-deep);
}

.service-content li:last-child { border-bottom: none; }

.service-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 18px;
  height: 18px;
  background: var(--sage);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.service-aside {
  background: white;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 8px 32px var(--shadow);
  position: sticky;
  top: 24px;
}

.service-aside-icon {
  width: 64px;
  height: 64px;
  background: var(--rose);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-aside-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.service-aside h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-aside p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

.aside-features {
  list-style: none;
  margin-bottom: 28px;
}

.aside-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--cream-deep);
}

.aside-features li:last-child { border-bottom: none; }

.aside-features svg {
  width: 16px;
  height: 16px;
  color: var(--sage-deep);
  flex-shrink: 0;
}

.aside-cta {
  display: block;
  text-align: center;
  background: var(--ink);
  color: white;
  text-decoration: none;
  padding: 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s;
}

.aside-cta:hover {
  background: var(--rose-deep);
  transform: translateY(-1px);
}

/* ===== LEAD FORM ===== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-strong), 0 4px 16px var(--shadow);
}

.info-panel {
  background: linear-gradient(165deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: white;
  padding: 56px 44px;
  position: relative;
  overflow: hidden;
}

.info-panel::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.info-panel::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(244, 198, 194, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.info-content { position: relative; z-index: 1; }

.info-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 12px;
}

.info-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.info-text {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 36px;
}

.info-block { margin-bottom: 28px; }

.info-block-label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 6px;
}

.info-block-value {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.info-block-value a {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  padding: 2px 0;
  background-image: linear-gradient(
    to right,
    rgba(244, 198, 194, 1) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(244, 198, 194, 1) 100%
  );
  background-size: 200% 1.5px;
  background-repeat: no-repeat;
  background-position: 0% 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.info-block-value a::before {
  content: '';
  position: absolute;
  inset: -4px -10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.info-block-value a:hover {
  background-size: 200% 2px;
  background-position: -100% 100%;
  letter-spacing: 0.005em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.info-block-value a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.info-block-value a:active {
  transform: translateY(1px);
}

.perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.perk-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-icon svg { width: 14px; height: 14px; }

.form-panel { padding: 56px 52px; background: white; scroll-margin-top: 90px; }

.form-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 36px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.field { margin-bottom: 18px; }

.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.field-label .required { color: var(--rose-deep); }

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-deep);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  transition: all 0.2s ease;
  outline: none;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: var(--rose-deep);
  background: white;
  box-shadow: 0 0 0 4px rgba(232, 155, 149, 0.12);
}

.field-textarea { resize: vertical; min-height: 100px; font-family: inherit; }

.field-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a544b' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}

.services-section { margin-bottom: 24px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.service-option { position: relative; }

.service-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-option label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1.5px solid var(--cream-deep);
  border-radius: 12px;
  background: var(--cream);
  cursor: pointer;
  transition: all 0.2s ease;
  height: 100%;
}

.service-option label:hover {
  border-color: var(--rose);
  background: white;
}

.service-option input:checked + label {
  border-color: var(--rose-deep);
  background: white;
  box-shadow: 0 0 0 3px rgba(232, 155, 149, 0.15);
}

.service-check {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--cream-deep);
  border-radius: 6px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.service-option input:checked + label .service-check {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
}

.service-check svg {
  width: 12px;
  height: 12px;
  color: white;
  opacity: 0;
  transition: opacity 0.2s;
}

.service-option input:checked + label .service-check svg { opacity: 1; }

.service-info { flex: 1; min-width: 0; }

.service-name { font-weight: 600; font-size: 14px; color: var(--ink); }

.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-deep);
}

.submit-note {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.submit-btn {
  background: var(--ink);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.submit-btn:hover {
  background: var(--rose-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 155, 149, 0.35);
}

.submit-btn svg { width: 16px; height: 16px; transition: transform 0.2s; }

.submit-btn:hover svg { transform: translateX(3px); }

.success-msg {
  display: none;
  background: var(--sage);
  color: white;
  padding: 18px 22px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 15px;
  align-items: center;
  gap: 12px;
}

.success-msg.show {
  display: flex;
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== BACK LINK ===== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.back-link:hover { color: var(--ink); }

.back-link svg { width: 14px; height: 14px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  margin-top: 64px;
  padding: 56px 0 0;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-block {
  max-width: 320px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: white;
  text-decoration: none;
}

.footer-brand svg {
  width: 32px;
  height: 32px;
  color: var(--rose);
}

.footer-brand span {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  color: white;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 16px;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

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

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--rose);
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-line svg {
  width: 16px;
  height: 16px;
  color: var(--rose);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-line a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-line a:hover {
  color: var(--rose);
}

.footer-map {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 12px;
  margin-top: 16px;
  filter: grayscale(0.2) contrast(1.05);
}

.footer-map-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(168, 184, 156, 0.25), rgba(124, 142, 110, 0.4));
  border-radius: 12px;
  margin-top: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}

.footer-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.footer-map-placeholder:hover {
  background: linear-gradient(135deg, rgba(168, 184, 156, 0.35), rgba(124, 142, 110, 0.5));
}

.footer-map-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: white;
  position: relative;
  z-index: 1;
}

.footer-map-placeholder-inner svg {
  width: 32px;
  height: 32px;
  color: var(--rose);
}

.footer-map-placeholder-inner span {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--rose);
  text-decoration: none;
  font-weight: 500;
}

.footer-map-link:hover {
  color: white;
}

.footer-map-link svg {
  width: 12px;
  height: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.footer-bottom .heart {
  color: var(--rose);
}

.footer-legal {
  display: flex;
  gap: 20px;
  font-size: 13px;
}

.footer-legal a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--rose);
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand-block, .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

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

/* legacy page-footer kept for any leftover refs */
.page-footer {
  text-align: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-deep);
  font-size: 13px;
  color: var(--ink-soft);
}

.page-footer .heart { color: var(--rose-deep); }

/* ===== MOBILE ===== */
@media (max-width: 860px) {
  .nav {
    padding: 12px 14px;
    gap: 8px;
  }
  .nav-brand svg {
    width: 26px;
    height: 26px;
  }
  .nav-brand span {
    font-size: 17px;
  }
  .nav-links {
    gap: 8px;
  }
  /* Hide text nav links — keep Call and Quote buttons visible */
  .nav-links a:not(.nav-call):not(.nav-quote) {
    display: none;
  }

  /* Compact icon-only Call button on mobile */
  .nav-call {
    padding: 0 !important;
    width: 40px;
    height: 40px;
    justify-content: center;
    gap: 0;
    font-size: 0 !important;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(124, 142, 110, 0.25);
    flex-shrink: 0;
  }
  .nav-call svg {
    width: 16px;
    height: 16px;
    margin: 0;
  }

  /* Get a Free Quote — slightly tightened pill */
  .nav-quote {
    padding: 10px 16px !important;
    font-size: 13px !important;
    letter-spacing: -0.005em;
    box-shadow: 0 2px 10px rgba(232, 155, 149, 0.35);
    flex-shrink: 0;
  }
  .nav-quote svg {
    display: none;
  }

  /* Show hamburger alongside the buttons */
  .nav-hamburger {
    display: inline-flex;
    flex-shrink: 0;
  }
  .mobile-drawer {
    display: block;
  }

  .card-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-aside { position: static; }
  .info-panel, .form-panel { padding: 40px 28px; }
  .field-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .submit-row { flex-direction: column; align-items: stretch; }
  .submit-btn { justify-content: center; }
}

@media (max-width: 480px) {
  .nav {
    padding: 10px 12px;
    gap: 6px;
  }
  .nav-brand span {
    /* Hide brand text on very small screens, keep just the icon */
    display: none;
  }
  .nav-brand svg {
    width: 28px;
    height: 28px;
  }
  .nav-call {
    width: 38px;
    height: 38px;
  }
  .nav-quote {
    padding: 9px 14px !important;
    font-size: 12px !important;
  }
  .nav-hamburger {
    width: 38px;
    height: 38px;
  }
}
