/* =========================================================
   NOOR — Centre d'aide
   Aesthetic: Illuminated manuscript × Night observatory
   ========================================================= */

:root {
  /* Night palette */
  --night: #0B1628;
  --night-deep: #060D1A;
  --night-mid: #0F1D33;
  --night-elev: #152640;

  /* Gold palette */
  --gold: #C8A84B;
  --gold-light: #E5C97A;
  --gold-pale: #F0D07E;
  --gold-deep: #8B7330;

  /* Cream / text */
  --cream: #F5EFDD;
  --cream-mist: rgba(245, 239, 221, 0.74);
  --cream-soft: rgba(245, 239, 221, 0.58);
  --cream-whisper: rgba(245, 239, 221, 0.38);

  /* Lines */
  --line: rgba(200, 168, 75, 0.22);
  --line-soft: rgba(200, 168, 75, 0.1);
  --line-strong: rgba(200, 168, 75, 0.55);

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-tracked: 'Cinzel', 'Cormorant Garamond', serif;
  --font-arabic: 'Amiri', 'Cormorant Garamond', serif;

  /* Layout */
  --shell: min(1200px, calc(100% - 3.5rem));
  --shell-narrow: min(800px, calc(100% - 3rem));
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--night);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.svg-defs { position: absolute; width: 0; height: 0; pointer-events: none; }

/* ===== Night sky ambient gradient ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 60% 50% at 15% 5%, rgba(200, 168, 75, 0.10), transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 95%, rgba(60, 95, 160, 0.12), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(15, 29, 51, 0.5), transparent 80%),
    linear-gradient(180deg, var(--night-deep) 0%, var(--night) 40%, var(--night-mid) 70%, var(--night-deep) 100%);
  pointer-events: none;
}

/* ===== Twinkling stars ===== */
.starfield {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.starfield .star {
  position: absolute;
  background: var(--cream);
  border-radius: 50%;
  animation: twinkle var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: var(--o, 0.5);
  will-change: opacity, transform;
}
@keyframes twinkle {
  0%, 100% { opacity: calc(var(--o, 0.5) * 0.4); transform: scale(0.85); }
  50%      { opacity: var(--o, 0.5); transform: scale(1.15); }
}

/* ===== Grain overlay ===== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.8 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ===== Containers ===== */
.shell {
  width: var(--shell);
  margin-inline: auto;
  position: relative;
}
.shell-narrow {
  width: var(--shell-narrow);
}

/* ===== Typography tokens ===== */
.eyebrow {
  font-family: var(--font-tracked);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-block;
  padding-bottom: 0.2em;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--cream);
}
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

a { color: var(--gold-light); }
a:hover { color: var(--gold-pale); }

::selection {
  background: rgba(200, 168, 75, 0.3);
  color: var(--cream);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1.4rem 0;
  background: rgba(11, 22, 40, 0.7);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--cream);
}
.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}
.brand-mark svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px rgba(200, 168, 75, 0.35));
}
.brand-word {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
}
.brand-latin {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1;
}
.brand-arabic {
  font-family: var(--font-arabic);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 2.4rem;
}
.site-nav a {
  position: relative;
  color: var(--cream-mist);
  text-decoration: none;
  font-family: var(--font-tracked);
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.site-nav a:hover { color: var(--gold); }
.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 8rem 0 7rem;
  text-align: center;
  overflow: hidden;
}

