/* ═══════════════════════════════════════════
   index.css — Special Guest home page styles
   ═══════════════════════════════════════════ */

/* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 4rem;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(245,240,232,0.88) 0%,
      rgba(245,240,232,0.72) 50%,
      rgba(245,240,232,0.22) 100%
    );
  }

  .hero-overlay-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(245,240,232,0.95), transparent);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 58%;
  }

  .eyebrow {
    font-size: 10px;   /* CORRECTIF : était 9px */
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 1s ease 0.2s forwards;
  }
  .eyebrow::before {
    content: '';
    display: block;
    width: 44px;
    height: 0.5px;
    background: var(--gold);
    flex-shrink: 0;
  }

  h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5.5vw, 70px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.4s forwards;
  }
  h1 em { font-style: italic; color: var(--gold); }

  .hero-desc {
    font-size: 14px;   /* CORRECTIF : était 12px */
    font-weight: 300;
    line-height: 2.1;
    color: var(--text-mid);
    letter-spacing: 0.07em;
    max-width: 420px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.6s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 2.2rem;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.8s forwards;
  }

  .btn-primary {
    font-size: 11px;   /* CORRECTIF : était 9px */
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    background: var(--gold);
    padding: 1.1rem 2.8rem;
    min-height: 44px;          /* CORRECTIF : touch target */
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
  }
  .btn-primary:hover { background: var(--gold-hover); }

  .btn-ghost {
    font-size: 11px;   /* CORRECTIF : était 9px */
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-soft);
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: color 0.3s;
  }
  .btn-ghost::after { content: '→'; font-size: 14px; color: var(--gold); }
  .btn-ghost:hover { color: var(--ink); }

  .hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 4rem;
    font-size: 10px;   /* CORRECTIF : était 8px */
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-faint);
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .hero-scroll-hint::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: var(--gold-mid);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%, 100% { opacity: 0.2; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
  }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  /* STATS BAR */
  .stats-bar {
    display: flex;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    background: var(--page-2);
  }
  .stat {
    flex: 1;
    padding: 2.2rem 2rem;
    text-align: center;
    border-right: 0.5px solid var(--border);
    transition: background 0.3s;
  }
  .stat:last-child { border-right: none; }
  .stat:hover { background: var(--page-3); }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0.6rem;
  }
  .stat-num sup { font-size: 18px; vertical-align: super; }
  .stat-label {
    font-size: 10px;   /* CORRECTIF : était 8px */
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-faint);
  }

  /* SECTIONS */
  section { padding: 6rem 4rem; }

  .section-tag {
    font-size: 10px;   /* CORRECTIF : était 8px */
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.65;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .section-tag::before {
    content: '';
    display: block;
    width: 36px;
    height: 0.5px;
    background: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
  }

  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
  }
  h2 em { font-style: italic; color: var(--gold); }

  .body-text {
    font-size: 14px;   /* CORRECTIF : était 12px */
    font-weight: 300;
    line-height: 2.1;
    color: var(--text-mid);
    letter-spacing: 0.06em;
    max-width: 580px;
  }
  .body-text strong { color: var(--ink-2); font-weight: 400; }

  .gold-rule { width: 44px; height: 0.5px; background: var(--gold); margin: 1.8rem 0; opacity: 0.45; }

  /* STORY */
  .story-section { background: var(--page-2); }
  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
  }
  .story-col { padding: 0 3.5rem; }
  .story-col:first-child { padding-left: 0; }
  .story-col:last-child { padding-right: 0; }
  .story-divider { background: var(--border); }
  .chapter-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 300;
    color: var(--gold-dim);
    line-height: 1;
    margin-bottom: 1rem;
  }
  h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.25;
    color: var(--ink);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
  }
  h3 em { font-style: italic; color: var(--gold); }
  .founder-attr {
    font-size: 11px;   /* CORRECTIF : était 9px */
    letter-spacing: 0.18em;
    color: var(--gold);
    opacity: 0.55;
    font-style: italic;
    margin-top: 1.5rem;
  }

  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 3.5rem;
  }
  .service-card {
    background: var(--page);
    padding: 2.8rem 2.2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
  }
  .service-card:hover { background: var(--page-2); }
  .svc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.4;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
  }
  .svc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 1.2rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }
  .svc-desc {
    font-size: 13px;   /* CORRECTIF : était 11px */
    font-weight: 300;
    line-height: 2;
    color: var(--text-mid);
    letter-spacing: 0.05em;
  }
  .svc-bar {
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.6s ease;
  }
  .service-card:hover .svc-bar { width: 100%; }

  /* QUOTE */
  .quote-section {
    background: var(--ink);
    text-align: center;
    padding: 6rem 4rem;
  }
  blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 300;
    font-style: italic;
    color: #e8e0d0;
    max-width: 760px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
  .quote-rule {
    width: 44px; height: 0.5px;
    background: rgba(201,169,110,0.4);
    margin: 0 auto 1.5rem;
  }
  .quote-attr {
    font-size: 10px;   /* CORRECTIF : était 8px */
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(201,169,110,0.45);
  }

  /* CONTACT */
  .contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .form-field {
    border-bottom: 0.5px solid rgba(160,120,64,0.22);
    padding-bottom: 1rem;
    margin-bottom: 1.4rem;
    transition: border-color 0.3s;
  }
  .form-field:focus-within { border-bottom-color: var(--gold); }
  .field-label {
    font-size: 10px;   /* CORRECTIF : était 7px */
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 0.6rem;
    display: block;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;   /* CORRECTIF : était 12px */
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--ink);
    resize: none;
    padding: 0;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: var(--text-faint); }
  .form-field select { color: var(--text-faint); }
  .form-field select option { background: var(--page); color: var(--ink); }
  .form-field select:valid { color: var(--ink); }
  .form-field textarea { min-height: 70px; line-height: 1.9; }

  .form-submit {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;   /* CORRECTIF : était 9px */
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    background: var(--gold);
    padding: 1.1rem 2.5rem;
    min-height: 44px;          /* CORRECTIF : touch target */
    border: none;
    margin-top: 0.8rem;
    transition: background 0.3s;
    display: inline-block;
  }
  .form-submit:hover { background: var(--gold-hover); }

  .contact-intro {
    font-size: 14px;   /* CORRECTIF : était 11px */
    font-weight: 300;
    line-height: 2.1;
    color: var(--text-mid);
    letter-spacing: 0.06em;
    max-width: 380px;
    margin-top: 1.5rem;
  }

