:root {
  --rose: #b15858;
  --rose-light: #c48887;
  --rose-pale: #e9e7e4;
  --rose-deep: #ba706f;
  --cream: #ccbaad;
  --warm-white: #f7f5f3;
  --charcoal: #2a2020;
  --mid: #6b4f4f;
  --border: rgba(177, 88, 88, 0.18);
  --accent1: #ba706f;
  --accent2: #c48887;
  --accent3: #cda09e;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #e9e7e4;
  color: var(--charcoal);
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(233, 231, 228, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 4px 30px rgba(140, 90, 90, 0.08); }

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  height: 70px;
}

.nav-logo img { height: 70px; width: auto; }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--rose);
  color: white !important;
  padding: 0.55rem 1.3rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--rose-deep) !important; color: white !important; }

/* Hamburger button (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.25s, opacity 0.2s;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--rose);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
}

.hero-title em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--rose-deep);
  color: white;
  padding: 0.9rem 2rem;
  font-size: 0.82rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  min-height: 44px;
  line-height: 1.4;
}

.btn-primary:hover { background: var(--rose); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--rose-deep);
  padding: 0.9rem 2rem;
  font-size: 0.82rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--rose-light);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  min-height: 44px;
  line-height: 1.4;
}

.btn-ghost:hover { background: #ccbaad; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--rose-deep);
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b15858;
  overflow: hidden;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  z-index: 1;
}

.hero-ear-icon {
  position: relative;
  z-index: 2;
  width: clamp(220px, 28vw, 380px);
  opacity: 0.9;
}

.hero-tagline-card {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  right: 2rem;
  background: rgba(255,255,255,0.12);
  border-left: 3px solid rgba(255,255,255,0.5);
  padding: 1.2rem 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-tagline-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}

.hero-tagline-card span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
}

/* ── PAGE HEADER (for non-home pages) ── */
.page-header {
  padding: 9rem 5rem 4rem;
  background: var(--rose-pale);
  text-align: center;
}

.page-header .section-label {
  justify-content: center;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.page-header h1 em {
  font-style: italic;
  color: var(--rose-deep);
}

.page-header .lede {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid);
  max-width: 640px;
  margin: 0 auto;
}

/* ── ABOUT ── */
#about, .about-section {
  padding: 7rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: #e9e7e4;
}

.about-left .section-label,
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-left .section-label::before,
.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--rose);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--rose-deep);
}

.about-body {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 1.2rem;
}

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-card {
  background: #f7f5f3;
  padding: 1.8rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(140, 90, 90, 0.1); }

.about-card.span-2 {
  grid-column: span 2;
  background: var(--rose-deep);
  color: white;
}

.about-card.span-2 .card-label { color: rgba(255,255,255,0.6); }
.about-card.span-2 .card-title { color: white; }
.about-card.span-2 .card-text { color: rgba(255,255,255,0.8); }

.card-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6rem;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.card-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--mid);
  font-weight: 300;
}

/* ── SERVICES ── */
#services, .services-section {
  padding: 7rem 5rem;
  background: #ccbaad;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.section-header .section-label::before,
.section-header .section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--rose);
}

.section-header p {
  font-size: 0.97rem;
  color: var(--mid);
  max-width: 520px;
  margin: 1rem auto 0;
  line-height: 1.8;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #f7f5f3;
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--rose-light);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(140, 90, 90, 0.1); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--rose-pale);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.87rem;
  line-height: 1.75;
  color: var(--mid);
  font-weight: 300;
}

.service-price {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
}

.service-card .service-more {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── HOW IT WORKS ── */
#how-it-works, .process-section {
  padding: 7rem 5rem;
  background: #e9e7e4;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.step {
  background: #f7f5f3;
  padding: 3rem 2rem;
  position: relative;
  transition: background 0.25s;
}

.step:hover { background: #ccbaad; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--rose-pale);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.step-desc {
  font-size: 0.87rem;
  line-height: 1.75;
  color: var(--mid);
  font-weight: 300;
}

/* ── PRICING ── */
#pricing, .pricing-section {
  padding: 7rem 5rem;
  background: #ccbaad;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  background: #f7f5f3;
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  transform: translateY(-8px);
}

.pricing-card.featured .plan-name,
.pricing-card.featured .plan-price,
.pricing-card.featured .plan-period,
.pricing-card.featured .plan-feature { color: white; }