.hero-crescent {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 780px;
  max-width: 140%;
  aspect-ratio: 1;
  transform: translate(-50%, -52%);
  opacity: 0.14;
  z-index: 0;
  pointer-events: none;
  animation: crescentBreathe 12s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 60px rgba(200, 168, 75, 0.15));
}
.hero-crescent svg { width: 100%; height: 100%; }
@keyframes crescentBreathe {
  from { opacity: 0.12; transform: translate(-50%, -52%) scale(0.98) rotate(-2deg); }
  to   { opacity: 0.18; transform: translate(-50%, -52%) scale(1.02) rotate(2deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-inner .eyebrow { margin-bottom: 2.8rem; }

.hero-title {
  font-size: clamp(2.6rem, 7.2vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  margin: 0 auto 2.2rem;
  letter-spacing: -0.018em;
  max-width: 10ch;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  font-size: 0.68em;
  letter-spacing: 0.02em;
  display: inline-block;
  padding: 0 0.25em;
}
.hero-accent {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-top: 0.2em;
  font-size: 0.82em;
  letter-spacing: 0.005em;
}

.hero-lead {
  max-width: 580px;
  margin: 0 auto;
  color: var(--cream-mist);
  font-size: 1.18rem;
  line-height: 1.75;
  font-weight: 400;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 3.75rem;
  opacity: 0.8;
}
.hero-divider .line {
  display: block;
  height: 1px;
  width: 90px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-star {
  width: 16px;
  height: 16px;
  animation: starPulse 5s ease-in-out infinite;
}
@keyframes starPulse {
  0%, 100% { opacity: 0.8; transform: rotate(0deg) scale(1); }
  50%      { opacity: 1;   transform: rotate(45deg) scale(1.1); }
}

/* =========================================================
   SECTION HEADS
   ========================================================= */
.section-head { margin-bottom: 4.5rem; }
.section-head.center { text-align: center; }
.section-head .eyebrow { margin-bottom: 1.4rem; }
.section-head h2 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  max-width: 740px;
  line-height: 1.1;
  font-weight: 300;
}
.section-head.center h2 { margin-inline: auto; }

/* =========================================================
   FEATURES
   ========================================================= */
.features {
  padding: 7.5rem 0;
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  opacity: 0.5;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feat-card {
  position: relative;
  padding: 2.6rem 1.8rem 2.2rem;
  background:
    linear-gradient(180deg, rgba(21, 38, 64, 0.6) 0%, rgba(11, 22, 40, 0.4) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.5s ease, transform 0.5s ease, background 0.5s ease;
  isolation: isolate;
}
.feat-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at top right, rgba(200, 168, 75, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}
.feat-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.feat-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.feat-card:hover::before { opacity: 1; }
.feat-card:hover::after { transform: scaleX(1); }

/* Corner ornament */
.feat-ornament {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.feat-ornament::before,
.feat-ornament::after {
  content: '';
  position: absolute;
  background: var(--gold);
  opacity: 0.55;
}
.feat-ornament::before {
  top: 0; right: 0;
  width: 22px; height: 1px;
}
.feat-ornament::after {
  top: 0; right: 0;
  width: 1px; height: 22px;
}

.feat-icon {
  position: relative;
  width: 62px;
  height: 62px;
  margin-bottom: 1.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(200, 168, 75, 0.10) 0%, rgba(200, 168, 75, 0.02) 100%);
  border: 1px solid var(--line);
}
.feat-icon::before,
.feat-icon::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.6;
}
.feat-icon::before { top: -3.5px; left: -3.5px; }
.feat-icon::after { bottom: -3.5px; right: -3.5px; }
.feat-icon svg { width: 34px; height: 34px; }

.feat-card h3 {
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 0.85rem;
  color: var(--cream);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.feat-card p {
  color: var(--cream-mist);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 7rem 0;
  position: relative;
}
.faq::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  opacity: 0.5;
}

.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
.faq-item[open] {
  background: linear-gradient(180deg, rgba(200, 168, 75, 0.03), transparent 60%);
}
.faq-item summary {
  list-style: none;
  padding: 1.85rem 0.25rem 1.85rem 0;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  transition: color 0.3s ease;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-light); }

.faq-num {
  font-family: var(--font-tracked);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 500;
  opacity: 0.8;
}
.faq-q { line-height: 1.35; }

.faq-toggle {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.4s cubic-bezier(.4,.2,.2,1);
}
.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-body {
  padding: 0 2rem 2rem calc(0.7rem + 2rem + 0.7rem);
  color: var(--cream-mist);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 720px;
  animation: faqFade 0.5s ease;
}
.faq-body p + p { margin-top: 0.8rem; }
.faq-body a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s;
}
.faq-body a:hover { border-color: var(--gold-light); }
@keyframes faqFade {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: 3rem 0 8rem;
}
.contact-card {
  position: relative;
  text-align: center;
  padding: 5.5rem 2rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center, rgba(200, 168, 75, 0.07), transparent 65%),
    linear-gradient(180deg, rgba(21, 38, 64, 0.3), rgba(11, 22, 40, 0.1));
  overflow: hidden;
}

/* Ornamental corners */
.contact-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.contact-corner::before,
.contact-corner::after {
  content: '';
  position: absolute;
  background: var(--gold);
  opacity: 0.75;
}
.contact-corner.tl { top: 12px; left: 12px; }
.contact-corner.tl::before { top: 0; left: 0; width: 26px; height: 1px; }
.contact-corner.tl::after  { top: 0; left: 0; width: 1px; height: 26px; }
.contact-corner.tr { top: 12px; right: 12px; }
.contact-corner.tr::before { top: 0; right: 0; width: 26px; height: 1px; }
.contact-corner.tr::after  { top: 0; right: 0; width: 1px; height: 26px; }
.contact-corner.bl { bottom: 12px; left: 12px; }
.contact-corner.bl::before { bottom: 0; left: 0; width: 26px; height: 1px; }
.contact-corner.bl::after  { bottom: 0; left: 0; width: 1px; height: 26px; }
.contact-corner.br { bottom: 12px; right: 12px; }
.contact-corner.br::before { bottom: 0; right: 0; width: 26px; height: 1px; }
.contact-corner.br::after  { bottom: 0; right: 0; width: 1px; height: 26px; }

.contact-crescent {
  width: 56px;
  height: 56px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 20px rgba(200, 168, 75, 0.5));
  animation: crescentBreathe 12s ease-in-out infinite alternate;
}
.contact-card h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.contact-card > p {
  color: var(--cream-mist);
  max-width: 500px;
  margin: 0 auto 2.75rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.85rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-tracked);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  font-weight: 500;
  transition: background 0.4s ease, color 0.4s ease, letter-spacing 0.4s ease;
  position: relative;
  overflow: hidden;
}
.contact-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
  z-index: -1;
}
.contact-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.contact-btn:hover {
  color: var(--night);
  letter-spacing: 0.22em;
}
.contact-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s ease;
}
.contact-btn:hover svg { transform: translateX(5px); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}
.footer-crescent {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 10px rgba(200, 168, 75, 0.35));
}
.footer-tagline {
  color: var(--cream-mist);
  max-width: 460px;
  margin-bottom: 1.75rem;
  font-size: 1rem;
  font-style: italic;
  font-family: var(--font-display);
}
.footer-links a {
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-tracked);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s;
}
.footer-links a:hover { border-color: var(--gold); }

