/* Amber's Loving Paws — brand styles */
:root {
  --purple-deep: #4a2c7a;
  --purple: #6b3fa0;
  --purple-mid: #7c4db8;
  --purple-soft: #9b6dd4;
  --lilac: #c4a8e8;
  --lavender: #e8ddf5;
  --cream: #faf7fc;
  --white: #ffffff;
  --text: #1f1630;
  --text-muted: #3d3450;
  --border: rgba(107, 63, 160, 0.18);
  --shadow: 0 12px 40px rgba(74, 44, 122, 0.12);
  --shadow-sm: 0 4px 16px rgba(74, 44, 122, 0.08);
  --radius: 18px;
  --radius-lg: 28px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: #f5eef8;
  background-image: url("../assets/floral-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  line-height: 1.65;
  min-height: 100vh;
}

/* Strong white wash so purple type stays readable on floral */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.78);
  z-index: -1;
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--purple-deep);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fbf7ff 55%,
    #f6effc 100%
  );
  border-bottom: none;
  box-shadow:
    0 1px 0 rgba(107, 63, 160, 0.08),
    0 8px 24px rgba(74, 44, 122, 0.07);
}

/* Soft purple accent line under header */
.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--lilac) 0%,
    var(--purple) 35%,
    var(--purple-soft) 65%,
    var(--lilac) 100%
  );
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--purple-deep);
  flex-shrink: 0;
}

.logo-link img,
.logo-header {
  width: auto;
  height: 72px;
  max-width: min(240px, 46vw);
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo-text {
  display: none; /* full logo includes brand name */
}

.footer-brand img {
  width: auto !important;
  height: auto !important;
  max-width: 110px !important;
  max-height: 110px !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  padding: 0.45rem !important;
  object-fit: contain;
}

.hero-card img {
  width: min(100%, 340px) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.logo-text span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-soft);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--purple);
  color: var(--purple);
  border-radius: 10px;
  padding: 0.4rem 0.65rem;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
  list-style: none;
}

.nav-list a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.4rem 0.55rem;
  position: relative;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-list a:hover {
  color: var(--purple);
  background: rgba(107, 63, 160, 0.08);
}

.nav-list a.active {
  color: var(--purple);
  background: rgba(107, 63, 160, 0.1);
}

.nav-list a.active::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.15rem;
  height: 2px;
  background: linear-gradient(90deg, var(--lilac), var(--purple));
  border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple)) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(107, 63, 160, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--purple), var(--purple-deep)) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(107, 63, 160, 0.4);
}

.nav-cta::after {
  display: none !important;
}

/* —— Layout —— */
main {
  overflow-x: hidden;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.65rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--purple-deep);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 36em;
  font-weight: 600;
}

/* Solid white panels for any free-floating text */
.section > .container.text-center {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem 2.75rem;
  box-shadow: var(--shadow);
}

.page-hero .container {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow);
  max-width: 820px;
}

.text-center {
  text-align: center;
}

.text-center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(107, 63, 160, 0.35);
}

.btn-primary:hover {
  background: var(--purple-deep);
  color: var(--white);
}

.btn-secondary {
  background: #ffffff;
  color: var(--purple-deep);
  border-color: var(--purple);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--lavender);
  color: var(--purple-deep);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* —— Hero —— */
.hero {
  padding: 3.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.15rem;
  box-shadow: var(--shadow);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--lavender);
  color: var(--purple-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.hero h1 {
  margin-bottom: 1rem;
  color: var(--purple-deep);
}

.hero h1 em {
  font-style: italic;
  color: var(--purple);
}

.hero-copy .lead {
  color: var(--text);
}

.hero-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-card img {
  width: min(100%, 340px);
  margin: 0 auto;
  border-radius: 0;
  background: transparent;
}

.hero-card p {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--purple);
  font-weight: 600;
}

/* —— Cards / grid —— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--lavender);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* —— About band —— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-visual {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.split-visual img {
  max-width: 320px;
  margin: 0 auto;
}

.about-split {
  align-items: start;
}

.about-visual {
  padding: 0.75rem;
  overflow: hidden;
  position: sticky;
  top: 1.25rem;
}

.about-visual img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-lg) - 4px);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.about-photo-wrap {
  display: none;
  margin: 0 0 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.about-photo {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

@media (max-width: 900px) {
  .about-visual {
    display: none;
    position: static;
  }

  .about-photo-wrap {
    display: block;
  }
}

.split-content {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 2rem;
  box-shadow: var(--shadow);
}

.split-content .lead {
  margin-bottom: 1.25rem;
  color: var(--text);
  font-weight: 600;
}

.about-story {
  margin: 0 0 1.25rem;
}

.about-story-p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-signoff {
  margin: 1.25rem 0 0.35rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
}

.about-signature {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--purple);
}

.checklist {
  list-style: none;
  margin: 1.25rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: "♥";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-size: 0.85rem;
}

/* —— Services detail —— */
.service-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: start;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.service-item .num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-item p {
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
  background: var(--lavender);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* —— CTA band —— */
.cta-band {
  margin: 1rem 0 0;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: white;
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.92;
  max-width: 32em;
  margin: 0 auto 1.5rem;
}

.cta-band .btn-primary {
  background: white;
  color: var(--purple-deep);
  box-shadow: none;
}

.cta-band .btn-primary:hover {
  background: var(--lavender);
  color: var(--purple-deep);
}

.cta-band .btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.7);
}

