/* ── RESET & VARIABLES ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6B1E2B;
  --primary-dark: #3D0E17;
  --secondary: #8E2F3F;
  --beige: #F5EFE8;
  --ivory: #FAF8F5;
  --rose: #D8B6B0;
  --taupe: #7D746B;
  --text-dark: #1E0E12;
  --text-body: #3D2B30;
  --white: #FFFDF9;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --shadow-sm: 0 2px 16px rgba(107, 30, 43, .08);
  --shadow-md: 0 8px 32px rgba(107, 30, 43, .12);
  --shadow-lg: 0 24px 64px rgba(107, 30, 43, .18);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 100px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, box-shadow .4s;
}

nav.scrolled {
  background: rgba(250, 248, 245, .96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(107, 30, 43, .08);
}

.nav-logo { text-decoration: none; display: flex; flex-direction: column; }
.nav-logo-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--white); letter-spacing: .02em; line-height: 1; transition: color .3s; }
.nav-logo-sub { font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); margin-top: 1px; transition: color .3s; }
nav.scrolled .nav-logo-name { color: var(--primary); }
nav.scrolled .nav-logo-sub { color: var(--taupe); }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: .82rem; font-weight: 400; letter-spacing: .04em; color: rgba(255, 253, 249, .7); text-decoration: none; transition: color .3s; }
.nav-links a:hover { color: var(--white); }
nav.scrolled .nav-links a { color: var(--taupe); }
nav.scrolled .nav-links a:hover { color: var(--primary); }

.nav-cta { background: var(--rose) !important; color: var(--primary-dark) !important; padding: .6rem 1.4rem; border-radius: var(--radius-pill); font-weight: 600 !important; letter-spacing: .05em !important; transition: background .3s, transform .3s !important; }
.nav-cta:hover { background: #e8c8c2 !important; transform: translateY(-1px); }
nav.scrolled .nav-cta { background: var(--primary) !important; color: var(--white) !important; }
nav.scrolled .nav-cta:hover { background: var(--secondary) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all .3s; }
nav.scrolled .hamburger span { background: var(--primary); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu { display: none; position: fixed; inset: 0; background: var(--ivory); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--primary); text-decoration: none; transition: opacity .2s; }
.mobile-menu a:hover { opacity: .6; }

/* ── HERO ── */
#hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--primary-dark); }

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 75% 40%, rgba(142, 47, 63, .45) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 5% 80%, rgba(216, 182, 176, .1) 0%, transparent 55%),
    linear-gradient(145deg, #1A0810 0%, #3D1520 50%, #2E0F1A 100%);
}

.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  opacity: .05; background-size: 200px;
}

.hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(216, 182, 176, .1); pointer-events: none; }
.hero-ring-1 { width: 700px; height: 700px; right: -120px; top: 50%; transform: translateY(-50%); }
.hero-ring-2 { width: 460px; height: 460px; right: 80px; top: 50%; transform: translateY(-50%); }

.hero-dot { position: absolute; width: 60px; height: 60px; border-radius: 50%; background: rgba(216, 182, 176, .12); right: 380px; top: 30%; animation: floatDot 7s ease-in-out infinite; }
.hero-dot-2 { width: 20px; height: 20px; right: 280px; top: 65%; animation: floatDot 5s ease-in-out infinite reverse; }

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

.hero-content { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 0 3rem; padding-top: 7rem; width: 100%; display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }

.hero-tag { display: inline-flex; align-items: center; gap: .6rem; font-size: .72rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); margin-bottom: 1.75rem; opacity: 0; animation: fadeUp .8s .2s var(--ease) forwards; }
.hero-tag::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--rose); }

.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 5.5vw, 6rem); font-weight: 300; line-height: 1.04; color: var(--white); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp .8s .4s var(--ease) forwards; }
.hero-title em { font-style: italic; color: var(--rose); }

.hero-subtitle { font-size: 1.05rem; font-weight: 300; line-height: 1.75; color: rgba(255, 253, 249, .58); max-width: 500px; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp .8s .6s var(--ease) forwards; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s .8s var(--ease) forwards; }

.btn-primary { display: inline-flex; align-items: center; gap: .5rem; background: var(--rose); color: var(--primary-dark); padding: 1rem 2rem; border-radius: var(--radius-pill); font-size: .9rem; font-weight: 600; letter-spacing: .04em; text-decoration: none; transition: all .4s var(--ease); }
.btn-primary:hover { background: #e8c8c2; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(216, 182, 176, .35); }

.btn-ghost { display: inline-flex; align-items: center; gap: .5rem; background: transparent; color: var(--white); padding: 1rem 2rem; border-radius: var(--radius-pill); font-size: .9rem; font-weight: 400; letter-spacing: .04em; text-decoration: none; border: 1px solid rgba(255, 253, 249, .25); transition: all .4s var(--ease); }
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }

.hero-stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; padding-top: 3rem; border-top: 1px solid rgba(255, 253, 249, .09); opacity: 0; animation: fadeUp .8s 1s var(--ease) forwards; }
.hero-stat-number { font-family: var(--font-display); font-size: 2.6rem; font-weight: 300; color: var(--rose); line-height: 1; }
.hero-stat-label { font-size: .72rem; font-weight: 300; color: rgba(255, 253, 249, .45); margin-top: .2rem; }

/* Portrait */
.hero-portrait-wrap { display: flex; justify-content: center; align-items: center; opacity: 0; animation: fadeIn 1.2s .5s var(--ease) forwards; }
.hero-portrait { width: 320px; height: 400px; background: linear-gradient(145deg, rgba(142, 47, 63, .28), rgba(216, 182, 176, .1)); border-radius: 200px 200px 150px 150px; border: 1px solid rgba(216, 182, 176, .2); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 2.5rem; position: relative; overflow: hidden; }
.hero-portrait-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(216, 182, 176, .12), transparent); }
.hero-portrait-initials { position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-display); font-size: 9rem; font-weight: 300; color: rgba(216, 182, 176, .12); user-select: none; line-height: 1; }
.hero-portrait-info { position: relative; text-align: center; }
.hero-portrait-info p { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--rose); letter-spacing: .02em; }
.hero-portrait-info small { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(216, 182, 176, .55); }
.hero-portrait-replace { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── SECTION COMMONS ── */
section { padding: 7rem 3rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-tag { display: inline-flex; align-items: center; gap: .75rem; font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--taupe); margin-bottom: .9rem; }
.section-tag::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--rose); }

.section-title { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 300; line-height: 1.08; color: var(--primary-dark); margin-bottom: 1.25rem; }
.section-title em { font-style: italic; color: var(--primary); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── ABOUT ── */
#about { background: var(--white); }

.about-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 6rem; align-items: center; }

.about-img-wrap { position: relative; }
.about-frame { width: 100%; max-width: 360px; aspect-ratio: 3/4; background: linear-gradient(145deg, #e8d5d0, #f5ece8); border-radius: 200px 200px 160px 160px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 2.5rem; overflow: hidden; position: relative; }
.about-frame-bg { position: absolute; font-family: var(--font-display); font-size: 14rem; font-weight: 300; color: rgba(107, 30, 43, .08); top: 35%; left: 50%; transform: translate(-50%, -50%); user-select: none; line-height: 1; }
.about-frame-info { position: relative; text-align: center; }
.about-frame-info p { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; color: var(--primary); }
.about-frame-info small { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--taupe); }
.about-frame-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

.about-ring { position: absolute; border-radius: 50%; width: 130px; height: 130px; background: var(--beige); top: -35px; right: -35px; z-index: -1; }
.about-ring-2 { width: 90px; height: 90px; border: 1px solid var(--rose); background: transparent; bottom: 10px; right: -45px; z-index: -1; }

.about-quote { font-family: var(--font-display); font-size: 1.55rem; font-weight: 300; font-style: italic; line-height: 1.4; color: var(--primary); border-left: 2px solid var(--rose); padding-left: 1.5rem; margin-bottom: 1.5rem; }
.about-body { font-size: .97rem; font-weight: 300; line-height: 1.85; color: var(--text-body); margin-bottom: 1.25rem; }
.about-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.chip { background: var(--beige); color: var(--primary); padding: .35rem 1rem; border-radius: var(--radius-pill); font-size: .78rem; font-weight: 400; }

.about-badge { display: inline-flex; align-items: center; gap: 1rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); padding: 1.1rem 1.75rem; border-radius: var(--radius); }
.badge-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--white); line-height: 1; }
.badge-txt { font-size: .8rem; font-weight: 300; color: rgba(255, 253, 249, .8); line-height: 1.5; }

/* ── SERVICES ── */
#services { background: var(--beige); }

.services-head { text-align: center; max-width: 580px; margin: 0 auto 4rem; }
.services-head p { font-size: .97rem; font-weight: 300; line-height: 1.75; color: var(--taupe); }

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

.card { background: var(--white); border-radius: var(--radius); padding: 2.25rem; border: 1px solid transparent; transition: all .4s var(--ease); }
.card:hover { border-color: var(--rose); transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card-icon { width: 52px; height: 52px; background: var(--beige); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; transition: background .3s; }
.card:hover .card-icon { background: var(--primary); }
.card-icon svg { width: 22px; height: 22px; stroke: var(--primary); stroke-width: 1.5; fill: none; transition: stroke .3s; }
.card:hover .card-icon svg { stroke: var(--white); }

.card-name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 400; color: var(--primary-dark); margin-bottom: .6rem; }
.card-problem { font-size: .82rem; font-weight: 300; color: var(--taupe); line-height: 1.65; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--beige); }
.card-list { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.card-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .82rem; font-weight: 300; line-height: 1.5; color: var(--text-body); }
.card-list li::before { content: '→'; color: var(--rose); font-size: .72rem; margin-top: .18rem; flex-shrink: 0; }