.pricing-card.featured .plan-desc { color: rgba(255,255,255,0.7); }
.pricing-card.featured .plan-divider { border-color: rgba(255,255,255,0.2); }
.pricing-card.featured .plan-badge { background: var(--rose-light); color: white; }

.plan-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #e9e7e4;
  color: var(--rose-deep);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}

.plan-period {
  font-size: 0.82rem;
  color: var(--mid);
  margin-bottom: 2rem;
}

.plan-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.plan-features { list-style: none; flex: 1; }

.plan-feature {
  font-size: 0.87rem;
  color: var(--mid);
  padding: 0.5rem 0;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 300;
}

.plan-feature::before {
  content: '✦';
  color: var(--rose);
  font-size: 0.6rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.pricing-card.featured .plan-feature::before { color: var(--rose-light); }

.pricing-card .btn-primary,
.pricing-card .btn-ghost {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  display: block;
}

.pricing-card.featured .btn-primary { background: white; color: var(--rose-deep); }
.pricing-card.featured .btn-primary:hover { background: #f7f5f3; }

/* ── TESTIMONIAL ── */
#testimonials, .testimonials-section {
  padding: 7rem 5rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

#testimonials::before,
.testimonials-section::before {
  content: '"';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 40rem;
  color: rgba(255,255,255,0.02);
  top: -10rem;
  left: -3rem;
  line-height: 1;
  pointer-events: none;
}

#testimonials .section-label,
.testimonials-section .section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#testimonials .section-label::before,
.testimonials-section .section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--rose-light);
}

#testimonials .section-title,
.testimonials-section .section-title {
  color: white;
  margin-bottom: 3.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-light);
}

.testimonial-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.2rem;
}

/* ── CONTACT ── */
#contact, .contact-section {
  padding: 7rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: #ccbaad;
}

.contact-left .section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-left .section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--rose);
}

.contact-body {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-info a {
  font-size: 0.87rem;
  color: var(--rose-deep);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  word-break: break-word;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: #e9e7e4;
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  font-weight: 300;
  width: 100%;
  min-height: 44px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--rose); }

.form-field textarea { height: 120px; resize: vertical; }

.form-status {
  font-size: 0.85rem;
  color: var(--rose-deep);
  margin-top: 0.5rem;
  min-height: 1.2em;
}

/* honeypot — hide from real users */
.form-honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* ── SERVICE DETAIL PAGES ── */
.service-detail {
  padding: 6rem 5rem;
  background: var(--rose-pale);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1180px;
  margin: 0 auto;
}

.service-detail h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 400;
  color: var(--charcoal);
  margin: 2.5rem 0 1rem;
}

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

.service-detail p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.service-detail ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-detail ul li {
  font-size: 0.95rem;
  color: var(--mid);
  padding: 0.5rem 0;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 300;
  line-height: 1.7;
}

.service-detail ul li::before {
  content: '✦';
  color: var(--rose);
  font-size: 0.7rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.service-detail-aside {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 2rem;
  position: sticky;
  top: 100px;
  align-self: start;
}

.service-detail-aside .plan-price { font-size: 2.2rem; margin-bottom: 0.3rem; }
.service-detail-aside .plan-period { margin-bottom: 1.5rem; }
.service-detail-aside .btn-primary { width: 100%; text-align: center; }

/* ── FAQ ── */
.faq-list {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}

.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.faq-a {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--mid);
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  background: var(--rose);
  padding: 3rem 5rem 2.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  margin-bottom: 1.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
  gap: 1.5rem;
}

.footer-left img { height: 60px; width: auto; }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.footer-links-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a2020;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}

.social-btn:hover { background: rgba(255,255,255,0.35); }