.footer-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.75rem 0 1.5rem;
  opacity: 0.6;
}
.footer-divider span {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-divider svg { width: 12px; height: 12px; }

.footer-meta {
  font-family: var(--font-tracked);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-whisper);
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-crescent, .contact-crescent, .divider-star, .starfield .star {
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav { gap: 1.6rem; }
  .site-nav a { font-size: 0.7rem; letter-spacing: 0.2em; }
  .hero { padding: 6.5rem 0 5rem; }
}

@media (max-width: 680px) {
  :root {
    --shell: min(1200px, calc(100% - 2.25rem));
    --shell-narrow: min(800px, calc(100% - 2.25rem));
  }
  body { font-size: 16px; }

  .site-header { padding: 1.1rem 0; }
  .site-nav { display: none; }
  .brand-latin { font-size: 1.32rem; }
  .brand-arabic { font-size: 1.4rem; }
  .brand-mark { width: 36px; height: 36px; }

  .hero { padding: 5rem 0 4rem; }
  .hero-inner .eyebrow { margin-bottom: 2rem; font-size: 0.64rem; letter-spacing: 0.28em; }
  .hero-title { margin-bottom: 1.8rem; }
  .hero-lead { font-size: 1.03rem; }
  .hero-crescent { width: 540px; opacity: 0.11; }
  .hero-divider { margin-top: 2.5rem; }
  .hero-divider .line { width: 54px; }

  .features, .faq { padding: 5rem 0; }
  .features::before, .faq::before { height: 50px; }
  .section-head { margin-bottom: 3rem; }

  .feat-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .feat-card { padding: 2.1rem 1.5rem 1.85rem; }
  .feat-icon { width: 54px; height: 54px; margin-bottom: 1.4rem; }
  .feat-icon svg { width: 28px; height: 28px; }
  .feat-card h3 { font-size: 1.4rem; }
  .feat-card p { font-size: 0.95rem; }

  .faq-item summary {
    gap: 1rem;
    padding: 1.5rem 0;
    font-size: 1.08rem;
    grid-template-columns: auto 1fr auto;
  }
  .faq-num { font-size: 0.62rem; letter-spacing: 0.2em; }
  .faq-toggle { width: 18px; height: 18px; }
  .faq-toggle::before, .faq-toggle::after { width: 16px; }
  .faq-body {
    padding: 0 0 1.6rem 0;
    font-size: 0.98rem;
  }

  .contact { padding: 1.5rem 0 5rem; }
  .contact-card { padding: 4rem 1.5rem; }
  .contact-corner { width: 28px; height: 28px; }
  .contact-corner.tl, .contact-corner.tr, .contact-corner.bl, .contact-corner.br {
    /* offsets already correct, just ensure smaller */
  }
  .contact-corner::before { width: 18px !important; }
  .contact-corner::after { height: 18px !important; }
  .contact-card h2 { font-size: 1.8rem; }
  .contact-card > p { font-size: 1rem; margin-bottom: 2.25rem; }
  .contact-btn { font-size: 0.72rem; padding: 0.9rem 1.4rem; }
  .contact-btn span { word-break: break-all; }

  .site-footer { padding: 3.5rem 0 2.5rem; }
  .footer-tagline { font-size: 0.95rem; }
  .footer-divider span { width: 40px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2.4rem; }
  .faq-item summary { font-size: 1rem; }
  .contact-btn span { font-size: 0.7rem; }
}