/* ── RESPONSIVE (index-specific) ── */
@media (max-width: 480px) {
  h1 { font-size: 36px; letter-spacing: 0.01em; }
  h2 { font-size: clamp(26px, 7vw, 34px); }
  h3 { font-size: 22px; }
  .hero-desc {
    font-size: 15px;
    line-height: 1.85;
    letter-spacing: 0.03em;
    max-width: 100%;
  }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat { flex: 0 0 50%; padding: 1.8rem 1rem; }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 11px; letter-spacing: 0.18em; }
  .body-text { font-size: 15px; line-height: 1.85; letter-spacing: 0.03em; }
  .founder-attr { font-size: 11px; letter-spacing: 0.14em; }
  .service-card { padding: 2rem 1.6rem; }
  .svc-title { font-size: 20px; }
  .svc-desc { font-size: 14px; line-height: 1.85; letter-spacing: 0.03em; }
  .quote-section { padding: 3.5rem 1.6rem; }
  blockquote { font-size: clamp(20px, 5.5vw, 26px); }
  .quote-attr { font-size: 10px; letter-spacing: 0.20em; }
  .field-label { font-size: 10px; letter-spacing: 0.22em; }
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 15px; }
  .form-submit {
    font-size: 12px;
    width: 100%;
    text-align: center;
    padding: 1rem 1.6rem;
  }
  .contact-intro { font-size: 15px; line-height: 1.85; letter-spacing: 0.03em; }
  .contact-section { grid-template-columns: 1fr !important; gap: 2rem; }
}

@media (max-width: 900px) {
  .hero { padding: 0 2rem; }
  .hero-content { max-width: 100%; }
  h1 { font-size: 40px; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-divider { display: none; }
  .story-col { padding: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; gap: 3rem; }
  .stats-bar { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; }
  .stat:nth-child(2) { border-right: none; }
}
