
    :root {
      --black: #0e0d0c;
      --off-white: #f5f3ee;
      --warm-gray: #8a8479;
      --light-gray: #e8e5de;
      --accent: #b5a48a;
      --accent-dark: #7a6b55;
      --text: #2a2925;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'DM Sans', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      background: var(--off-white);
      color: var(--text);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 3rem;
      background: rgba(245, 243, 238, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--light-gray);
    }
    .nav-logo {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--black);
      text-decoration: none;
      position: relative;
      z-index: 201;
    }

       .nav-logo-img {
      size: 48px;
    }

    /* Burger button & nav links */

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: .78rem;
      font-weight: 400;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--warm-gray);
      text-decoration: none;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--text); }

    .nav-burger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 32px;
      height: 32px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      position: relative;
      z-index: 201;
    }
    .nav-burger span {
      display: block;
      height: 1px;
      background: var(--black);
      transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .2s, width .3s;
      transform-origin: center;
    }
    .nav-burger span:nth-child(1) { width: 24px; }
    .nav-burger span:nth-child(2) { width: 16px; }
    .nav-burger span:nth-child(3) { width: 20px; }

    /* Open state */
    .nav-burger.is-open span:nth-child(1) {
      width: 22px;
      transform: translateY(6px) rotate(45deg);
    }
    .nav-burger.is-open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }
    .nav-burger.is-open span:nth-child(3) {
      width: 22px;
      transform: translateY(-6px) rotate(-45deg);
    }

    /* Menu overlay */
    .nav-menu {
      position: fixed;
      inset: 0;
      z-index: 199;
      background: rgba(245, 243, 238, 0.98);
      backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 6rem 3rem 3rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity .35s cubic-bezier(.4,0,.2,1);
    }
    .nav-menu.is-open {
      opacity: 1;
      pointer-events: all;
    }
    .nav-menu ul {
      list-style: none;
      margin-bottom: auto;
    }
    .nav-menu ul li {
      overflow: hidden;
    }
    .nav-menu ul li a {
      display: block;
      font-family: var(--serif);
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 300;
      color: var(--black);
      text-decoration: none;
      line-height: 1.1;
      padding: .6rem 0;
      border-bottom: 1px solid var(--light-gray);
      transform: translateY(30px);
      opacity: 0;
      transition: color .2s, transform .4s cubic-bezier(.4,0,.2,1), opacity .4s cubic-bezier(.4,0,.2,1);
    }
    .nav-menu ul li a em {
      font-style: italic;
      color: var(--accent-dark);
    }
    .nav-menu.is-open ul li a {
      transform: translateY(0);
      opacity: 1;
    }
    .nav-menu.is-open ul li:nth-child(1) a { transition-delay: .05s; }
    .nav-menu.is-open ul li:nth-child(2) a { transition-delay: .1s; }
    .nav-menu.is-open ul li:nth-child(3) a { transition-delay: .15s; }
    .nav-menu.is-open ul li:nth-child(4) a { transition-delay: .2s; }
    .nav-menu.is-open ul li:nth-child(5) a { transition-delay: .25s; }
    .nav-menu ul li a:hover { color: var(--accent-dark); }
    .nav-menu ul li a.active { color: var(--accent-dark); }

    .nav-menu-footer {
      border-top: 1px solid var(--light-gray);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .4s .3s, transform .4s .3s;
    }
    .nav-menu.is-open .nav-menu-footer {
      opacity: 1;
      transform: translateY(0);
    }
    .nav-menu-address {
      font-size: .75rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--warm-gray);
      line-height: 2;
    }
    .nav-menu-tel {
      text-align: right;
      font-size: .78rem;
      font-weight: 300;
      color: var(--warm-gray);
      line-height: 2;
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 110vh;
      background: linear-gradient(160deg, #1a1814 0%, #2e2a22 60%, #3d3628 100%);
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }
    .hero-left {
      
      display: block;
      flex-direction: column;
      justify-content: flex-end;
      padding: 7rem 3rem 3rem;
      position: relative;
      overflow: hidden;
    }
    .hero-grain {
      position: absolute;
      inset: 0;
      opacity: .04;
      
    }
    .hero-left-content { position: relative; z-index: 2; }
    .hero-eyebrow {
      display: inline-block;
      font-size: .72rem;
      font-weight: 400;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.5rem;
    }
    .hero-title {
      font-family: var(--serif);
      font-size: clamp(2.8rem, 4.5vw, 5rem);
      font-weight: 300;
      line-height: 1.05;
      color: #f0ece3;
      margin-bottom: 1.75rem;
    }
    .hero-title em { font-style: italic; color: var(--accent); }
    .hero-tagline {
      font-size: .93rem;
      font-weight: 300;
      color: rgba(240,236,227,.55);
      line-height: 1.8;
      max-width: 90%;
      margin-bottom: 2.5rem;
    }
    .hero-legende {
      font-size: .73rem;
      font-weight: 300;
      color: rgba(240,236,227,.55);
      line-height: 1.8;
      max-width: 90%;
      margin-top: 1rem;
      margin-bottom: 1rem;
      text-align: end;
    }


    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: .75rem;
      padding: .85rem 2rem;
      background: var(--accent);
      color: var(--black);
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .2s, gap .2s;
    }
    .hero-cta:hover { background: #c4b49a; gap: 1rem; }


 
    .hero-right {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 2rem 3rem 2rem;
      position: relative;
    }

 .hero-right-image-container {

      display: block;
    }


    .hero-right-image {
      display: block;
      width: 90%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      
    }

    .hero-right-top {
      position: absolute;
      top: 2rem; left: 3rem; right: 3rem;
    }

    /* ─── LAYOUT ─── */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 3rem;
    }
    section { padding: 6rem 0; }

    .section-header {
      display: flex;
      align-items: flex-start;
      gap: 4rem;
      margin-bottom: 4rem;
    }
    .section-num {
      font-family: var(--serif);
      font-size: 4rem;
      font-weight: 300;
      color: var(--light-gray);
      line-height: 1;
      flex-shrink: 0;
      margin-top: -.5rem;
    }
    .section-label {
      font-size: .72rem;
      font-weight: 400;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--warm-gray);
      margin-bottom: .6rem;
    }
    .section-title {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 300;
      line-height: 1.2;
      color: var(--black);
    }
    .section-title em { font-style: italic; color: var(--accent-dark); }

    /* ─── QUI SOMMES-NOUS ─── */
    .about-section { background: var(--off-white); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .about-body p {
      font-size: .95rem;
      font-weight: 300;
      line-height: 1.85;
      color: #4a4740;
      margin-bottom: 1.25rem;
    }
    .about-values {
      margin-top: 2rem;
      border-top: 1px solid var(--light-gray);
    }
    .about-value {
      display: flex;
      gap: 1.25rem;
      padding: 1.1rem 0;
      border-bottom: 1px solid var(--light-gray);
      align-items: baseline;
    }
    .about-value-label {
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--accent-dark);
      flex-shrink: 0;
      width: 90px;
    }
    .about-value p {
      font-size: .87rem;
      font-weight: 300;
      color: var(--warm-gray);
      line-height: 1.6;
      margin-bottom: 0;
    }
    .team-grid {
      display: flex;
      flex-direction: column;
      gap: 1px;
      background: var(--light-gray);
    }
    .team-member {
      background: #fff;
      padding: 1.75rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .team-member-info { flex: 1; }
    .team-member-name {
      font-family: var(--serif);
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--black);
      margin-bottom: .2rem;
    }
    .team-member-role {
      font-size: .75rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--warm-gray);
      margin-bottom: .6rem;
    }
    .team-member-desc {
      font-size: .85rem;
      font-weight: 300;
      color: var(--warm-gray);
      line-height: 1.7;
    }
    .team-member-initial {
      font-family: var(--serif);
      font-size: 3rem;
      font-weight: 300;
      color: var(--light-gray);
      line-height: 1;
      flex-shrink: 0;
    }

    /* ─── SERVICES ─── */
    .services-section { background: var(--black); }
    .services-section .section-num { color: rgba(255,255,255,.05); }
    .services-section .section-label { color: var(--accent); }
    .services-section .section-title { color: #f0ece3; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255,255,255,.06);
    }
    .service-card {
      background: #1a1814;
      padding: 2.5rem 2rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: background .25s;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }
    .service-card:hover { background: #221e18; }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card-num {
      font-family: var(--serif);
      font-size: .85rem;
      font-weight: 300;
      color: rgba(181,164,138,.4);
      letter-spacing: .1em;
    }
    .service-card h3 {
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 300;
      color: #f0ece3;
      line-height: 1.2;
    }
    .service-card p {
      font-size: .85rem;
      font-weight: 300;
      color: rgba(240,236,227,.5);
      line-height: 1.75;
      flex: 1;
    }
    .service-card-link {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: .78rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--accent);
      text-decoration: none;
      transition: gap .2s;
      margin-top: .5rem;
    }
    .service-card-link:hover { gap: .8rem; }
    .service-specs {
      margin-top: .5rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255,255,255,.07);
      display: flex;
      flex-direction: column;
      gap: .4rem;
    }
    .service-spec {
      font-size: .78rem;
      font-weight: 300;
      color: rgba(240,236,227,.3);
      display: flex;
      align-items: center;
      gap: .5rem;
    }
    .service-spec::before {
      content: '·';
      color: var(--accent);
    }

    /* ─── ENGAGEMENT ─── */
    .engagement-section { background: var(--off-white); border-top: 1px solid var(--light-gray); }
    .engagement-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: var(--light-gray);
    }
    .engagement-item {
      background: var(--off-white);
      padding: 2.5rem 2rem;
      transition: background .2s;
    }
    .engagement-item:hover { background: #eceae3; }
    .engagement-num {
      font-family: var(--serif);
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 1rem;
    }
    .engagement-item h3 {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--black);
      margin-bottom: .5rem;
    }
    .engagement-item p {
      font-size: .85rem;
      font-weight: 300;
      color: var(--warm-gray);
      line-height: 1.75;
    }
   .divide-section { background: var(--black);padding: 0; height: 1px; }

    /* ─── RÉFÉRENCES ─── */
    .ref-section { background: var(--off-white); }

    .ref-header {
      display: flex;
      align-items: flex-start;
      gap: 4rem;
      margin-bottom: 4rem;
    }
    .ref-num {
      font-family: var(--serif);
      font-size: 4rem;
      font-weight: 300;
      color: var(--light-gray);
      line-height: 1;
      flex-shrink: 0;
      margin-top: -.5rem;
    }
    .ref-label {
      font-size: .72rem;
      font-weight: 400;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--warm-gray);
      margin-bottom: .6rem;
    }
    .ref-title {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 300;
      line-height: 1.2;
      color: var(--black);
    }
    .ref-title em { font-style: italic; color: var(--accent-dark); }
    .ref-subtitle {
      font-family: var(--sans);
      font-style: italic;
      font-size: .95rem;
      line-height: 1.85;
      font-weight: 300;
      color: #4a4740;
      margin-top: 1.25rem;
      margin-bottom: 1.25rem;

    }

    .ref-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    /* Photos */
    .ref-photos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .ref-photo {
      background: var(--light-gray);
      overflow: hidden;
      aspect-ratio: 1 / 1;
    }
    .ref-photo--large {
      grid-column: span 2;
      aspect-ratio: 2 / 1;
    }
    .ref-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Clients */
    .ref-right {
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }
    .ref-clients-label {
      font-size: .72rem;
      font-weight: 400;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--warm-gray);
      margin-bottom: 1.25rem;
    }
    .ref-clients-list {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: .35rem .1rem;
      line-height: 1.8;
    }
    .ref-client-name {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--text);
    }
    .ref-client-sep {
      display: inline-block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
      margin: 0 .5rem;
      vertical-align: middle;
    }

    /* Témoignage */
    .ref-testimonial {
      padding: 2rem;
      border: 1px solid var(--light-gray);
      background: #fff;
      position: relative;
    }
    .ref-testimonial::before {
      content: '\201C';
      font-family: var(--serif);
      font-size: 5rem;
      font-weight: 300;
      line-height: .8;
      color: var(--light-gray);
      position: absolute;
      top: 1.25rem;
      left: 1.5rem;
      pointer-events: none;
    }
    .ref-testimonial-text {
      font-family: var(--serif);
      font-size: 1.15rem;
      font-weight: 300;
      font-style: italic;
      line-height: 1.7;
      color: var(--text);
      padding-top: 2rem;
      position: relative;
      z-index: 1;
    }
    .ref-testimonial-author {
      margin-top: 1.25rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--light-gray);
    }
    .ref-testimonial-name {
      font-size: .88rem;
      font-weight: 400;
      color: var(--text);
    }
    .ref-testimonial-role {
      font-size: .75rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--warm-gray);
      margin-top: .15rem;
    }

      /* TIRAGE SECTION */
    .tirage-section { background: var(--off-white); }
    .tirage-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .tirage-body p {
      font-size: .95rem;
      font-weight: 300;
      line-height: 1.85;
      color: #4a4740;
      margin-bottom: 1.25rem;
    }
    .specs-list {
      list-style: none;
      margin-top: 2rem;
      border-top: 1px solid var(--light-gray);
      padding-top: 1.5rem;
    }
    .specs-list li {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: .65rem 0;
      border-bottom: 1px solid var(--light-gray);
      font-size: .85rem;
    }
    .specs-list .spec-key {
      font-weight: 300;
      color: var(--warm-gray);
      letter-spacing: .05em;
    }
    .specs-list .spec-val {
      font-weight: 400;
      color: var(--text);
      text-align: right;
    }
    .tirage-cards {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .tirage-card {
      padding: 1.5rem;
      border: 1px solid var(--light-gray);
      background: #fff;
      position: relative;
      transition: border-color .2s;
    }
    .tirage-card:hover { border-color: var(--accent); }
    .tirage-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 2px; height: 100%;
      background: var(--accent);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform .25s;
    }
    .tirage-card:hover::before { transform: scaleY(1); }
    .tirage-card h3 {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 400;
      margin-bottom: .4rem;
      color: var(--black);
    }
    .tirage-card p {
      font-size: .85rem;
      font-weight: 300;
      color: var(--warm-gray);
      line-height: 1.7;
    }

    /* CONTRE-COLLAGE */
    .contrecollage-section {
      background: var(--black);
      color: #f0ece3;
    }
    .contrecollage-section .section-num { color: rgba(255,255,255,.06); }
    .contrecollage-section .section-label { color: var(--accent); }
    .contrecollage-section .section-title { color: #f0ece3; }
    .cc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .cc-body p {
      font-size: .95rem;
      font-weight: 300;
      line-height: 1.85;
      color: rgba(240,236,227,.65);
      margin-bottom: 1.25rem;
    }
    .cc-supports {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .75rem;
      margin-top: 2rem;
    }
    .cc-support {
      padding: 1rem 1.25rem;
      border: 1px solid rgba(255,255,255,.1);
      font-size: .85rem;
      font-weight: 300;
      color: rgba(240,236,227,.8);
      letter-spacing: .03em;
    }
    .cc-process {
      padding-left: 2rem;
      border-left: 1px solid rgba(181,164,138,.2);
    }
    .cc-process-title {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 300;
      color: var(--accent);
      margin-bottom: 2rem;
      font-style: italic;
    }
    .cc-step {
      display: flex;
      gap: 1.25rem;
      margin-bottom: 2rem;
    }
    .cc-step-num {
      font-family: var(--serif);
      font-size: .85rem;
      font-weight: 300;
      color: rgba(181,164,138,.5);
      padding-top: .1rem;
      flex-shrink: 0;
      width: 24px;
    }
    .cc-step-content h4 {
      font-size: .9rem;
      font-weight: 400;
      color: #f0ece3;
      margin-bottom: .25rem;
    }
    .cc-step-content p {
      font-size: .83rem;
      font-weight: 300;
      color: rgba(240,236,227,.5);
      line-height: 1.7;
      margin-bottom: 0;
    }

    /* BENEFITS */
    .benefits-section { background: #fff; }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }
    .benefit-item {
      padding: 2.5rem 1.75rem;
      background: var(--off-white);
      transition: background .2s;
    }
    .benefit-item:hover { background: #eceae3; }
    .benefit-icon {
      width: 32px;
      height: 32px;
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .benefit-icon svg { stroke: var(--accent-dark); }
    .benefit-item h3 {
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--black);
      margin-bottom: .5rem;
    }
    .benefit-item p {
      font-size: .83rem;
      font-weight: 300;
      color: var(--warm-gray);
      line-height: 1.75;
    }

   

    /* ─── CTA FINAL ─── */
     
    .cta-section {
      background: #1e1c18;
      padding: 7rem 0;
    }
    .cta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }
    .cta-left { }
    .cta-eyebrow {
      font-size: .72rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.5rem;
    }
    .cta-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      color: #f0ece3;
      line-height: 1.15;
      margin-bottom: 1.25rem;
    }
    .cta-title em { font-style: italic; }
    .cta-text {
      font-size: .93rem;
      font-weight: 300;
      color: rgba(240,236,227,.5);
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }
    .cta-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      padding: .9rem 2.25rem;
      background: var(--accent);
      color: var(--black);
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .2s;
    }
    .btn-primary:hover { background: #c4b49a; }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      padding: .9rem 2.25rem;
      border: 1px solid rgba(255,255,255,.15);
      color: rgba(240,236,227,.65);
      font-size: .82rem;
      font-weight: 400;
      letter-spacing: .08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: border-color .2s, color .2s;
    }
    .btn-secondary:hover { border-color: rgba(255,255,255,.4); color: #f0ece3; }

    .cta-right { }
    .contact-block {
      padding: 2rem;
      border: 1px solid rgba(255,255,255,.08);
      margin-bottom: 1px;
    }
    .contact-block-title {
      font-size: .72rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(240,236,227,.3);
      margin-bottom: 1.25rem;
    }
    .contact-person {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: .65rem 0;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .contact-person:last-child { border-bottom: none; }
    .contact-name {
      font-family: var(--serif);
      font-size: 1rem;
      font-weight: 300;
      color: rgba(240,236,227,.75);
    }
    .contact-tel {
      font-size: .85rem;
      font-weight: 300;
      color: rgba(240,236,227,.4);
      text-decoration: none;
      
      ;
    }
    .address-block {
      padding: 1.5rem 2rem;
      border: 1px solid rgba(255,255,255,.08);
    }
    .address-title {
      font-size: .72rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(240,236,227,.3);
      margin-bottom: .75rem;
    }
    .address-text {
      font-size: .88rem;
      font-weight: 300;
      color: rgba(240,236,227,.55);
      line-height: 1.9;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--black);
      padding: 2.5rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .footer-logo {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 300;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(240,236,227,.4);
    }
    .footer-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .footer-links a {
      font-size: .75rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(240,236,227,.3);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-links a:hover { color: rgba(240,236,227,.7); }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow { animation: fadeUp .7s ease both; }
    .hero-title { animation: fadeUp .7s .15s ease both; }
    .hero-tagline { animation: fadeUp .7s .3s ease both; }
    .hero-cta { animation: fadeUp .7s .45s ease both; }
    .hero-right-image {animation: fadeUp .7s .45s ease both; }
    .hero-legende {animation: fadeUp .7s .45s ease both; }


    /* ─── RESPONSIVE ─── */
    @media (max-width: 960px) {
    
      nav { padding: 1rem 1.5rem; }
      .nav-menu { padding: 5rem 1.5rem 2rem; }
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { min-height: 90vh; padding: 7rem 1.5rem 4rem; }
      .hero-right { padding: 3rem 1.5rem; }
      .hero-right-top { position: static; margin-bottom: 2rem; }
      .container { padding: 0 1.5rem; }
      section { padding: 4rem 0; }
      .about-grid { grid-template-columns: 1fr; gap: 3rem; }
      .services-grid { grid-template-columns: 1fr; }
      .engagement-grid { grid-template-columns: 1fr 1fr; }
      .section-header { gap: 1.5rem; }
      .section-num { font-size: 2.5rem; }
      .cta-grid { grid-template-columns: 1fr; gap: 3rem; }
      footer { flex-direction: column; gap: 1.5rem; text-align: center; }
      .footer-links { justify-content: center; }
       .ref-header { gap: 1.5rem; }
      .ref-num { font-size: 2.5rem; }
      .ref-body { grid-template-columns: 1fr; gap: 3rem; }
    }
    
    @media (max-width: 600px) {
      .engagement-grid { grid-template-columns: 1fr; }
      .cta-buttons { flex-direction: column; }
    }
    
    

    @media (width > 960px) {
    .nav-links {
    display : flex ;
      }
    .nav-burger {
    display : none ;
      }
    .hero-right-image-container {
      display : block;
    }
    }

     @media (width < 960px) {
   
    .nav-links {
    display : none ;
      }
    .nav-burger {
    display : flex ;  
    }
    .hero-right-image-container {
      display : none;
    }
     }