.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.cta-band .btn-row {
  justify-content: center;
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-line {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}

.contact-line .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-line strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
  margin-bottom: 0.15rem;
}

.contact-line a,
.contact-line span {
  color: var(--text);
  font-weight: 600;
  word-break: break-word;
}

.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--purple-deep);
}

.contact-form .field {
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107, 63, 160, 0.15);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  background: var(--lavender);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
  color: var(--purple-deep);
  font-weight: 600;
}

.form-success.show {
  display: block;
}

/* —— Page hero (inner pages) —— */
.page-hero {
  padding: 3rem 0 2rem;
  text-align: center;
}

.page-hero .lead {
  margin-top: 0.75rem;
}

/* —— Footer —— */
.site-footer {
  margin-top: 2rem;
  background: var(--purple-deep);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.75rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand img {
  width: auto;
  height: auto;
  max-width: 110px;
  max-height: 110px;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.45rem;
  object-fit: contain;
}

.footer-brand h3 {
  color: white;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
  color: var(--lilac);
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: auto 1fr;
  }

  .service-tag {
    grid-column: 2;
  }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 0.25rem;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list a {
    padding: 0.75rem 0.5rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    position: relative;
  }
}

@media (max-width: 520px) {
  .btn-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .logo-text strong {
    font-size: 1.1rem;
  }
}

/* —— Pricing grid —— */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.price-grid-featured {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

@media (max-width: 1000px) {
  .price-grid-featured {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .price-grid-featured {
    grid-template-columns: 1fr;
  }
}

.price-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 0 1.35rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card .service-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--lavender);
}

.price-card-compact .service-photo {
  aspect-ratio: 16 / 10;
}

.price-card .emoji {
  display: none;
}

.price-card h3,
.price-card .price-block,
.price-card p,
.price-card .btn,
.price-card .service-chip {
  margin-left: 1.15rem;
  margin-right: 1.15rem;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-card h3 {
  font-size: 1.2rem;
  margin: 0.95rem 1.15rem 0;
}

.price-card-compact h3 {
  font-size: 1.1rem;
}

/* Stacked price hierarchy: note → amount → unit */
.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  margin: 0.15rem 1.15rem 0.25rem;
  line-height: 1.2;
}

.price-prefix {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-soft);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--purple);
}

.price-block-solo .price-amount {
  font-size: 1.45rem;
  color: var(--purple-deep);
}

.price-unit {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.service-chip {
  display: inline-block;
  align-self: center;
  background: var(--lavender);
  color: var(--purple-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-top: 0.15rem;
}

.price-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-grow: 1;
  line-height: 1.55;
}

.price-card-compact p {
  font-size: 0.88rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-card .btn {
  margin-top: 0.5rem;
  align-self: center;
}

.price-card-compact .btn {
  padding: 0.65rem 1.15rem;
  font-size: 0.88rem;
}

.price-card-detail p {
  font-size: 0.95rem;
  text-align: left;
}

/* �� Locations �� */
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.city-chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--purple-deep);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.area-banner {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

/* �� Process �� */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.process-step {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.15rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.process-step .step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--lilac);
  line-height: 1;
  margin-bottom: 0.65rem;
}

/* �� Testimonials �� */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-card blockquote {
  font-size: 0.98rem;
  color: var(--text-muted);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 1rem;
  quotes: none;
}

.review-card cite {
  font-style: normal;
  font-weight: 800;
  color: var(--purple-deep);
  font-size: 0.9rem;
}

.review-card .stars {
  color: #d4a017;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

/* �� Gallery placeholders �� */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-tile {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--lavender), var(--white));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-weight: 700;
  text-align: center;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.gallery-tile-photo {
  padding: 0;
  background: #ffffff;
}

.gallery-tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.blog-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.blog-card .meta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: 0.4rem;
}

@media (max-width: 900px) {
  .process-grid,
  .review-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .review-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
