/* ==========================================================================
   BASTA SOLUTIONS — SHARED STYLESHEET
   ========================================================================== */

:root {
  --red: #e63027;
  --red-deep: #b8231b;
  --red-bright: #ff3c33;
  --black: #0a0a0a;
  --ink: #1a1a1a;
  --charcoal: #2a2a2a;
  --silver: #c8c8cc;
  --silver-light: #e5e5e8;
  --bone: #f5f5f3;
  --white: #ffffff;
  --rule: rgba(255, 255, 255, 0.1);
  --rule-dark: rgba(10, 10, 10, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.display { font-family: 'Playfair Display', serif; font-weight: 500; letter-spacing: -0.02em; line-height: 1.04; }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); }
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ---------- NAV ---------- */
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-img {
  display: block;
  height: 120px;
  width: auto;
  transition: height 0.3s ease;
}
nav.scrolled .logo-img { height: 96px; }
.footer-logo { height: 40px; width: auto; display: block; opacity: 0.95; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, padding 0.3s ease;
}
nav.scrolled { border-bottom-color: var(--rule); padding: 10px 32px; }

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; position: relative; }
.nav-links > li > a:not(.btn), .nav-links > li > .dropdown-toggle {
  color: var(--silver-light); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
  background: none; border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px; padding: 0;
}
.nav-links > li > a:not(.btn):hover, .nav-links > li > .dropdown-toggle:hover { color: var(--red-bright); }
.nav-links > li > a:not(.btn).active, .nav-links > li.has-dropdown.active-parent > .dropdown-toggle { color: var(--red); }
.nav-cta.btn-primary { background: var(--red); color: var(--white) !important; padding: 10px 20px; border-radius: 4px; }
.nav-cta.btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(230,48,39,0.4); }
.nav-phone {
  display: inline-flex; align-items: center;
  background: var(--red); color: var(--white) !important;
  padding: 10px 20px; border-radius: 4px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.02em;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.nav-phone:hover { background: var(--red-deep); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(230,48,39,0.4); }
@media (max-width: 920px) { .nav-phone { font-size: 13px; padding: 8px 14px; } }
.nav-links > li > a.active::after {
  content: ''; display: block; width: 100%; height: 1px;
  background: var(--red); margin-top: 4px;
}

.dropdown-toggle::after {
  content: '▾'; font-size: 10px; opacity: 0.7;
}

.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: -16px; margin-top: 14px;
  background: var(--black);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 12px;
  min-width: 240px;
  list-style: none;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
  display: block; padding: 10px 14px; border-radius: 4px;
  color: var(--silver-light); text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu li a:hover { background: rgba(230, 48, 39, 0.12); color: var(--red-bright); }
.dropdown-menu li a small {
  display: block; font-size: 11px; font-weight: 400;
  color: var(--silver); margin-top: 2px;
  letter-spacing: 0;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 4px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  font-family: inherit; letter-spacing: 0.02em;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(230, 48, 39, 0.35); }
.btn-ghost-light { border-color: rgba(255,255,255,0.25); color: var(--white); background: transparent; }
.btn-ghost-light:hover { border-color: var(--white); background: var(--white); color: var(--black); }
.btn-ghost-dark { border-color: var(--rule-dark); color: var(--ink); background: transparent; }
.btn-ghost-dark:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn-arrow { transition: transform 0.25s; font-weight: 400; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.nav-cta { display: inline-flex; }
@media (max-width: 920px) {
  .nav-cta { font-size: 12px; padding: 7px 12px; align-self: center; }
}

.menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.menu-toggle span { display: block; height: 2px; background: var(--white); transition: 0.3s; }
@media (max-width: 920px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--black); padding: 20px 32px; gap: 4px;
    border-bottom: 1px solid var(--rule);
    align-items: stretch;
  }
  .nav-links.open > li { width: 100%; }
  .nav-links.open > li > a, .nav-links.open > li > .dropdown-toggle {
    display: block; padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 16px;
  }
  .nav-links.open .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: none; box-shadow: none;
    padding: 8px 0 8px 16px; margin: 0;
    border-bottom: 1px solid var(--rule);
  }
  .logo-img { height: 42px; }
}