.social-btn svg {
  width: 18px;
  height: 18px;
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BREAKPOINTS ── */

/* Tablet & smaller */
@media (max-width: 1024px) {
  nav { padding: 1rem 2rem; }
  #home, #about, .about-section, #contact, .contact-section {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .hero-left { padding: 4rem 3rem; }
  #services, .services-section,
  #how-it-works, .process-section,
  #pricing, .pricing-section,
  #testimonials, .testimonials-section { padding: 6rem 3rem; }
  footer { padding: 3rem 3rem 2rem; }
  .service-detail { padding: 5rem 3rem; }
}

/* Mobile + small tablet */
@media (max-width: 768px) {
  nav { padding: 0.85rem 1.25rem; }
  .nav-logo { height: 56px; }
  .nav-logo img { height: 56px; }

  /* Hamburger replaces nav links */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(233, 231, 228, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(140, 90, 90, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    align-items: stretch;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child a { border-bottom: none; }

  .nav-cta {
    margin: 0.8rem 1.5rem 0;
    text-align: center;
    border-radius: 2px;
    padding: 0.85rem 1.3rem !important;
  }

  /* Hero */
  #home { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-left { padding: 3rem 1.75rem 2.5rem; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.4rem); }
  .hero-body { font-size: 0.97rem; }
  .hero-stats { gap: 1.5rem; margin-top: 2.5rem; padding-top: 1.5rem; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.68rem; }
  .hero-right { min-height: 420px; }
  .hero-ear-icon { width: clamp(180px, 42vw, 260px); }
  .hero-tagline-card { bottom: 1.5rem; left: 1.25rem; right: 1.25rem; padding: 1rem 1.2rem; }
  .hero-tagline-card p { font-size: 1.25rem; }

  /* Page header */
  .page-header { padding: 7rem 1.75rem 3rem; }

  /* About */
  #about, .about-section { grid-template-columns: 1fr; padding: 4rem 1.75rem; gap: 2.5rem; }
  .about-right { grid-template-columns: 1fr; }
  .about-card.span-2 { grid-column: span 1; }

  /* Sections */
  #services, .services-section,
  #how-it-works, .process-section,
  #pricing, .pricing-section,
  #testimonials, .testimonials-section { padding: 4rem 1.75rem; }

  .section-header { margin-bottom: 2.5rem; }
  .section-header p { font-size: 0.92rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 2rem 1.5rem; }

  /* Steps */
  .steps { grid-template-columns: 1fr 1fr; }
  .step { padding: 2rem 1.5rem; }
  .step-num { font-size: 3rem; margin-bottom: 1rem; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-card.featured { transform: none; }
  .plan-price { font-size: 2.5rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .testimonial-quote { font-size: 1.05rem; }

  /* Contact */
  #contact, .contact-section { grid-template-columns: 1fr; padding: 4rem 1.75rem; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Service detail */
  .service-detail { padding: 4rem 1.75rem; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail-aside { position: static; }

  /* Footer */
  footer { padding: 2.5rem 1.75rem 2rem; }
  .footer-inner { flex-direction: column; gap: 2rem; align-items: flex-start; }
  .footer-left { min-height: auto; }
  .footer-links ul { gap: 0.5rem 2rem; }
}

/* Small phones */
@media (max-width: 480px) {
  nav { padding: 0.75rem 1rem; }
  .nav-logo { height: 48px; }
  .nav-logo img { height: 48px; }
  .nav-links { top: 60px; }

  #home { padding-top: 60px; }
  .hero-left { padding: 2.5rem 1.25rem 2rem; }
  .hero-eyebrow { font-size: 0.68rem; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-body { font-size: 0.94rem; line-height: 1.7; }
  .hero-actions { gap: 0.75rem; }
  .hero-actions a { width: 100%; text-align: center; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .stat-num { font-size: 1.35rem; }
  .stat-label { font-size: 0.62rem; }
  .hero-right { min-height: 360px; }
  .hero-tagline-card p { font-size: 1.05rem; }
  .hero-tagline-card { bottom: 1rem; left: 1rem; right: 1rem; padding: 0.85rem 1rem; }
  .hero-tagline-card span { font-size: 0.62rem; }

  .page-header { padding: 6rem 1.25rem 2.5rem; }

  /* Landscape phones — keep hero usable */
  @media (orientation: landscape) and (max-height: 480px) {
    #home { grid-template-columns: 1fr 1fr; min-height: auto; }
    .hero-right { min-height: 280px; }
    .hero-ear-icon { width: clamp(140px, 22vw, 200px); }
  }

  #about, .about-section,
  #services, .services-section,
  #how-it-works, .process-section,
  #pricing, .pricing-section,
  #testimonials, .testimonials-section,
  #contact, .contact-section,
  .service-detail { padding-left: 1.25rem; padding-right: 1.25rem; }

  .steps { grid-template-columns: 1fr; }
  .step { padding: 1.75rem 1.25rem; }

  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .testimonial-quote { font-size: 1rem; }

  footer { padding: 2rem 1.25rem 1.5rem; }
  .footer-links ul { flex-direction: column; gap: 0.5rem; }
}

/* Very small phones */
@media (max-width: 360px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats > div:nth-child(3) { grid-column: span 2; }
  .hero-title { font-size: 1.85rem; }
  .nav-logo { height: 44px; }
  .nav-logo img { height: 44px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1; transform: none; }
}
