/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --plum:   #5D2E46;
  --coral:  #FF6663;
  --olive:  #7C6A0A;
  --cream:  #CCC7B9;
  --teal:   #0B3954;
  --white:  #FFFFFF;
  --off-white: #FAF9F7;
  --gray-100: #F4F2EF;
  --gray-200: #E8E4DE;
  --gray-500: #8A8278;
  --gray-800: #2E2A25;

  --font-script: 'Parisienne', cursive;
  --font-sans:   'Jost', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.14);

  --transition: 200ms ease;

  --container: 1160px;
  --nav-h: 72px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
  width: 100%;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}
.section { padding-block: 96px; }
.section-alt { background: var(--gray-100); }
.section-dark { background: var(--plum); color: var(--white); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3 { line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }
.text-light { color: var(--white); }

.section-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: .6rem;
}
.section-eyebrow-light { color: var(--cream); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.section-desc {
  margin-top: 1rem;
  color: var(--gray-500);
  font-size: 1.05rem;
}
.section-dark .section-desc { color: var(--cream); }

/* ─── LOGO ───────────────────────────────────────────────── */
.logo-script {
  font-family: var(--font-script);
  font-size: 1.55rem;
  color: var(--plum);
  display: block;
  line-height: 1;
}
.logo-sans {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--plum);
  display: block;
  margin-top: -2px;
}
.nav-logo, .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover { background: #e8504d; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  border: 2px solid var(--plum);
  color: var(--plum);
}
.btn-outline:hover { background: var(--plum); color: var(--white); }
.btn-ghost {
  color: var(--plum);
  border: 2px solid transparent;
}
.btn-ghost:hover { border-color: var(--plum); }
.btn-sm { padding: .5rem 1.2rem; font-size: .8rem; }
.btn-full { width: 100%; }

/* ─── NAV ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--coral); }
.nav-links .btn { margin-left: .5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-white);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--plum);
  top: -120px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--coral);
  bottom: -80px; left: -60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 80px;
  position: relative;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1rem;
}
.hero-script {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--plum);
  display: block;
  line-height: 1.1;
}
.hero-headline {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: -.02em;
}
.hero-sub {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 480px;
  line-height: 1.75;
}
.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* floating cards */
.hero-art {
  position: relative;
  height: 380px;
}
.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  font-size: .9rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out infinite;
}
.hero-card .card-icon { font-size: 1.4rem; }
.card-1 { top: 40px;  left: 60px;  animation-delay: 0s; }
.card-2 { top: 160px; right: 20px; animation-delay: 1.5s; }
.card-3 { bottom: 60px; left: 30px; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-scroll {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
  position: relative;
}
.hero-scroll span {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--plum), transparent);
  display: block;
  animation: scrollFade 2s ease-in-out infinite;
}
@keyframes scrollFade {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.3); }
}

/* ─── PROOF BAR ──────────────────────────────────────────── */
.proof-bar {
  background: var(--plum);
  color: var(--cream);
  padding-block: 1rem;
  font-size: .85rem;
}
.proof-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.proof-list {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.proof-list li {
  position: relative;
  padding-inline: 1rem;
  opacity: .8;
}
.proof-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}
.proof-list li:first-child::before { display: none; }