/* ---------- HERO (HOME) ---------- */
.hero { background: var(--black); color: var(--white); padding: 160px 0 120px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -20%; right: -15%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(230, 48, 39, 0.25), transparent 60%); border-radius: 50%; pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -40%; left: -20%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(200, 200, 204, 0.08), transparent 60%); border-radius: 50%; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: end; position: relative; z-index: 1; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 50px; } .hero { padding: 130px 0 80px; } }
.hero h1 { font-size: clamp(48px, 7.8vw, 108px); margin: 24px 0 32px; color: var(--white); }
.hero h1 em { font-style: italic; font-weight: 400; background: linear-gradient(135deg, #ff5147, var(--red)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-meta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-aside { border-left: 2px solid var(--red); padding-left: 28px; }
.hero-aside p { font-size: 16px; color: var(--silver); margin-bottom: 28px; max-width: 380px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; border-top: 1px solid var(--rule); padding-top: 24px; }
.stat .num { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 500; color: var(--white); display: block; line-height: 1; }
.stat .label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver); margin-top: 8px; display: block; font-weight: 600; }

/* ---------- PAGE HEAD (subpages) ---------- */
.page-head { background: var(--black); color: var(--white); padding: 180px 0 100px; position: relative; overflow: hidden; }
.page-head::before { content: ''; position: absolute; top: -10%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(230, 48, 39, 0.22), transparent 60%); border-radius: 50%; pointer-events: none; }
.page-head .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); margin-bottom: 24px; font-weight: 600; }
.breadcrumb a { color: var(--silver); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red-bright); }
.breadcrumb span { opacity: 0.5; }
.breadcrumb .current { color: var(--red); }
.page-head h1 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(44px, 6.5vw, 84px); line-height: 1.05; letter-spacing: -0.02em; max-width: 900px; }
.page-head h1 em { font-style: italic; background: linear-gradient(135deg, #ff5147, var(--red)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.page-head .lead { color: var(--silver); font-size: 18px; max-width: 640px; margin-top: 24px; }
@media (max-width: 768px) { .page-head { padding: 130px 0 70px; } }

/* ---------- MARQUEE STRIP ---------- */
.strip { background: var(--red); color: var(--white); padding: 16px 0; overflow: hidden; }
.strip-track { display: flex; gap: 60px; white-space: nowrap; animation: scroll 35s linear infinite; font-family: 'Playfair Display', serif; font-size: 18px; font-style: italic; }
.strip-track span { display: inline-flex; align-items: center; gap: 60px; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- SERVICES (HOME) ---------- */
.services { padding: 130px 0; background: var(--bone); }
.section-head { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 80px; align-items: end; }
@media (max-width: 768px) { .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; } .services { padding: 80px 0; } }
.section-head h2 { font-size: clamp(36px, 5.2vw, 64px); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .service-grid { grid-template-columns: 1fr; } }
.service-card { background: var(--white); border-radius: 8px; padding: 40px 32px 32px; text-decoration: none; color: var(--ink); display: flex; flex-direction: column; min-height: 320px; transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }
.service-card:hover { background: var(--black); color: var(--white); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-num, .service-card:hover .service-arrow { color: var(--red-bright); }
.service-num { font-family: 'Playfair Display', serif; font-style: italic; font-size: 14px; color: var(--red); margin-bottom: 40px; transition: color 0.3s; font-weight: 500; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 500; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.01em; }
.service-card p { font-size: 14.5px; line-height: 1.6; opacity: 0.85; margin-bottom: auto; }
.service-arrow { margin-top: 32px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; color: var(--charcoal); transition: color 0.3s; }
.service-card:hover .service-arrow { color: var(--red-bright); }

/* ---------- PROMISE (HOME) ---------- */
.promise { padding: 140px 0; background: var(--white); }
@media (max-width: 768px) { .promise { padding: 80px 0; } }
.promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .promise-grid { grid-template-columns: 1fr; gap: 40px; } }
.promise-text h2 { font-size: clamp(36px, 5vw, 58px); margin: 24px 0 32px; }
.promise-text h2 em { font-style: italic; color: var(--red); }
.promise-text p { color: var(--charcoal); font-size: 17px; margin-bottom: 20px; max-width: 540px; }
.pull { border-left: 3px solid var(--red); padding: 8px 0 8px 24px; margin: 36px 0; font-family: 'Playfair Display', serif; font-size: 22px; font-style: italic; color: var(--ink); line-height: 1.4; }
.signature { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--rule-dark); }
.signature .name { font-family: 'Playfair Display', serif; font-size: 22px; font-style: italic; font-weight: 500; }
.signature .role { font-size: 12px; color: var(--charcoal); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-top: 4px; }
.promise-visual { position: relative; aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%); display: flex; align-items: center; justify-content: center; color: var(--white); padding: 40px; }
.promise-visual::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(230, 48, 39, 0.4), transparent 55%), radial-gradient(circle at 80% 80%, rgba(200, 200, 204, 0.1), transparent 55%); }
.promise-visual::after { content: ''; position: absolute; inset: 20px; border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; pointer-events: none; }
.visual-content { position: relative; text-align: center; z-index: 1; }
.visual-content .big { font-family: 'Playfair Display', serif; font-size: clamp(70px, 10vw, 130px); font-weight: 400; line-height: 1; background: linear-gradient(135deg, #ff5147, var(--red)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.visual-content .label { margin-top: 16px; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--silver); font-weight: 600; }
.visual-content .desc { margin-top: 24px; font-family: 'Playfair Display', serif; font-style: italic; font-size: 22px; line-height: 1.4; max-width: 300px; margin-left: auto; margin-right: auto; color: var(--white); }

/* ---------- PROMO BAND ---------- */
.promo { background: var(--red); color: var(--white); padding: 90px 0; position: relative; overflow: hidden; }
.promo::before { content: ''; position: absolute; top: 50%; right: -100px; transform: translateY(-50%); width: 400px; height: 400px; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50%; }
.promo::after { content: ''; position: absolute; top: 50%; right: 0px; transform: translateY(-50%); width: 250px; height: 250px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; }
.promo-inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 768px) { .promo-inner { grid-template-columns: 1fr; gap: 32px; } }
.promo h2 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; }
.promo p { margin-top: 16px; opacity: 0.92; font-size: 16px; max-width: 480px; }
.promo .btn-primary { background: var(--white); color: var(--black); }
.promo .btn-primary:hover { background: var(--black); color: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

/* ---------- AUDIENCES (HOME) ---------- */
.audiences { padding: 130px 0; background: var(--bone); }
@media (max-width: 768px) { .audiences { padding: 80px 0; } }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card { background: var(--white); border-radius: 8px; padding: 48px; transition: all 0.3s ease; position: relative; overflow: hidden; }
.audience-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--red); transition: height 0.4s ease; }
.audience-card:hover::before { height: 100%; }
.audience-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.06); transform: translateY(-2px); }
.audience-card .eyebrow { margin-bottom: 16px; }
.audience-card h3 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 500; margin-bottom: 20px; letter-spacing: -0.01em; }
.audience-card p { color: var(--charcoal); margin-bottom: 32px; }
.link-list { list-style: none; border-top: 1px solid var(--rule-dark); }
.link-list li { border-bottom: 1px solid var(--rule-dark); }
.link-list a { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 500; transition: padding 0.25s ease, color 0.25s ease; }
.link-list a:hover { color: var(--red); padding-left: 8px; }
.link-list a span:last-child { color: var(--silver); font-weight: 400; transition: color 0.25s; }
.link-list a:hover span:last-child { color: var(--red); }