/* ── METHOD ── */
#method { background: var(--primary-dark); position: relative; overflow: hidden; }

.method-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 65% 90% at 85% 50%, rgba(142, 47, 63, .35), transparent 65%); pointer-events: none; }

.method-head { text-align: center; max-width: 580px; margin: 0 auto 5rem; position: relative; }
.method-head .section-tag { color: rgba(216, 182, 176, .65); }
.method-head .section-title { color: var(--white); }
.method-head .section-title em { color: var(--rose); }
.method-head p { font-size: .97rem; font-weight: 300; line-height: 1.75; color: rgba(255, 253, 249, .5); }

.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.method-step { position: relative; }
.method-step:not(:last-child)::after { content: ''; position: absolute; top: 2.8rem; right: -1rem; width: 2rem; height: 1px; background: rgba(216, 182, 176, .2); }

.step-num { font-family: var(--font-display); font-size: 5.5rem; font-weight: 300; color: rgba(216, 182, 176, .1); line-height: 1; margin-bottom: -.4rem; }
.step-title { font-family: var(--font-display); font-size: 1.45rem; font-weight: 400; color: var(--rose); margin-bottom: .65rem; }
.step-desc { font-size: .88rem; font-weight: 300; line-height: 1.75; color: rgba(255, 253, 249, .5); }

/* ── BENEFITS ── */
#benefits { background: var(--ivory); }

.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.benefits-list { display: flex; flex-direction: column; gap: 1.25rem; }
.benefit-row { display: flex; align-items: center; gap: 1.25rem; padding: 1.35rem 1.5rem; background: var(--white); border-radius: var(--radius); border-left: 3px solid var(--rose); transition: all .4s var(--ease); }
.benefit-row:hover { border-left-color: var(--primary); transform: translateX(6px); box-shadow: var(--shadow-sm); }
.benefit-icon { width: 36px; height: 36px; background: var(--beige); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.benefit-text { font-size: .93rem; font-weight: 400; color: var(--text-body); line-height: 1.4; }

.quote-card { background: linear-gradient(145deg, var(--primary), var(--secondary)); border-radius: var(--radius); padding: 3rem; position: relative; overflow: hidden; margin-bottom: 1.5rem; }
.quote-card::before { content: '"'; position: absolute; top: -1rem; left: 1.5rem; font-family: var(--font-display); font-size: 11rem; font-weight: 300; color: rgba(255, 253, 249, .07); line-height: 1; }
.quote-text { font-family: var(--font-display); font-size: 1.55rem; font-weight: 300; font-style: italic; line-height: 1.5; color: var(--white); margin-bottom: 1.25rem; position: relative; }
.quote-attr { font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(216, 182, 176, .75); position: relative; }

.benefits-cta-box { background: var(--beige); border-radius: var(--radius); padding: 2rem; }
.benefits-cta-box p { font-size: .88rem; font-weight: 300; line-height: 1.75; color: var(--taupe); margin-bottom: 1.25rem; }

.btn-sm { display: inline-flex; align-items: center; gap: .5rem; background: var(--primary); color: var(--white); padding: .85rem 1.6rem; border-radius: var(--radius-pill); font-size: .85rem; font-weight: 500; letter-spacing: .04em; text-decoration: none; transition: all .4s var(--ease); }
.btn-sm:hover { background: var(--secondary); transform: translateY(-2px); }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--beige); }

.testimonials-head { text-align: center; max-width: 560px; margin: 0 auto 4rem; }
.testimonials-head p { font-size: .97rem; font-weight: 300; line-height: 1.75; color: var(--taupe); }

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

.t-card { background: var(--white); border-radius: var(--radius); padding: 2rem; transition: all .4s var(--ease); display: flex; flex-direction: column; }
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.t-stars { display: flex; gap: .2rem; margin-bottom: 1rem; color: var(--rose); font-size: .85rem; }
.t-text { font-family: var(--font-display); font-size: 1.12rem; font-weight: 300; font-style: italic; line-height: 1.65; color: var(--text-body); margin-bottom: 1.5rem; flex: 1; }
.t-author { display: flex; align-items: center; gap: .75rem; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--primary)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--white); flex-shrink: 0; }
.t-name { font-size: .88rem; font-weight: 500; color: var(--primary-dark); }
.t-info { font-size: .73rem; color: var(--taupe); margin-top: .1rem; }

/* ── FAQ ── */
#faq { background: var(--white); }