/* ─── ABOUT ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--plum) 0%, color-mix(in srgb, var(--plum) 70%, var(--teal)) 100%);
}
.about-headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--coral);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: .6rem 1.2rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
}
.about-text p {
  color: var(--gray-500);
  margin-top: 1rem;
}
.about-highlights {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.about-highlights li {
  display: flex;
  gap: .75rem;
  font-size: .95rem;
}
.highlight-icon {
  color: var(--coral);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .2rem;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card-featured {
  border-color: var(--plum);
  background: var(--plum);
  color: var(--white);
}
.service-card-featured p,
.service-card-featured li { color: var(--cream); }
.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: .75rem; }
.service-card p { font-size: .95rem; color: var(--gray-500); }
.service-card ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.service-card ul li {
  font-size: .88rem;
  padding-left: 1.1rem;
  position: relative;
  color: var(--gray-500);
}
.service-card-featured ul li { color: var(--cream); }
.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-size: .8rem;
}
.service-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--coral);
  transition: gap var(--transition);
}
.service-card-featured .service-link { color: var(--cream); }
.service-link:hover { letter-spacing: .02em; }

/* ─── PRODUCTS ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.products-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin-inline: auto;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.product-img-1 { background: linear-gradient(135deg, #f0e8ed, #e8d0db); }
.product-img-2 { background: linear-gradient(135deg, #fff0e8, #ffd9c8); }
.product-img-3 { background: linear-gradient(135deg, #e8f0e0, #c8dbb0); }
.product-img-4 { background: linear-gradient(135deg, #e0eaf0, #b0c8db); }

.product-body { padding: 1.25rem; }
.product-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--olive);
  background: color-mix(in srgb, var(--olive) 12%, transparent);
  padding: .2rem .6rem;
  border-radius: 4px;
  margin-bottom: .6rem;
}
.product-body h3 { font-size: 1rem; margin-bottom: .5rem; }
.product-body p { font-size: .88rem; color: var(--gray-500); line-height: 1.55; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--plum);
}
.product-card-best-value {
  border-color: var(--coral);
  position: relative;
}
.product-best-value-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
}
/* social media wide card */
.product-card-social {
  display: grid;
  grid-template-columns: 280px 1fr;
  margin-top: 1.5rem;
  overflow: visible;
}
.product-social-img {
  background: linear-gradient(135deg, #e8eaf5, #c8cde8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  min-height: 200px;
}
.product-social-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-social-header h3 { margin: .4rem 0 .6rem; }
.product-social-header p { font-size: .9rem; color: var(--gray-500); }
.product-social-variants {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.variant-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: relative;
  transition: border-color var(--transition);
}
.variant-card:hover { border-color: var(--plum); }
.variant-card-featured {
  border-color: var(--coral);
}
.variant-card-featured .product-best-value-badge {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.variant-icon { font-size: 1.5rem; }
.variant-info { flex: 1; }
.variant-info strong { display: block; font-size: .9rem; color: var(--gray-800); }
.variant-info span { font-size: .8rem; color: var(--gray-500); }
.product-social-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.product-social-cta p {
  font-size: .9rem;
  color: var(--gray-500);
  margin: 0;
}

@media (max-width: 1024px) {
  .product-card-social { grid-template-columns: 1fr; }
  .product-social-img { border-radius: var(--radius-lg) var(--radius-lg) 0 0; min-height: 140px; }
}
@media (max-width: 640px) {
  .product-social-variants { grid-template-columns: 1fr; }
}

.products-cta {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.products-cta p { color: var(--gray-500); }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card-featured {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.3);
  transform: scale(1.03);
}
.testimonial-card p {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--cream);
  position: relative;
  padding-top: 1.5rem;
}
.testimonial-card p::before {
  content: '\201C';
  position: absolute;
  top: 0; left: 0;
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--coral);
  line-height: 1;
}
.testimonial-card footer {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.testimonial-card footer strong {
  color: var(--white);
  font-size: .95rem;
}
.testimonial-card footer span {
  color: var(--cream);
  font-size: .8rem;
  opacity: .7;
}

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter { background: var(--off-white); }
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.newsletter-text h2 { margin-top: .5rem; }
.newsletter-text p { color: var(--gray-500); margin-top: 1rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.newsletter-form input {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  padding: .85rem 1.25rem;
  font-size: .9rem;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--plum); }
.form-note {
  font-size: .78rem;
  color: var(--gray-500);
  text-align: center;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-text h2 { margin-top: .5rem; }
.contact-text p { color: var(--gray-500); margin-top: 1rem; }
.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
}
.contact-item span:first-child {
  color: var(--coral);
  font-size: 1.1rem;
}
.contact-item a { color: var(--plum); font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-size: .9rem;
  transition: border-color var(--transition), background var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  background: var(--white);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--gray-800);
  color: var(--cream);
  padding-block: 3rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}
.site-footer .logo-script { color: var(--cream); }
.site-footer .logo-sans { color: var(--cream); opacity: .6; }
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: .88rem;
  opacity: .7;
  transition: opacity var(--transition);
}
.footer-nav a:hover { opacity: 1; }
.footer-social {
  display: flex;
  gap: 1.25rem;
}
.footer-social a {
  opacity: .6;
  transition: opacity var(--transition), color var(--transition);
}
.footer-social a:hover { opacity: 1; color: var(--coral); }
.footer-copy {
  font-size: .78rem;
  opacity: .4;
}

/* ─── FORM STATES ────────────────────────────────────────── */
.field-error {
  border-color: var(--coral) !important;
}
.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  text-align: center;
}
.form-message-success {
  background: color-mix(in srgb, var(--olive) 12%, transparent);
  color: var(--olive);
  border: 1px solid color-mix(in srgb, var(--olive) 30%, transparent);
}
.form-message-error {
  background: color-mix(in srgb, var(--coral) 12%, transparent);
  color: #c03a37;
  border: 1px solid color-mix(in srgb, var(--coral) 30%, transparent);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid-3 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 300px 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding-block: 64px; }

  /* nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset-block-start: var(--nav-h);
    inset-inline: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links .btn { width: 100%; text-align: center; }

  /* hero */
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-art { height: 220px; }
  .card-1 { top: 10px;  left: 10px; }
  .card-2 { top: 90px;  right: 10px; }
  .card-3 { bottom: 10px; left: 50%; transform: translateX(-50%); }

  /* grids */
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 280px; margin-inline: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-featured { order: -1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card-featured { transform: none; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .proof-inner { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .footer-nav { gap: 1rem; }
}