/* ---------- CONTENT (subpages prose) ---------- */
.content { padding: 100px 0 120px; background: var(--white); }
@media (max-width: 768px) { .content { padding: 70px 0 90px; } }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 960px) { .content-grid { grid-template-columns: 1fr; gap: 50px; } }
.content-main h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.01em; line-height: 1.15;
  margin-top: 56px; margin-bottom: 24px;
  color: var(--ink);
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: 22px;
  letter-spacing: -0.005em; margin: 36px 0 12px;
  color: var(--ink);
}
.content-main p { margin-bottom: 18px; color: var(--charcoal); font-size: 16px; }
.content-main p strong { color: var(--ink); font-weight: 700; }
.content-main a { color: var(--red); text-decoration: none; border-bottom: 1px solid rgba(230, 48, 39, 0.3); transition: border-color 0.2s; }
.content-main a:hover { border-bottom-color: var(--red); }
.content-main ul { list-style: none; margin: 18px 0 24px; }
.content-main ul li {
  position: relative; padding: 8px 0 8px 28px;
  color: var(--charcoal); font-size: 16px;
  border-bottom: 1px solid var(--rule-dark);
}
.content-main ul li:last-child { border-bottom: none; }
.content-main ul li::before {
  content: '—'; position: absolute; left: 0; top: 8px;
  color: var(--red); font-weight: 600;
}
.content-main blockquote {
  border-left: 3px solid var(--red);
  padding: 8px 0 8px 24px; margin: 32px 0;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 22px; color: var(--ink); line-height: 1.4;
}

