/* ============================================================
   RESUMEFY.IO — "CALM" EDITION
   Inspired by Wix "HR Agency (Calm)" template (wh-1197)
   Palette: Cream/Ivory background · Charcoal serif headlines
            Coral/Terracotta CTA accent · Sage green secondary
   ============================================================ */

/* ── FONTS loaded via head.php: Playfair Display (serif) + Inter (sans) ── */

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #2B2620;
  background: #FBF6EE;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #C75D3D; text-decoration: none; transition: color .2s; }
a:hover { color: #A8482E; }

/* ── COLOUR VARIABLES (reference) ──────────────────────────
   --cream:    #FBF6EE   main background
   --cream-2:  #F3ECE0   secondary panel background
   --charcoal: #2B2620   headline / primary text
   --text:     #5C5547   body text
   --coral:    #C75D3D   CTA / accent
   --coral-dk: #A8482E   CTA hover
   --sage:     #A8B89A   secondary accent
   --sage-lt:  #E7EDE1   light sage panel
   --cream-bd: #E5DCC9   borders
   --white:    #FFFFFF
   ============================================================ */

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: #2B2620;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem,5.5vw,4.4rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem,4vw,3rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem,2.5vw,1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Inter',sans-serif; }
p  { margin-bottom: 1rem; color: #5C5547; font-size: 1.04rem; }
p:last-child { margin-bottom: 0; }
strong { color: #2B2620; font-weight: 600; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container         { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 800px;  margin: 0 auto; padding: 0 28px; }
.section           { padding: 100px 0; }
.section.bg-cream  { background: #FBF6EE; }
.section.bg-panel  { background: #F3ECE0; }
.section.bg-sage    { background: #EEF1E8; }
.section.bg-charcoal{ background: #2B2620; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.text-center { text-align: center; }
.align-center { align-items: center; }
.gap-64 { gap: 64px; }
.gap-80 { gap: 80px; }

/* ── GRIDS ──────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }

/* ── BUTTONS — pill-shaped, coral primary ──────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 34px; font-size: .96rem; font-weight: 600;
  border-radius: 50px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .25s ease; white-space: nowrap;
  font-family: 'Inter',sans-serif; text-decoration: none; line-height: 1;
}
.btn-primary {
  background: #C75D3D; color: #FFF8EF; border-color: #C75D3D;
  box-shadow: 0 6px 20px rgba(199,93,61,.25);
}
.btn-primary:hover { background: #A8482E; border-color: #A8482E; transform: translateY(-1px); box-shadow: 0 8px 26px rgba(199,93,61,.32); }
.btn-outline { background: transparent; color: #2B2620; border-color: #2B2620; }
.btn-outline:hover { background: #2B2620; color: #FBF6EE; }
.btn-outline-white { background: transparent; color: #FBF6EE; border-color: rgba(251,246,238,.45); }
.btn-outline-white:hover { background: rgba(251,246,238,.1); border-color: #FBF6EE; }
.btn-cream { background: #FBF6EE; color: #2B2620; border-color: #FBF6EE; }
.btn-cream:hover { background: #F3ECE0; }
.btn-lg  { padding: 18px 42px; font-size: 1.05rem; }
.btn-sm  { padding: 10px 22px; font-size: .88rem; }
.btn-full { width: 100%; padding: 16px; }
.btn-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,.2); display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; }

/* ── HEADER — pill nav bar floating on cream ───────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(251,246,238,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid #EDE3CF;
  overflow: visible;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 0 auto; padding: 18px 28px;
}
.site-logo {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  color: #2B2620 !important; letter-spacing: -.02em;
}
.site-logo span { color: #C75D3D; }
.site-logo:hover { opacity: .85; }

/* Nav — simple text links like the reference */
.main-nav ul { display: flex; align-items: center; gap: 6px; list-style: none; }
.main-nav a {
  color: #5C5547; font-size: .92rem; font-weight: 500;
  padding: 9px 16px; border-radius: 50px; transition: all .2s;
  font-family: 'Inter', sans-serif;
}
.main-nav a:hover,
.main-nav a.active { color: #2B2620; background: #F0E6D2; font-weight: 600; }
.main-nav .btn { margin-left: 8px; }
.main-nav .btn-outline-pill {
  border: 1.5px solid #2B2620; color: #2B2620; background: transparent;
  padding: 9px 20px; border-radius: 50px; font-weight: 600; font-size: .9rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.main-nav .btn-outline-pill:hover { background: #2B2620; color: #FBF6EE; }
.main-nav .btn-outline-pill .circ {
  width: 22px; height: 22px; border-radius: 50%; background: #C75D3D;
  display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: .7rem;
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: .7em; opacity: .6; }
.dropdown {
  visibility: hidden; opacity: 0; pointer-events: none;
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #FFFFFF; border: 1px solid #EDE3CF;
  border-radius: 16px; padding: 10px;
  min-width: 250px; box-shadow: 0 20px 50px rgba(43,38,32,.14);
  z-index: 9999; transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-dropdown:hover > .dropdown { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown li { list-style: none; }
.dropdown a {
  display: block; padding: 10px 14px; border-radius: 10px;
  color: #5C5547 !important; font-size: .88rem; white-space: nowrap;
}
.dropdown a:hover { background: #F3ECE0; color: #2B2620 !important; }

/* Hamburger */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 6px;
  flex-direction: column; gap: 5px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: #2B2620; transition: all .3s; border-radius: 2px; }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO — large serif headline, cream bg, photo collage ──── */
.hero {
  background: #FBF6EE;
  padding: 90px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFFFFF; color: #C75D3D;
  font-size: .82rem; font-weight: 600;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 30px;
  border: 1px solid #EDE3CF;
}
.hero h1 { color: #2B2620; max-width: 920px; margin: 0 auto 28px; }
.hero h1 em { font-style: italic; color: #C75D3D; }
.hero-sub {
  font-size: 1.18rem; color: #5C5547; max-width: 600px; margin: 0 auto 40px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

/* Photo collage row under hero headline */
.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: end;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
.collage-img {
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  background: #E7EDE1;
  aspect-ratio: 3/3.6;
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
}
.collage-img.sage   { background: #DCE5D2; }
.collage-img.cream2 { background: #F0E6D2; }
.collage-img.center { aspect-ratio: 3/4.2; }
.collage-svg { width: 78%; opacity: .9; }

/* ── TRUST STRIP ────────────────────────────────────────── */
.trust-strip { background: #F3ECE0; padding: 26px 0; border-top: 1px solid #EDE3CF; border-bottom: 1px solid #EDE3CF; }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; color: #5C5547; font-size: .87rem; font-weight: 500; }
.trust-item span { color: #C75D3D; font-weight: 700; }

/* ── SIGNUP CARD (used on homepage, light cream variant) ──── */
.signup-card-wrap { background: #2B2620; border-radius: 32px; padding: 56px; margin-top: 0; }
.signup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.signup-left h2 { color: #FBF6EE; margin-bottom: 18px; }
.signup-left h2 em { color: #C75D3D; font-style: italic; }
.signup-left p { color: rgba(251,246,238,.62); font-size: 1.05rem; }
.signup-left .hero-trust-mini { margin-top: 28px; font-size: .85rem; color: rgba(251,246,238,.4); }
.signup-card { background: #FBF6EE; border-radius: 22px; padding: 36px; }
.signup-card h3 { color: #2B2620; font-size: 1.2rem; margin-bottom: 5px; }
.form-sub { color: #8A8270; font-size: .85rem; margin-bottom: 22px; }

/* ── SECTION HEADERS ────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: #FFFFFF; color: #C75D3D;
  font-size: .8rem; font-weight: 600;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 18px;
  border: 1px solid #EDE3CF;
}
.section-eyebrow.on-dark { background: rgba(255,255,255,.08); color: #E89B7F; border-color: rgba(255,255,255,.15); }
.section-eyebrow.on-sage { background: #FFFFFF; border-color: #D7E0CC; }
.section-header { margin-bottom: 56px; }
.section-header.text-center .section-desc { margin: 0 auto; }
h2 em, .section-title em { font-style: italic; color: #C75D3D; }
.section-desc { font-size: 1.08rem; color: #5C5547; max-width: 620px; }

/* ── FORMS ──────────────────────────────────────────────── */
.form-group { margin-bottom: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-label {
  display: block; font-size: .76rem; font-weight: 600;
  color: #8A8270; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: .06em;
}
.form-input, .form-textarea {
  width: 100%; padding: 13px 16px;
  background: #FFFFFF; border: 1.5px solid #E5DCC9;
  border-radius: 12px; color: #2B2620; font-family: inherit; font-size: .94rem;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: #C75D3D; box-shadow: 0 0 0 4px rgba(199,93,61,.1); }
.form-input::placeholder, .form-textarea::placeholder { color: #B5AC98; }
.optional { font-weight: 400; font-size: .74rem; color: #B5AC98; }
.form-disclaimer { font-size: .76rem; color: #8A8270; margin-top: 14px; line-height: 1.6; }
.form-disclaimer a { color: #2B2620; font-weight: 600; }

/* Upload zone */
.upload-zone {
  border: 2px dashed #DCD0B8; border-radius: 14px;
  padding: 24px; text-align: center; cursor: pointer; position: relative;
  background: #F8F3E8; transition: all .2s;
}
.upload-zone:hover { border-color: #C75D3D; background: #FBF1E8; }
.upload-zone-icon { font-size: 1.7rem; margin-bottom: 8px; }
.upload-zone p { color: #8A8270; font-size: .84rem; margin: 0; }
.file-name-display { color: #C75D3D; font-size: .8rem; margin-top: 6px; font-weight: 600; }

/* Alerts */
.alert { padding: 13px 17px; border-radius: 12px; font-size: .9rem; margin-bottom: 14px; }
.alert-success { background: #E7EDE1; color: #4A6741; border: 1px solid #D2DDC5; }
.alert-error   { background: #FBEAE5; color: #A8482E; border: 1px solid #F2D2C5; }

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: #FFFFFF; border-radius: 22px; padding: 36px;
  border: 1px solid #EDE3CF; transition: all .3s;
}
.card:hover { box-shadow: 0 16px 40px rgba(43,38,32,.07); transform: translateY(-2px); }
.card-icon { font-size: 2.1rem; margin-bottom: 16px; }

/* ── SERVICE CARDS ──────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.service-card {
  background: #FFFFFF; border-radius: 24px; padding: 36px;
  border: 1px solid #EDE3CF; transition: all .3s; position: relative; overflow: hidden;
}
.service-card:hover { box-shadow: 0 18px 46px rgba(43,38,32,.09); transform: translateY(-4px); border-color: #E8D9BE; }
.service-icon {
  width: 54px; height: 54px; background: #F3ECE0; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; font-family: 'Inter',sans-serif; font-weight: 700; }
.service-card p  { font-size: .92rem; color: #8A8270; margin: 0; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: #C75D3D; font-size: .87rem; font-weight: 600; margin-top: 18px;
  transition: gap .2s;
}
.service-link:hover { gap: 10px; }

/* ── WHY SECTION (on charcoal) ──────────────────────────── */
.why-cards { display: flex; flex-direction: column; gap: 14px; }
.why-card {
  display: flex; gap: 18px; align-items: flex-start; padding: 24px;
  background: rgba(255,255,255,.04); border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08); transition: background .2s;
}
.why-card:hover { background: rgba(199,93,61,.08); }
.why-number {
  flex-shrink: 0; width: 44px; height: 44px;
  background: #C75D3D; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; color: #FFF8EF; font-family: 'Inter',sans-serif;
}
.why-card h4 { color: #FBF6EE; font-size: 1.02rem; margin-bottom: 5px; }
.why-card p  { color: rgba(251,246,238,.55); font-size: .89rem; margin: 0; }

/* ── AUDIENCE CARDS ─────────────────────────────────────── */
.audience-card {
  padding: 30px; background: #FFFFFF; border-radius: 22px;
  border: 1px solid #EDE3CF; transition: all .3s;
}
.audience-card:hover { box-shadow: 0 14px 36px rgba(43,38,32,.08); transform: translateY(-3px); }
.audience-icon { font-size: 2.2rem; margin-bottom: 15px; }
.audience-card h3 { font-size: 1.05rem; margin-bottom: 9px; font-family: 'Inter',sans-serif; font-weight: 700; }
.audience-card p  { font-size: .89rem; color: #8A8270; margin: 0; }

/* ── STATS ──────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem,5vw,3.4rem); font-weight: 600;
  color: #C75D3D; line-height: 1; display: block; margin-bottom: 10px;
}
.stat-label { color: rgba(251,246,238,.6); font-size: .9rem; }

/* ── CTA STRIP ──────────────────────────────────────────── */
.cta-strip { background: #2B2620; padding: 90px 0; text-align: center; position: relative; overflow: hidden; }
.cta-strip h2 { color: #FBF6EE; margin-bottom: 16px; }
.cta-strip h2 em { color: #C75D3D; font-style: italic; }
.cta-strip p  { color: rgba(251,246,238,.6); max-width: 540px; margin: 0 auto 34px; }
.cta-buttons  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-sub      { margin-top: 20px !important; font-size: .82rem !important; color: rgba(251,246,238,.35) !important; }

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero { background: #FBF6EE; padding: 84px 0 70px; text-align: center; }
.page-hero-sm { padding: 64px 0 50px; }
.page-hero .hero-eyebrow { margin-bottom: 18px; }
.page-hero h1 { color: #2B2620; margin-bottom: 16px; }
.page-hero h1 em { color: #C75D3D; font-style: italic; }
.page-hero p  { color: #5C5547; font-size: 1.1rem; max-width: 580px; margin: 0 auto 28px; }

/* ── SERVICES DETAIL ────────────────────────────────────── */
.service-section { padding: 84px 0; }
.service-section-header { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 20px; }
.service-big-icon {
  font-size: 1.8rem; flex-shrink: 0; margin-top: 2px;
  width: 56px; height: 56px; background: #F3ECE0; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.service-section-header h2 { font-size: 1.7rem; margin-bottom: 6px; }
.service-sub { color: #C75D3D; font-size: .95rem; font-weight: 600; margin: 0; font-family: 'Inter',sans-serif; }
.service-desc { color: #5C5547; font-size: .98rem; margin-bottom: 26px; }
.benefit-list { list-style: none; margin-bottom: 30px; }
.benefit-list li { display: flex; gap: 12px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid #EDE3CF; }
.benefit-list li:last-child { border-bottom: none; }
.check {
  flex-shrink: 0; width: 22px; height: 22px;
  background: #F3ECE0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #C75D3D; font-size: .72rem; font-weight: 700; margin-top: 2px;
}
.service-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.service-visual-card {
  background: #2B2620; border-radius: 26px; padding: 44px; text-align: center; position: relative; overflow: hidden;
}
.svc-big-icon { font-size: 4.4rem; margin-bottom: 16px; }
.service-visual-card h3 { color: #FBF6EE; margin-bottom: 22px; font-size: 1.1rem; font-family: 'Inter',sans-serif; }
.who-for { text-align: left; }
.who-label { color: rgba(251,246,238,.45); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.who-item { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 9px; }
.who-item span { color: #C75D3D; flex-shrink: 0; margin-top: 2px; font-weight: 700; }
.who-item { color: rgba(251,246,238,.6); font-size: .86rem; }
.mt-20 { margin-top: 20px; }

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.about-beliefs { background: #2B2620; border-radius: 26px; padding: 40px; }
.belief-item { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 18px; }
.belief-item:last-child { margin-bottom: 0; }
.check-teal { color: #C75D3D; font-size: 1rem; flex-shrink: 0; margin-top: 3px; font-weight: 700; }
.belief-item p { color: rgba(251,246,238,.62); font-size: .95rem; margin: 0; }
.process-steps { display: flex; flex-direction: column; }
.process-step { display: flex; gap: 22px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid #EDE3CF; }
.process-step:last-child { border-bottom: none; }
.step-number {
  flex-shrink: 0; width: 46px; height: 46px;
  background: #C75D3D; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #FFF8EF; font-family: 'Inter',sans-serif;
}
.process-step h4 { color: #2B2620; margin-bottom: 6px; font-family: 'Inter',sans-serif; }
.process-step p  { color: #8A8270; font-size: .92rem; margin: 0; }
.value-card { padding: 28px; border-radius: 18px; background: #FFFFFF; border: 1px solid #EDE3CF; border-left: 4px solid #C75D3D; transition: box-shadow .2s; }
.value-card:hover { box-shadow: 0 10px 30px rgba(43,38,32,.07); }
.value-card h4 { color: #2B2620; margin-bottom: 8px; font-family: 'Inter',sans-serif; }
.value-card p  { color: #8A8270; font-size: .9rem; margin: 0; }
.legal-notice { background: #F3ECE0; border-top: 1px solid #EDE3CF; padding: 34px 0; }
.legal-notice p { font-size: .84rem; color: #8A8270; max-width: 740px; margin: 0 auto; }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-info-card { background: #FFFFFF; border-radius: 22px; padding: 30px; border: 1px solid #EDE3CF; margin-bottom: 26px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 22px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 42px; height: 42px; background: #F3ECE0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.contact-info-item h4 { color: #2B2620; margin-bottom: 4px; font-size: .94rem; font-family: 'Inter',sans-serif; }
.contact-info-item p  { color: #8A8270; font-size: .89rem; margin: 0; }
.contact-info-item a  { color: #C75D3D; font-weight: 600; font-size: .9rem; }
.contact-cta-box { background: #2B2620; border-radius: 22px; padding: 30px; }
.contact-cta-box h3 { color: #E89B7F; margin-bottom: 11px; font-size: 1.1rem; }
.contact-cta-box p  { color: rgba(251,246,238,.6); font-size: .9rem; margin-bottom: 20px; }
.form-light .form-label { color: #8A8270; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: #2B2620; padding: 68px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 46px; padding-bottom: 56px; }
.footer-brand h3 { font-size: 1.4rem; color: #FBF6EE; margin-bottom: 9px; font-family: 'Playfair Display',serif; }
.footer-brand h3 span { color: #C75D3D; }
.footer-brand p  { color: rgba(251,246,238,.45); font-size: .87rem; max-width: 270px; margin-bottom: 0; }
.footer-col h4 { color: #FBF6EE; font-size: .85rem; font-weight: 700; margin-bottom: 17px; text-transform: uppercase; letter-spacing: .06em; font-family: 'Inter',sans-serif; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: rgba(251,246,238,.48); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: #E89B7F; }
.footer-bottom { border-top: 1px solid rgba(251,246,238,.08); padding: 24px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(251,246,238,.3); font-size: .78rem; margin: 0; }
.footer-disclaimer { color: rgba(251,246,238,.26) !important; font-size: .73rem !important; max-width: 580px; line-height: 1.55; }

/* ── PRIVACY / TERMS ────────────────────────────────────── */
.legal-page { padding: 76px 0; }
.legal-page h1 { margin-bottom: 9px; }
.legal-page .updated { color: #B5AC98; font-size: .84rem; margin-bottom: 42px; }
.legal-page h2 { font-size: 1.3rem; margin: 34px 0 12px; font-family: 'Inter',sans-serif; }
.legal-page h3 { font-size: 1.1rem; margin: 22px 0 8px; font-family: 'Inter',sans-serif; }
.legal-page p  { color: #5C5547; line-height: 1.8; }
.legal-page ul { padding-left: 20px; margin: 10px 0 14px; }
.legal-page ul li { color: #5C5547; margin-bottom: 7px; font-size: .97rem; line-height: 1.6; }
.legal-back { display: inline-flex; align-items: center; gap: 6px; color: #C75D3D; font-size: .9rem; margin-bottom: 28px; font-weight: 600; }

/* ── 404 PAGE ───────────────────────────────────────────── */
.page-404 { background: #FBF6EE; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.page-404-inner { padding: 40px 24px; }
.page-404 .num { font-family: 'Playfair Display',serif; font-size: clamp(5rem,15vw,9rem); font-weight: 700; color: #C75D3D; line-height: 1; }
.page-404 h2  { color: #2B2620; font-size: 1.6rem; margin: 16px 0 12px; }
.page-404 p   { color: #8A8270; margin-bottom: 30px; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width:1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .signup-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-collage { grid-template-columns: 1fr 1fr; }
  .hero-collage > :nth-child(3) { display: none; }
}
@media (max-width:768px) {
  .grid-2,.grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #FBF6EE; padding: 16px 20px; border-top: 1px solid #EDE3CF;
    flex-direction: column; box-shadow: 0 16px 40px rgba(43,38,32,.1);
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 2px; width: 100%; }
  .main-nav a  { display: block; padding: 11px 14px; }
  .main-nav .btn,.main-nav .btn-outline-pill { margin: 8px 0 0; display: flex; justify-content: center; }
  .menu-toggle { display: flex; }
  .dropdown { visibility: visible !important; opacity: 1 !important; pointer-events: auto !important; position: static; transform: none !important; box-shadow: none; border: none; background: rgba(43,38,32,.03); padding: 4px 0 4px 12px; border-radius: 0; display: none; transition: none; }
  .has-dropdown:hover > .dropdown { display: none; }
  .has-dropdown.open > .dropdown { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .trust-strip-inner { gap: 22px; justify-content: flex-start; }
  .section { padding: 64px 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .service-section-header { flex-direction: column; gap: 12px; }
  .hero-collage { grid-template-columns: 1fr; }
  .hero-collage > :nth-child(2),
  .hero-collage > :nth-child(3) { display: none; }
  .signup-card-wrap { padding: 28px; border-radius: 22px; }
}
@media (max-width:480px) {
  .hero { padding: 64px 0 0; }
  .btn-lg { padding: 15px 28px; font-size: .98rem; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeInUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.anim { opacity: 0; }
.anim.visible { animation: fadeInUp .55s ease forwards; }
