
    /* ═══════════════════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════════════════ */
    :root {
      --black: #0A0A0A;
      --black-light: #111111;
      --black-card: #161616;
      --black-border: #222222;
      --gold: #C9A96E;
      --gold-light: #D4B97A;
      --gold-dark: #A8893E;
      --gold-glow: rgba(201, 169, 110, 0.15);
      --gold-glow-strong: rgba(201, 169, 110, 0.35);
      --white: #FDFBF7;
      --white-dim: #E4DCD0;
      --white-muted: #A39B8E;
      --font-heading: 'Cormorant Garamond', 'Georgia', serif;
      --font-body: 'Inter', 'Helvetica Neue', sans-serif;
      --section-pad: clamp(80px, 10vw, 140px);
      --container: min(1200px, 90vw);
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-body);
      font-size: clamp(16px, 1.2vw, 18px);
      background: var(--black);
      color: var(--white);
      line-height: 1.7;
      font-weight: 400;
      overflow-x: hidden;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    button { border: none; background: none; cursor: pointer; font-family: inherit; }

    .container {
      width: var(--container);
      margin: 0 auto;
    }

    /* ═══════════════════════════════════════════
       UTILITY CLASSES
    ═══════════════════════════════════════════ */
    .section-label {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 30px;
      height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .section-subtitle {
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--white-dim);
      max-width: 600px;
      line-height: 1.8;
    }

    .gold-line {
      width: 50px;
      height: 1px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin: 2rem 0;
    }

    /* ═══════════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 32px;
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border-radius: 0;
      transition: all 0.4s var(--ease-out);
      position: relative;
    }

    .btn-gold {
      background: var(--gold);
      color: var(--black);
    }

    .btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid var(--black-border);
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    /* ═══════════════════════════════════════════
       NAVIGATION
    ═══════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 clamp(20px, 4vw, 60px);
      transition: all 0.5s var(--ease-out);
    }

    .nav.scrolled {
      background: rgba(10, 10, 10, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(201, 169, 110, 0.08);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      z-index: 1001;
    }

    .nav-logo img {
      height: 60px;
      width: auto;
      object-fit: contain;
      mix-blend-mode: lighten;
      transition: transform 0.3s ease;
    }

    .nav-logo:hover img { transform: scale(1.05); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(20px, 3vw, 40px);
      list-style: none;
    }

    .nav-links a {
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--white-dim);
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.3s var(--ease-out);
    }

    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 10px 24px;
      border: 1px solid var(--gold);
      color: var(--gold);
      transition: all 0.3s ease;
    }

    .nav-cta:hover {
      background: var(--gold);
      color: var(--black);
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-cta { display: none; }
    }

    /* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
    .hero {
      min-height: 70vh;
      display: flex;
      align-items: center;
      padding-top: 120px;
      padding-bottom: 80px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201, 169, 110, 0.03) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 860px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border: 1px solid rgba(201, 169, 110, 0.3);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2rem;
    }

    .hero-badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }

    .hero h1 {
      font-family: var(--font-heading);
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 400;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-desc {
      font-size: clamp(1rem, 1.3vw, 1.15rem);
      color: var(--white-dim);
      max-width: 580px;
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    .hero-phone {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      color: var(--white-muted);
      letter-spacing: 0.5px;
    }

    .hero-phone strong {
      color: var(--white);
      font-size: 1.05rem;
      letter-spacing: 1px;
    }

    /* ═══════════════════════════════════════════
       INTRO SECTION
    ═══════════════════════════════════════════ */
    .intro-section {
      padding: var(--section-pad) 0;
      border-top: 1px solid var(--black-border);
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .intro-text p {
      font-size: 1rem;
      color: var(--white-dim);
      line-height: 1.9;
      margin-bottom: 1.2rem;
    }

    .intro-text p:last-child { margin-bottom: 0; }

    .intro-stat {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .stat-card {
      padding: 28px 32px;
      background: var(--black-card);
      border: 1px solid var(--black-border);
      border-left: 3px solid var(--gold);
    }

    .stat-number {
      font-family: var(--font-heading);
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white-muted);
    }

    @media (max-width: 768px) {
      .intro-grid { grid-template-columns: 1fr; gap: 48px; }
    }

    /* ═══════════════════════════════════════════
       CE QU'ON RACHETE
    ═══════════════════════════════════════════ */
    .rachete-section {
      padding: var(--section-pad) 0;
      background: var(--black-light);
    }

    .rachete-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .rachete-header .section-label {
      justify-content: center;
    }

    .rachete-header .section-label::before { display: none; }

    .rachete-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .rachete-item {
      background: var(--black-card);
      padding: 36px 32px;
      border: 1px solid var(--black-border);
      transition: all 0.4s var(--ease-out);
      position: relative;
      overflow: hidden;
    }

    .rachete-item::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width 0.4s var(--ease-out);
    }

    .rachete-item:hover { background: #1a1a1a; }
    .rachete-item:hover::before { width: 100%; }

    .rachete-icon {
      font-size: 2rem;
      margin-bottom: 16px;
      display: block;
    }

    .rachete-name {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 8px;
    }

    .rachete-desc {
      font-size: 0.85rem;
      color: var(--white-muted);
      line-height: 1.7;
    }

    @media (max-width: 900px) {
      .rachete-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 560px) {
      .rachete-grid { grid-template-columns: 1fr; }
    }

    /* ═══════════════════════════════════════════
       ETAPES
    ═══════════════════════════════════════════ */
    .etapes-section {
      padding: var(--section-pad) 0;
    }

    .etapes-header {
      margin-bottom: 60px;
    }

    .etapes-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .etapes-grid::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(12.5% + 16px);
      right: calc(12.5% + 16px);
      height: 1px;
      background: linear-gradient(90deg, var(--gold), rgba(201, 169, 110, 0.2), var(--gold));
      z-index: 0;
    }

    .etape-card {
      text-align: center;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    .etape-number-wrap {
      width: 72px;
      height: 72px;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      background: var(--black);
      position: relative;
    }

    .etape-number {
      font-family: var(--font-heading);
      font-size: 1.8rem;
      font-weight: 300;
      color: var(--gold);
    }

    .etape-title {
      font-family: var(--font-heading);
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 10px;
    }

    .etape-desc {
      font-size: 0.85rem;
      color: var(--white-muted);
      line-height: 1.7;
    }

    @media (max-width: 768px) {
      .etapes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
      .etapes-grid::before { display: none; }
    }

    @media (max-width: 480px) {
      .etapes-grid { grid-template-columns: 1fr; }
    }

    /* ═══════════════════════════════════════════
       ZONE INTERVENTION
    ═══════════════════════════════════════════ */
    .zone-section {
      padding: var(--section-pad) 0;
      background: var(--black-light);
    }

    .zone-header {
      margin-bottom: 50px;
    }

    .zone-intro {
      font-size: 1rem;
      color: var(--white-dim);
      line-height: 1.8;
      max-width: 620px;
      margin-bottom: 40px;
    }

    .villes-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .ville-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border: 1px solid var(--black-border);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--white-dim);
      transition: all 0.3s var(--ease-out);
    }

    .ville-badge::before {
      content: '↗';
      color: var(--gold);
      font-size: 0.75rem;
    }

    .ville-badge:hover {
      border-color: var(--gold);
      color: var(--white);
      background: rgba(201, 169, 110, 0.05);
    }

    .zone-note {
      margin-top: 32px;
      padding: 20px 28px;
      border-left: 2px solid var(--gold);
      background: var(--black-card);
    }

    .zone-note p {
      font-size: 0.9rem;
      color: var(--white-dim);
      line-height: 1.7;
    }

    .zone-note strong { color: var(--gold); }

    /* ═══════════════════════════════════════════
       FAQ
    ═══════════════════════════════════════════ */
    .faq-section {
      padding: var(--section-pad) 0;
    }

    .faq-header {
      margin-bottom: 50px;
    }

    .faq-list {
      max-width: 820px;
    }

    .faq-item {
      border-bottom: 1px solid var(--black-border);
    }

    .faq-item:first-child {
      border-top: 1px solid var(--black-border);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 24px 0;
      text-align: left;
      color: var(--white);
      cursor: pointer;
      background: none;
      border: none;
      font-family: var(--font-heading);
      font-size: clamp(1.1rem, 1.6vw, 1.4rem);
      font-weight: 400;
      transition: color 0.3s ease;
    }

    .faq-question:hover { color: var(--gold); }

    .faq-icon {
      width: 28px;
      height: 28px;
      border: 1px solid var(--black-border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s ease;
      color: var(--gold);
      font-size: 1.2rem;
      line-height: 1;
    }

    .faq-item.active .faq-icon {
      border-color: var(--gold);
      background: var(--gold-glow);
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s var(--ease-out);
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
    }

    .faq-answer-inner {
      padding-bottom: 24px;
      font-size: 0.95rem;
      color: var(--white-dim);
      line-height: 1.8;
    }

    /* ═══════════════════════════════════════════
       CTA SECTION
    ═══════════════════════════════════════════ */
    .cta-section {
      padding: var(--section-pad) 0;
      background: var(--black-light);
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .cta-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-inner .section-label {
      justify-content: center;
    }

    .cta-inner .section-label::before { display: none; }

    .cta-title {
      font-family: var(--font-heading);
      font-size: clamp(2.4rem, 4.5vw, 4rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    .cta-title em {
      font-style: italic;
      color: var(--gold);
    }

    .cta-subtitle {
      font-size: 1rem;
      color: var(--white-dim);
      margin-bottom: 2.5rem;
      line-height: 1.8;
    }

    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cta-phone-block {
      margin-top: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .cta-phone-block a {
      font-family: var(--font-heading);
      font-size: 2.2rem;
      font-weight: 400;
      color: var(--gold);
      letter-spacing: 2px;
      transition: opacity 0.3s;
    }

    .cta-phone-block a:hover { opacity: 0.8; }

    .cta-phone-label {
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--white-muted);
    }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    .footer {
      background: #080808;
      padding: 70px 0 30px;
      border-top: 1px solid var(--black-border);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 50px;
    }

    .footer-brand-name {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 12px;
    }

    .footer-brand-desc {
      font-size: 0.85rem;
      color: var(--white-muted);
      line-height: 1.8;
    }

    .footer-links-group h4 {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 0.85rem;
      color: var(--white-muted);
      transition: color 0.3s ease;
    }

    .footer-links a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid var(--black-border);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-copy {
      font-size: 0.8rem;
      color: var(--white-muted);
    }

    @media (max-width: 768px) {
      .footer-top { grid-template-columns: 1fr; gap: 40px; }
    }

    /* ═══════════════════════════════════════════
       PARTICULARITE YONNE
    ═══════════════════════════════════════════ */
    .particularity-section {
      padding: var(--section-pad) 0;
      border-top: 1px solid var(--black-border);
    }

    .particularity-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .particularity-text p {
      font-size: 1rem;
      color: var(--white-dim);
      line-height: 1.9;
      margin-bottom: 1.2rem;
    }

    .particularity-text p:last-child { margin-bottom: 0; }

    .particularity-quote {
      padding: 40px;
      border: 1px solid var(--black-border);
      border-top: 3px solid var(--gold);
      background: var(--black-card);
      position: relative;
    }

    .particularity-quote::before {
      content: '\201C';
      position: absolute;
      top: -20px;
      left: 30px;
      font-family: var(--font-heading);
      font-size: 5rem;
      color: var(--gold);
      line-height: 1;
    }

    .quote-text {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 400;
      font-style: italic;
      color: var(--white);
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .quote-attr {
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
    }

    @media (max-width: 768px) {
      .particularity-grid { grid-template-columns: 1fr; gap: 48px; }
    }

    /* ═══════════════════════════════════════════
       AVANTAGES
    ═══════════════════════════════════════════ */
    .avantages-section {
      padding: var(--section-pad) 0;
      background: var(--black-light);
    }

    .avantages-header { margin-bottom: 56px; }

    .avantages-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--black-border);
    }

    .avantage-card {
      background: var(--black-card);
      padding: 36px 28px;
      text-align: center;
      transition: background 0.3s ease;
    }

    .avantage-card:hover { background: #1a1a1a; }

    .avantage-icon {
      width: 48px;
      height: 48px;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.3rem;
    }

    .avantage-title {
      font-family: var(--font-heading);
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 8px;
    }

    .avantage-desc {
      font-size: 0.82rem;
      color: var(--white-muted);
      line-height: 1.7;
    }

    @media (max-width: 900px) {
      .avantages-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 480px) {
      .avantages-grid { grid-template-columns: 1fr; }
    }

    /* ═══════════════════════════════════════════
       BREADCRUMB
    ═══════════════════════════════════════════ */
    .breadcrumb {
      padding: 100px 0 0;
    }

    .breadcrumb-inner {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      color: var(--white-muted);
      letter-spacing: 0.5px;
    }

    .breadcrumb-inner a {
      color: var(--white-muted);
      transition: color 0.3s;
    }

    .breadcrumb-inner a:hover { color: var(--gold); }

    .breadcrumb-sep { color: var(--black-border); }

    .breadcrumb-current { color: var(--gold); }
  

  .col-hero{padding:170px 0 50px;text-align:center}
  .col-hero .section-subtitle{max-width:680px;margin:18px auto 0}
  .col-back{display:inline-block;margin-bottom:26px;color:#c9a24b;font-size:13px;letter-spacing:.14em;text-transform:uppercase}
  .col-back:hover{color:#e8c874}
  .col-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:30px;padding:20px 0 30px}
  .col-card{background:#111;border:1px solid rgba(212,175,55,.16);border-radius:6px;overflow:hidden;display:flex;flex-direction:column;transition:.3s}
  .col-card:hover{border-color:rgba(212,175,55,.45);transform:translateY(-5px)}
  .col-card-img{aspect-ratio:4/3;overflow:hidden;background:#0c0c0c}
  .col-card-img img{width:100%;height:100%;object-fit:cover;transition:.5s}
  .col-card:hover .col-card-img img{transform:scale(1.06)}
  .col-card-body{padding:26px 26px 30px}
  .col-card-body h3{font-family:'Cormorant Garamond','Playfair Display',Georgia,serif;font-size:26px;color:#e8c874;margin:0 0 10px;font-weight:600}
  .col-card-body p{color:#a99e86;font-size:15px;line-height:1.6;margin:0}
  .col-cta{text-align:center;padding:60px 0 30px;border-top:1px solid rgba(212,175,55,.14);margin-top:20px}
  .col-cta h2{font-family:'Cormorant Garamond','Playfair Display',Georgia,serif;font-size:34px;color:#f4e9d0;margin-bottom:16px;font-weight:600}
  .col-cta p{color:#a99e86;max-width:560px;margin:0 auto 28px}
  .col-others{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;padding:30px 0 10px}
  .col-others a{font-size:13px;letter-spacing:.08em;text-transform:uppercase;color:#c9a24b;border:1px solid rgba(212,175,55,.28);padding:9px 18px;border-radius:2px;transition:.2s}
  .col-others a:hover{background:rgba(212,175,55,.08);color:#e8c874}
  .col-credits{max-width:900px;margin:20px auto 0;padding:0 24px}
  .col-credits summary{color:#6b6355;font-size:12px;cursor:pointer;letter-spacing:.06em}
  .col-credits p{color:#5c5648;font-size:11px;line-height:1.7;margin-top:10px}
  .col-credits a{color:#8a7d5f;text-decoration:underline}
  @media(max-width:760px){.col-grid{grid-template-columns:1fr}.col-hero{padding:130px 0 40px}}