.sidebar { position: sticky; top: 110px; }
.sidebar-card {
  background: var(--bone); border-radius: 8px; padding: 32px;
  margin-bottom: 16px;
}
.sidebar-card .eyebrow { margin-bottom: 12px; }
.sidebar-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: 24px; line-height: 1.2;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.sidebar-card p { font-size: 14px; color: var(--charcoal); margin-bottom: 20px; }
.sidebar-card .btn { width: 100%; justify-content: center; }
@media (max-width: 960px) { .sidebar { position: static; } }

/* ---------- FAQ ACCORDION ---------- */
.faq-section { padding: 100px 0 60px; background: var(--white); }
.faq-section:last-of-type { padding-bottom: 120px; }
@media (max-width: 768px) { .faq-section { padding: 70px 0 40px; } }
.faq-section + .faq-section { padding-top: 0; }
.faq-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: -0.01em; margin-bottom: 40px;
  color: var(--ink);
}
.faq-section h2 em { font-style: italic; color: var(--red); }
.faq-list { border-top: 1px solid var(--rule-dark); }
.faq-item { border-bottom: 1px solid var(--rule-dark); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 24px 40px 24px 0;
  text-align: left; font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink); line-height: 1.4;
  position: relative; transition: color 0.2s;
}
.faq-question:hover { color: var(--red); }
.faq-question::after {
  content: '+'; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: 'Manrope', sans-serif; font-size: 24px;
  font-weight: 300; color: var(--red);
  transition: transform 0.3s ease;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 1500px; padding-bottom: 28px; }
.faq-answer p { color: var(--charcoal); font-size: 16px; margin-bottom: 14px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { list-style: none; margin: 12px 0; }
.faq-answer ul li { position: relative; padding: 6px 0 6px 24px; color: var(--charcoal); font-size: 15px; }
.faq-answer ul li::before { content: '—'; position: absolute; left: 0; color: var(--red); font-weight: 600; }
.faq-answer a { color: var(--red); text-decoration: none; border-bottom: 1px solid rgba(230, 48, 39, 0.3); }
.faq-answer a:hover { border-bottom-color: var(--red); }

/* ---------- CONTACT FORM ---------- */
.contact-section { padding: 100px 0 120px; background: var(--white); }
@media (max-width: 768px) { .contact-section { padding: 70px 0 80px; } }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 50px; } }
.form-block .eyebrow { margin-bottom: 12px; }
.form-block h2 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(32px, 4vw, 46px); margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--charcoal); font-weight: 700; margin-bottom: 8px;
}
.field label .req { color: var(--red); }
.field input, .field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--rule-dark); border-radius: 4px;
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--bone);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: var(--white);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-disclaimer {
  font-size: 12px; color: var(--charcoal); opacity: 0.75;
  margin: 20px 0; line-height: 1.5;
}
.form-disclaimer a { color: var(--red); text-decoration: none; border-bottom: 1px solid rgba(230, 48, 39, 0.3); }
.form-success {
  display: none; padding: 24px; background: rgba(230, 48, 39, 0.06);
  border-left: 3px solid var(--red); border-radius: 4px;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 18px; color: var(--ink);
}
.form-success.show { display: block; }
.form-error {
  display: none; padding: 14px 18px; background: rgba(220, 38, 38, 0.08);
  border-left: 3px solid #dc2626; border-radius: 4px; margin-top: 12px;
  font-family: 'Manrope', sans-serif; font-size: 14px; color: #b91c1c;
}
.form-error.show { display: block; }