.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.faq-aside p { font-size: .97rem; font-weight: 300; line-height: 1.8; color: var(--taupe); margin-top: 1.25rem; margin-bottom: 2rem; }

.btn-outline-sm { display: inline-flex; align-items: center; gap: .5rem; border: 1px solid var(--rose); color: var(--primary); padding: .8rem 1.5rem; border-radius: var(--radius-pill); font-size: .83rem; font-weight: 500; text-decoration: none; transition: all .4s var(--ease); }
.btn-outline-sm:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-2px); }

.faq-list { border-top: 1px solid var(--beige); }
.faq-item { border-bottom: 1px solid var(--beige); }
.faq-q { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1.4rem 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-body); font-size: .97rem; font-weight: 400; color: var(--text-dark); transition: color .3s; }
.faq-q:hover, .faq-q.open { color: var(--primary); }
.faq-plus { width: 26px; height: 26px; border-radius: 50%; background: var(--beige); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--primary); flex-shrink: 0; transition: all .3s; }
.faq-q.open .faq-plus { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-a { font-size: .9rem; font-weight: 300; line-height: 1.85; color: var(--taupe); max-height: 0; overflow: hidden; padding: 0; transition: max-height .45s var(--ease), padding .45s; }
.faq-a.open { max-height: 300px; padding-bottom: 1.5rem; }

/* ── CTA FINAL ── */
#cta-final { text-align: center; padding: 9rem 3rem; background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 100%); position: relative; overflow: hidden; }

.cta-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 100% at 85% 50%, rgba(216, 182, 176, .08), transparent 65%), radial-gradient(ellipse 50% 80% at 15% 50%, rgba(142, 47, 63, .3), transparent 65%); }
.cta-final-content { position: relative; }
.cta-final-content .section-tag { color: rgba(216, 182, 176, .65); display: inline-flex; }

.cta-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 5.5rem); font-weight: 300; line-height: 1.07; color: var(--white); margin-bottom: 1rem; }
.cta-title em { font-style: italic; color: var(--rose); }
.cta-sub { font-size: 1rem; font-weight: 300; line-height: 1.75; color: rgba(255, 253, 249, .55); max-width: 460px; margin: 0 auto 2.5rem; }

.btn-cta { display: inline-flex; align-items: center; gap: .5rem; background: var(--rose); color: var(--primary-dark); padding: 1.15rem 3rem; border-radius: var(--radius-pill); font-size: .97rem; font-weight: 700; letter-spacing: .05em; text-decoration: none; transition: all .4s var(--ease); }
.btn-cta:hover { background: #e8c8c2; transform: translateY(-3px); box-shadow: 0 18px 42px rgba(216, 182, 176, .35); }

/* ── FOOTER ── */
footer { background: var(--text-dark); padding: 5rem 3rem 2.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }

.f-brand-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--rose); margin-bottom: .15rem; }
.f-brand-sub { font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); margin-bottom: 1.25rem; }
.f-brand-desc { font-size: .83rem; font-weight: 300; line-height: 1.75; color: rgba(250, 248, 245, .38); max-width: 250px; margin-bottom: 1.5rem; }
.f-socials { display: flex; gap: .65rem; }
.f-social { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(216, 182, 176, .18); display: flex; align-items: center; justify-content: center; color: var(--rose); text-decoration: none; transition: all .3s; }
.f-social:hover { background: var(--primary); border-color: var(--primary); }
.f-col-title { font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); margin-bottom: 1.25rem; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.f-links a { font-size: .83rem; font-weight: 300; color: rgba(250, 248, 245, .42); text-decoration: none; transition: color .3s; }
.f-links a:hover { color: var(--rose); }
.f-contact-row { display: flex; align-items: flex-start; gap: .6rem; font-size: .83rem; font-weight: 300; color: rgba(250, 248, 245, .42); margin-bottom: .65rem; }
.f-contact-row .icon { color: var(--rose); font-size: .9rem; flex-shrink: 0; margin-top: .05rem; }
.footer-bottom { border-top: 1px solid rgba(250, 248, 245, .05); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: .73rem; color: rgba(250, 248, 245, .28); }
.f-legal { display: flex; gap: 1.5rem; }
.f-legal a { font-size: .73rem; color: rgba(250, 248, 245, .28); text-decoration: none; transition: color .3s; }
.f-legal a:hover { color: var(--rose); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-step:not(:last-child)::after { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  section { padding: 5rem 1.5rem; }
  nav { padding: 1.1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; gap: 3rem; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-portrait-wrap { order: -1; }
  .hero-portrait { width: 220px; height: 280px; }
  .hero-ring-1, .hero-ring-2, .hero-dot, .hero-dot-2 { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-frame { max-width: 280px; margin: 0 auto; }
  .about-ring, .about-ring-2 { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .f-legal { justify-content: center; }
}