.contact-side .info-stack { display: flex; flex-direction: column; gap: 28px; }
.contact-side .info-block .lbl { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; font-weight: 700; }
.contact-side .info-block a, .contact-side .info-block .val {
  color: var(--ink); text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 400; line-height: 1.4;
  display: block; transition: color 0.2s;
}
.contact-side .info-block a:hover { color: var(--red); }
.contact-side .map-card {
  background: var(--bone); border-radius: 8px; overflow: hidden;
  margin-top: 24px;
}
.contact-side .map-card iframe {
  width: 100%; height: 280px; border: none; display: block;
}

/* ---------- HOME CONTACT (DARK) ---------- */
.contact-dark { background: var(--black); color: var(--white); padding: 130px 0 60px; position: relative; overflow: hidden; }
.contact-dark::before { content: ''; position: absolute; bottom: -200px; left: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(230, 48, 39, 0.25), transparent 60%); border-radius: 50%; }
.contact-dark-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; position: relative; z-index: 1; margin-bottom: 80px; }
@media (max-width: 900px) { .contact-dark-grid { grid-template-columns: 1fr; gap: 50px; } .contact-dark { padding: 80px 0 40px; } }
.contact-dark h2 { font-size: clamp(40px, 6vw, 80px); margin: 24px 0 32px; color: var(--white); }
.contact-dark h2 em { font-style: italic; background: linear-gradient(135deg, #ff5147, var(--red)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.contact-dark .meta { color: var(--silver); max-width: 460px; }
.contact-dark .info-list { display: flex; flex-direction: column; gap: 32px; }
.contact-dark .info-block .lbl { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; font-weight: 700; }
.contact-dark .info-block a, .contact-dark .info-block .val {
  color: var(--white); text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 400; transition: color 0.2s;
  display: block; line-height: 1.4;
}
.contact-dark .info-block a:hover { color: var(--red-bright); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black); color: var(--silver);
  padding: 80px 0 40px;
  position: relative;
}
.site-footer.with-contact { padding-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-col .ft-logo { margin-bottom: 18px; display: inline-block; }
.footer-col p { color: var(--silver); font-size: 14px; max-width: 320px; line-height: 1.6; }
.footer-col h5 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: var(--silver-light); text-decoration: none;
  font-size: 14px; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--red-bright); }
.legal {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: var(--silver);
}
.legal a { color: inherit; text-decoration: none; transition: color 0.2s; }
.legal a:hover { color: var(--red-bright); }
.legal .legal-links { display: flex; gap: 20px; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- DEMO BANNER ---------- */
.demo-banner {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--silver-light);
  padding: 10px 20px; border-radius: 999px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  z-index: 200; box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  border: 1px solid var(--rule);
  display: inline-flex; align-items: center; gap: 10px;
}
.demo-banner .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse 2s ease-in-out infinite; }
.demo-banner .close { background: none; border: none; color: var(--silver); cursor: pointer; padding: 0 0 0 6px; font-size: 16px; line-height: 1; }
.demo-banner .close:hover { color: var(--white); }
.demo-banner.hidden { display: none; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
