/*
Theme Name: Claude Theme
Author: Marie-Charlotte
Version: 1.0
*/

  @font-face {
    font-family: 'Things';
    src: url('https://db.onlinewebfonts.com/t/a3a5fa75bc3cc62e51a25aa3d26e34dc.woff2') format('woff2'),
         url('https://db.onlinewebfonts.com/t/a3a5fa75bc3cc62e51a25aa3d26e34dc.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }
  :root {
    --white: #FFFFFF;
    --black: #111111;
    --beige: #F5F0E8;
    --green: #295C4F;
    --sky: #DCF0F7;
    --beige-dark: #E8E0D0;
    --script: 'Pinyon Script', cursive;
    --serif: 'PT Serif', serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: var(--serif);
    background: var(--beige);
    color: var(--black);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 64px;
    transition: background 0.4s, padding 0.4s;
  }
  nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 14px 64px;
    border-bottom: 1px solid var(--beige-dark);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    transition: opacity 0.4s;
  }
  .nav-logo img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.4s;
  }
  nav.scrolled .nav-logo img {
    filter: none;
  }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-family: var(--serif);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    opacity: 0.82;
    transition: color 0.3s, opacity 0.3s;
    position: relative;
    padding-bottom: 3px;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--green);
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }
  nav.scrolled .nav-links a { color: var(--black); }
  .nav-links a:hover { opacity: 1; color: var(--green) !important; }

  /* ─── HERO ─── */
  #home {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.35) 100%),
      linear-gradient(to bottom,
        rgba(0,0,0,0.08) 0%,
        rgba(0,0,0,0.42) 55%,
        rgba(41,92,79,0.4) 100%),
      url('https://www.domainedesarson.com/images/2026/2025-08-24_chloe_cyril_1_preparatifs_0459_print.jpg') center/cover no-repeat;
    transform: scale(1.06);
    animation: heroZoom 9s ease-out forwards;
  }
  @keyframes heroZoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1.0); }
  }
  .hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 0 40px;
    animation: fadeUp 1.2s 0.4s ease both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(255,255,255,0.4);
  }
  /* Script font: ONE intentional use only — the couple's names */
  .hero-names {
    font-family: 'Things', 'Pinyon Script', cursive;
    font-size: clamp(50px, 9vw, 76px);
    font-weight: normal;
    line-height: 1;
    margin-bottom: 22px;
    text-shadow: 0 2px 48px rgba(0,0,0,0.22);
  }
  .hero-date {
    font-size: 11px;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    opacity: 0.72;
    margin-bottom: 36px;
  }
  .hero-divider {
    width: 36px;
    height: 1px;
    background: rgba(255,255,255,0.38);
    margin: 0 auto 32px;
  }
  .hero-text {
    font-size: 17px;
    line-height: 1.9;
    max-width:600px;
    margin: 0 auto;
    opacity: 0.83;
    font-style: italic;
  }
  .hero-scroll {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.45);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounceScroll 2.2s ease-in-out infinite;
  }
  .hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
  }
  @keyframes bounceScroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  /* ─── SHARED ELEMENTS ─── */
  section { position: relative; }

  /* ─── RAFFINEMENTS GLOBAUX ─── */

  /* Curseur élégant */
  a, button, .btn, .m-cell, .tl-photo, .eq-card { cursor: pointer; }

  /* Transitions douces sur tous les liens */
  a { transition: opacity 0.25s, color 0.25s; }

  /* Sélection de texte aux couleurs du site */
  ::selection { background: var(--green); color: var(--white); }

  /* Scrollbar fine et élégante */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--beige); }
  ::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }

  /* Labels — espacement raffiné */
  .label {
    display: block;
    font-size: 9.5px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
  }
  .label.on-dark { color: rgba(255,255,255,0.45); }

  /* Boutons — élégance + micro-interaction */
  .btn {
    display: inline-block;
    padding: 15px 44px;
    font-size: 9.5px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.35s ease;
    position: relative;
  }
  .btn-dark {
    background: var(--green);
    color: var(--white);
    
  }
  .btn-dark:hover {
    background: #1e4439;
    
    transform: translateY(-2px);
    letter-spacing: 4px;
  }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.42);
  }
  .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
    letter-spacing: 4px;
  }

  /* Ornement */
  .ornament {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    margin: 28px 0;
  }
  .orn-line { width: 48px; height: 1px; background: currentColor; opacity: 0.22; }
  .orn-diamond {
    width: 5px; height: 5px;
    border: 1px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.38;
  }

  /* Ornement décoratif sur les séparateurs de section */
  .section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 64px;
    margin-bottom: 64px;
  }
  .section-ornament::before,
  .section-ornament::after {
    content: '';
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: var(--beige-dark);
  }
  .section-ornament-diamond {
    width: 6px; height: 6px;
    border: 1px solid var(--beige-dark);
    transform: rotate(45deg);
  }

  /* ─── EFFET BALAYAGE ─── */
  /* Chaque section passe par-dessus la précédente via z-index + box-shadow */
  #home             { position: relative; z-index: 1; }
  #the-wedding      { position: relative; z-index: 2;  }
  #the-wedding-info { position: relative; z-index: 4;  }
  #lieu             { position: relative; z-index: 3;  }
  #our-story        { position: relative; z-index: 5;  }
  #notre-equipe     { position: relative; z-index: 6;  }
  #dresscode        { position: relative; z-index: 7;  }
  #wedding-club     { position: relative; z-index: 8;  }
  #gift             { position: relative; z-index: 9;  }
  footer            { position: relative; z-index: 10;  }

  /* All section titles: PT Serif italic — elegant without being script */
  .title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.18;
    color: var(--black);
    margin-bottom: 32px;
  }
  .title.light { color: var(--white); }
  .title.xl { font-size: clamp(30px, 4vw, 52px); }

  .body-text {
    font-size: 16px;
    line-height: 1.92;
    color: #4a4a4a;
  }
  .body-text.light { color: rgba(255,255,255,0.78); }

  /* ─── INTRO ─── */
  #the-wedding {
    background: var(--beige);
    padding: 0;
    overflow: visible;
  }
  .intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 92vh;
  }

  .intro-text-col {
    background: #fdf9f4;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
  }
  /* Double cadre interne avec marge */
  .intro-text-col::before {
    content: '';
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(41,92,79,0.35);
    pointer-events: none;
    z-index: 0;
  }
  .intro-text-col::after {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(41,92,79,0.18);
    pointer-events: none;
    z-index: 0;
  }
  .intro-text-frame {
    padding: 52px 48px;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  /* Colonne droite : rayures + polaroïds */
  .intro-photo-col {
    position: relative;
    background: repeating-linear-gradient(
      to right,
      #e8f6fb 0px, #e8f6fb 26px,
      #ffffff 26px, #ffffff 52px
    );
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .intro-polaroids-wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .intro-photo-item {
    background: #faf6ef;
    padding: 8px 8px 34px;
    
    flex-shrink: 0;
    transition: box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    will-change: transform;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23p)' opacity='0.06'/%3E%3C/svg%3E"),
                       linear-gradient(135deg, #fdf9f2 0%, #f5ede0 100%);
    background-size: 100px 100px, 100% 100%;
  }
  .intro-polaroid-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    will-change: transform;
  }
  .intro-polaroid-unit:nth-child(1) { z-index: 3; margin-right: -32px; }
  .intro-polaroid-unit:nth-child(2) { z-index: 2; margin-top: 40px; }
  .intro-polaroid-unit:nth-child(1) .intro-photo-item { width: 270px; }
  .intro-polaroid-unit:nth-child(2) .intro-photo-item { width: 230px; }
  .intro-photo-item:hover {
    
    z-index: 10;
  }
  /* Effet vieilli sur l'image : sépia + grain + vignette */
  .intro-photo-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(100%) sepia(18%) brightness(0.86) contrast(1.05);
    transition: filter 0.5s;
    position: relative;
  }
  /* Vignette et grain via pseudo-element */
  .intro-photo-item::after {
    content: '';
    position: absolute;
    top: 8px; left: 8px;
    right: 8px;
    bottom: 30px;
    background:
      radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.28) 100%),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    background-size: cover, 150px 150px;
    pointer-events: none;
    z-index: 1;
  }
  .intro-photo-item:hover img {
    filter: grayscale(0%) sepia(0%) brightness(1) contrast(1);
  }
  .intro-photo-item {
    background: #faf6ef;
    padding: 8px 8px 0;
    
    flex-shrink: 0;
    transition: box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    will-change: transform;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23p)' opacity='0.06'/%3E%3C/svg%3E"),
                       linear-gradient(135deg, #fdf9f2 0%, #f5ede0 100%);
    background-size: 100px 100px, 100% 100%;
  }
  .intro-photo-caption {
    font-family: 'Caveat', cursive;
    font-size: 16px;
    color: #8a7a60;
    text-align: center;
    display: block;
    padding-top: 8px;
    line-height: 1;
    letter-spacing: 0.5px;
    background: none;
  }

  /* ─── LIEU & CARTE ─── */
  #lieu {
    background: var(--white);
    padding: 130px 0;
    position: relative;
    z-index: 2;
  }
  .lieu-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .lieu-map {
    position: relative;
    height: 480px;
    overflow: hidden;
    border: 1px solid var(--beige-dark);
  }
  .lieu-map:hover svg { opacity: 0.95; }
  .lieu-map-pin {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--white);
    padding: 10px 18px;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    pointer-events: none;
  }
  .lieu-content { }
  .lieu-address {
    font-size: 13px;
    line-height: 2;
    color: #888;
    font-style: italic;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--beige-dark);
  }
  .lieu-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    margin-top: 8px;
  }
  .lieu-detail-item { }
  .lieu-detail-label {
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    display: block;
    margin-bottom: 6px;
  }
  .lieu-detail-value {
    font-size: 14px;
    line-height: 1.6;
    color: var(--black);
    font-style: italic;
  }

  .intro-img {
    position: relative;
    height: 620px;
  }
  .intro-img::before {
    content: '';
    position: absolute;
    top: -18px; left: -18px; right: 18px; bottom: 18px;
    border: 1px solid var(--beige-dark);
    pointer-events: none;
    z-index: 0;
  }
  .intro-img-wrap {
    position: relative; z-index: 1;
    height: 100%; overflow: hidden;
    
  }
  .intro-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
    
  }
  .intro-img:hover .intro-img-wrap img { transform: scale(1.04); }

  /* ─── CELEBRATION ─── */
  #the-wedding-info {
    background: var(--green);
    padding: 120px 64px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  /* Texture sur le fond vert */
  #the-wedding-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    background-size: 250px 250px;
    pointer-events: none;
  }
  .celebration-header { margin-bottom: 80px; position: relative; z-index: 1; }

  /* Timeline verticale alternée */
  .cel-timeline {
    position: relative;
    max-width: 560px;
    margin: 0 auto 56px;
    z-index: 1;
  }
  /* Ligne centrale */
  .cel-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.2);
    transform: translateX(-50%);
  }

  .cel-item {
    display: grid;
    grid-template-columns: 1fr 20px 1fr;
    align-items: center;
    margin-bottom: 56px;
    position: relative;
  }
  .cel-item:last-child { margin-bottom: 0; }

  /* Point sur la ligne */
  .cel-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: background 0.3s;
  }
  .cel-item:hover .cel-dot { background: var(--white); }

  /* Côté heure */
  .cel-left, .cel-right {
    padding: 0 28px;
    transition: opacity 0.3s;
  }
  .cel-item:hover .cel-left,
  .cel-item:hover .cel-right { opacity: 0.85; }

  /* Items impairs : heure à gauche, texte à droite */
  .cel-item.odd .cel-left { text-align: right; }
  .cel-item.odd .cel-right { text-align: left; }
  /* Items pairs : heure à droite, texte à gauche */
  .cel-item.even .cel-left { text-align: right; }
  .cel-item.even .cel-right { text-align: left; }

  .cel-hour {
    font-family: 'Things', var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    line-height: 1;
    display: block;
  }
  .cel-day-label {
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    display: block;
    margin-top: 3px;
  }
  .cel-event-title {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--white);
    line-height: 1.3;
    display: block;
  }
  .cel-event-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin-top: 3px;
    display: block;
  }

  .cel-note {
    font-size: 13px;
    color: rgba(255,255,255,0.28);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.85;
    font-style: italic;
    position: relative;
    z-index: 1;
  }
  .cel-text {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
  }
  .cel-note {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.85;
    font-style: italic;
  }

  /* ─── OUR STORY ─── */
  #our-story {
    background-color: #f4f1ed;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='900'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.82 0 0 0 0 0.80 0 0 0 0 0.78 0 0 0 0.1 0'/%3E%3C/filter%3E%3Crect width='900' height='900' filter='url(%23g)'/%3E%3C/svg%3E"),
      repeating-linear-gradient(0deg, transparent 0px, transparent 14px, rgba(180,175,168,0.045) 14px, rgba(180,175,168,0.045) 15px),
      repeating-linear-gradient(90deg, transparent 0px, transparent 28px, rgba(180,175,168,0.025) 28px, rgba(180,175,168,0.025) 29px);
    background-size: 500px 500px, auto, auto;
    padding: 60px 0 0;
    overflow: hidden;
  }
  .story-header {
    text-align: center;
    margin-bottom: 0;
    padding: 0 64px 0;
  }
  .story-header .title { color: var(--black); }

  /* ── Timeline ── */
  .story-timeline {
    width: 100%;
    margin: 0 auto 0;
    padding: 80px 64px 100px;
    position: relative;
    background: transparent;
  }
  .story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: rgba(41,92,79,0.2);
    transform: translateX(-50%);
  }
  .tl-items-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .tl-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 100px;
  }
  .tl-item:last-child { margin-bottom: 0; }

  /* Colonne gauche contenant la photo : photo ferrée à droite (contre frise) */
  .tl-left:not(.tl-text) {
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
  }
  /* Colonne gauche contenant le texte : texte ferrée à droite, largeur limitée */
  .tl-left.tl-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    padding-right: 32px;
    max-width: 100%;
  }
  .tl-left.tl-text .tl-caption,
  .tl-left.tl-text .tl-title,
  .tl-left.tl-text .tl-desc {
    max-width: 220px;
  }

  /* Colonne droite contenant la photo : photo ferrée à gauche (contre frise) */
  .tl-right:not(.tl-text) {
    display: flex;
    justify-content: flex-start;
    padding-left: 0;
  }
  /* Colonne droite contenant le texte : texte ferrée à gauche, largeur limitée */
  .tl-right.tl-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding-left: 32px;
    max-width: 100%;
  }
  .tl-right.tl-text .tl-caption,
  .tl-right.tl-text .tl-title,
  .tl-right.tl-text .tl-desc {
    max-width: 220px;
  }
  .tl-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
  }
  .tl-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
  }
  .tl-year {
    font-style: italic;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--green);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
  }
  .tl-photo {
    cursor: pointer;
    position: relative;
    /* Ovale */
    border-radius: 50%;
    aspect-ratio: 3/4;
    height: 300px;
    width: auto;
    /* Double filet : outline + border */
    outline: 1px solid rgba(41,92,79,0.3);
    outline-offset: 8px;
    border: 1px solid rgba(41,92,79,0.15);
    overflow: hidden;
    transition: outline-color 0.4s;
  }
  .tl-photo:hover {
    outline-color: rgba(41,92,79,0.6);
  }
  .tl-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease, filter 0.5s;
    filter: saturate(0.65) brightness(0.94);
  }
  .tl-photo:hover img { transform: scale(1.04); filter: saturate(1) brightness(1); }
  .tl-caption {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
    display: block;
  }
  .tl-title {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 1.25;
    color: var(--black);
    margin-bottom: 14px;
  }
  .tl-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
  }

  /* ── Galerie slider horizontal ── */
  .story-gallery-wrap {
    background-color: #f4f1ed;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='900'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.82 0 0 0 0 0.80 0 0 0 0 0.78 0 0 0 0.1 0'/%3E%3C/filter%3E%3Crect width='900' height='900' filter='url(%23g)'/%3E%3C/svg%3E"),
      repeating-linear-gradient(0deg, transparent 0px, transparent 14px, rgba(180,175,168,0.045) 14px, rgba(180,175,168,0.045) 15px),
      repeating-linear-gradient(90deg, transparent 0px, transparent 28px, rgba(180,175,168,0.025) 28px, rgba(180,175,168,0.025) 29px);
    background-size: 500px 500px, auto, auto;
    padding: 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    cursor: none;
  }

  /* Titre en haut à droite comme dans la référence */
  .gallery-header-float {
    position: absolute;
    top: 40px; right: 56px;
    z-index: 10;
    text-align: right;
    pointer-events: none;
  }
  .gallery-header-float .gallery-big-title {
    font-family: 'Things', var(--serif);
    font-size: clamp(36px, 5vw, 68px);
    color: var(--black);
    line-height: 0.95;
    display: block;
  }
  .gallery-header-float .gallery-sub {
    font-size: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green);
    margin-top: 10px;
    display: block;
  }

  /* Curseur custom */
  .gallery-cursor {
    position: fixed;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s, background 0.2s;
  }
  .gallery-cursor.left  { background: var(--black); }
  .gallery-cursor.right { background: var(--black); }

  /* Le rail de photos */
  .gallery-rail {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding: 80px 48px 60px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    user-select: none;
  }

  .gallery-slide {
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    cursor: none;
  }
  /* Hauteurs alternées */
  .gallery-slide:nth-child(odd)  { height: 480px; width: 320px; }
  .gallery-slide:nth-child(even) { height: 380px; width: 280px; }
  .gallery-slide:nth-child(3n)   { height: 420px; width: 340px; }

  .gallery-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) brightness(0.88);
    transition: filter 0.6s, transform 0.6s;
  }
  .gallery-slide:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.03);
  }
  .gallery-slide-label {
    position: absolute;
    bottom: 16px; left: 16px;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0);
    transition: color 0.3s;
  }
  .gallery-slide:hover .gallery-slide-label { color: rgba(255,255,255,0.7); }

  /* ── Lightbox ── */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  .lightbox.open { opacity: 1; pointer-events: all; }
  .lb-img {
    max-width: 88vw;
    max-height: 88vh;
    object-fit: contain;
    display: block;
    border: none;
  }
  .lb-close {
    position: absolute;
    top: 28px; right: 36px;
    color: white;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    background: none;
    border: none;
    line-height: 1;
  }
  .lb-close:hover { opacity: 1; }
  .lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 32px;
    cursor: pointer;
    opacity: 0.45;
    transition: opacity 0.2s;
    background: none;
    border: none;
    padding: 20px;
  }
  .lb-nav:hover { opacity: 1; }
  .lb-prev { left: 20px; }
  .lb-next { right: 20px; }
  .lb-caption {
    position: absolute;
    bottom: 32px;
    left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* ─── WHERE TO STAY ─── */
  #stay {
    background: var(--white);
    padding: 130px 0;
  }
  .stay-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: start;
  }
  .stay-list { margin-top: 40px; }
  .stay-item {
    display: flex;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--beige-dark);
  }
  .stay-num {
    font-style: italic;
    font-size: 26px;
    color: var(--beige-dark);
    min-width: 36px;
    line-height: 1;
    padding-top: 2px;
  }
  .stay-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
  .stay-detail { font-size: 13px; color: #aaa; font-style: italic; }
  .stay-map {
    height: 520px;
    overflow: hidden;
    position: relative;
  }
  .stay-map img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }
  .stay-map:hover img { transform: scale(1.03); }
  .stay-map-tag {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--white);
    padding: 10px 20px;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
  }

  /* ─── WEDDING CLUB ─── */
  #wedding-club {
    background: repeating-linear-gradient(
      to right,
      var(--green) 0px,
      var(--green) 28px,
      #1e4439 28px,
      #1e4439 56px
    );
    padding: 150px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #wedding-club::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    background-size: 250px 250px;
    pointer-events: none;
  }
  .club-inner {
    position: relative;
    z-index: 1;
    max-width: 660px;
    margin: 0 auto;
    background: rgba(41,92,79,0.72);
    backdrop-filter: blur(6px);
    padding: 72px 80px;
    border: 1px solid rgba(255,255,255,0.1);
  }

  /* ─── GIFT ─── */
  #gift {
    background: var(--beige);
    padding: 130px 0;
  }
  .gift-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: center;
  }
  .gift-img {
    height: 440px;
    overflow: hidden;
    position: relative;
  }
  .gift-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(41,92,79,0.12) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.5s;
  }
  .gift-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    filter: brightness(0.92) saturate(0.9);
  }
  .gift-img:hover img {
    transform: scale(1.04);
    filter: brightness(1) saturate(1);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--green);
    padding: 90px 64px 48px;
    text-align: center;
    border-top: 3px solid rgba(255,255,255,0.08);
  }
  .footer-club {
    display: block;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
  }
  .footer-title {
    display: block;
    font-style: italic;
    font-size: clamp(34px, 5vw, 58px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
  }
  .footer-date {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    font-style: italic;
  }
  .footer-rule { width: 36px; height: 1px; background: rgba(255,255,255,0.2); margin: 48px auto; }
  .footer-copy { font-size: 11px; letter-spacing: 1.5px; color: rgba(255,255,255,0.22); }

  /* ─── DRESS CODE ─── */
  #dresscode {
    background: var(--white);
    padding: 0;
    overflow: hidden;
  }

  .dc-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }
  .dc-block.reverse { }

  /* Côté photo */
  .dc-photo {
    position: relative;
    overflow: hidden;
  }
  .dc-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 1s ease;
    filter: brightness(0.88) saturate(0.9);
  }
  .dc-block:hover .dc-photo img { transform: scale(1.03); }
  .dc-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(41,92,79,0.18) 0%, rgba(0,0,0,0.08) 100%);
  }
  .dc-photo-tag {
    position: absolute;
    bottom: 28px;
    left: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245,240,232,0.88);
    backdrop-filter: blur(8px);
    padding: 8px 18px 8px 12px;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
  }
  .dc-photo-tag::before {
    content: '';
    width: 20px; height: 1px;
    background: var(--green);
    display: block;
  }

  /* Côté texte */
  .dc-content {
    background: var(--white);
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-left: 1px solid var(--beige-dark);
  }
  .dc-block.reverse .dc-content {
    border-left: none;
    border-right: 1px solid var(--beige-dark);
  }
  .dc-content-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
    display: block;
  }
  .dc-content-title {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 18px;
  }
  .dc-content-body {
    font-size: 14px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 18px;
  }
  .dc-content-body em { color: var(--black); font-style: italic; }
  .dc-swatches {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  .dc-swatch {
    width: 44px; height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    
  }
  .dc-swatch-label {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #bbb;
    margin-left: 4px;
  }

  /* ─── REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── NOTRE ÉQUIPE ─── */
  #notre-equipe {
    background: var(--green);
    padding: 130px 0;
  }
  .equipe-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
  }
  .equipe-header {
    text-align: center;
    margin-bottom: 88px;
  }
  .equipe-bloc {
    margin-bottom: 80px;
  }
  .equipe-bloc:last-child { margin-bottom: 0; }
  .equipe-bloc-title {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(22px, 2.5vw, 30px);
    color: rgba(255,255,255,0.6);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 400;
  }
  .equipe-bloc-rule {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 52px;
  }
  .equipe-bloc-rule::before,
  .equipe-bloc-rule::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.2);
  }
  .equipe-bloc-rule span {
    width: 5px; height: 5px;
    border: 1px solid rgba(255,255,255,0.2);
    transform: rotate(45deg);
    display: block;
  }

  /* Grille mariée : 5 col × 2 rangées */
  .equipe-grid-mariee {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 36px 16px;
    justify-items: center;
  }
  /* 9 cartes : ligne 2 centrée */
  .equipe-grid-mariee .eq-card:nth-child(7) { grid-column: 2; }
  .equipe-grid-mariee .eq-card:nth-child(8) { grid-column: 3; }
  .equipe-grid-mariee .eq-card:nth-child(9) { grid-column: 4; }
  /* Grille marié : 4 sur la 1re ligne, 2 centrées */
  .equipe-grid-marie {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 16px;
  }
  .equipe-grid-marie .eq-card:nth-child(5) {
    grid-column: 1;
  }
  .equipe-grid-marie .eq-card:nth-child(6) {
    grid-column: 2;
  }
  .equipe-grid-marie .eq-card:nth-child(7) {
    grid-column: 3;
  }

  .eq-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .eq-photo {
    width: 110px;
    height: 132px;
    border-radius: 55px;
    overflow: hidden;
    background: rgba(255,255,255,0.12);
    position: relative;
    flex-shrink: 0;
    /* Liseré blanc décalé via outline + offset */
    outline: 2px solid rgba(255,255,255,0.65);
    outline-offset: 5px;
    transition: outline-color 0.4s;
  }
  .eq-card:hover .eq-photo {
    outline-color: rgba(255,255,255,1);
  }
  .eq-photo-placeholder svg { opacity: 0.3; stroke: white; }
  .eq-name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
  }
  .eq-role {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    text-align: center;
    margin-top: -4px;
  }
  /* ─── TEXTURE FONDS VERTS ─── */
  #the-wedding-info,
  #notre-equipe,
  footer {
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.09'/%3E%3C/svg%3E"),
      repeating-linear-gradient(
        0deg,
        transparent 0px, transparent 6px,
        rgba(255,255,255,0.022) 6px, rgba(255,255,255,0.022) 7px
      ),
      repeating-linear-gradient(
        90deg,
        transparent 0px, transparent 6px,
        rgba(255,255,255,0.022) 6px, rgba(255,255,255,0.022) 7px
      );
    background-size: 250px 250px, auto, auto;
  }

  /* ═══════════════════════════════════════════
     AMÉLIORATIONS GRAPHIQUES
  ═══════════════════════════════════════════ */

  /* ── Eq-photo img ── */
  .eq-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: grayscale(100%) brightness(0.96);
    transition: filter 0.5s, transform 0.7s ease;
  }
  .eq-card:hover .eq-photo img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.08);
  }

  /* ══════════════════════════════════════════
     RESPONSIVE — TABLET (≤ 1024px)
  ══════════════════════════════════════════ */
  @media (max-width: 1024px) {
    nav { padding: 18px 32px; }
    nav.scrolled { padding: 12px 32px; }
    .nav-links { gap: 24px; }

    .intro-text-col { padding: 80px 48px; }
    .lieu-inner { padding: 0 32px; gap: 48px; }
    .lieu-map { height: 360px; }

    #the-wedding-info { padding: 100px 32px; }
    .celebration-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }

    .story-timeline { padding: 64px 32px 80px; }
    .tl-item { grid-template-columns: 1fr 40px 1fr; }
    .tl-left { padding-right: 32px; }
    .tl-right { padding-left: 32px; }

    .equipe-inner { padding: 0 32px; }
    .equipe-grid-mariee { grid-template-columns: repeat(4, 1fr); }
    .equipe-grid-mariee .eq-card:nth-child(7) { grid-column: auto; }
    .equipe-grid-mariee .eq-card:nth-child(8) { grid-column: auto; }
    .equipe-grid-mariee .eq-card:nth-child(9) { grid-column: auto; }
    .equipe-grid-marie { grid-template-columns: repeat(3, 1fr); }
    .equipe-grid-marie .eq-card:nth-child(5) { grid-column: auto; }
    .equipe-grid-marie .eq-card:nth-child(6) { grid-column: auto; }

    .dc-content { padding: 40px 36px; }
    .gift-inner { padding: 0 32px; gap: 48px; }
    #wedding-club { padding: 100px 32px; }
    .club-inner { padding: 56px 48px; }
    footer { padding: 72px 32px 40px; }
  }

  /* ══════════════════════════════════════════
     RESPONSIVE — MOBILE (≤ 768px)
  ══════════════════════════════════════════ */
  @media (max-width: 768px) {
    /* Nav burger */
    nav { padding: 16px 24px; }
    nav.scrolled { padding: 12px 24px; }
    .nav-burger { display: flex; }
    .nav-links {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--green);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s;
      z-index: 99;
    }
    .nav-links.open { opacity: 1; pointer-events: all; }
    .nav-links a {
      font-size: 13px;
      letter-spacing: 4px;
      color: var(--white) !important;
      opacity: 0.85;
    }
    .nav-links a::after { display: none; }

    /* Hero */
    .hero-names { font-size: clamp(38px, 12vw, 56px); }
    .hero-text { font-size: 15px; }

    /* Intro */
    #the-wedding { padding: 0; }
    .intro-inner { grid-template-columns: 1fr; }
    .intro-text-col { padding: 56px 24px; }
    .intro-text-frame { padding: 36px 28px; }
    .intro-photo-col { min-height: 380px; }
    .intro-polaroids-wrap { width: 90%; height: 360px; }
    .intro-photo-item { width: 60%; }

    /* Lieu */
    #lieu { padding: 80px 0; }
    .lieu-inner { grid-template-columns: 1fr; padding: 0 24px; gap: 40px; }
    .lieu-map { height: 280px; }
    .lieu-details { grid-template-columns: 1fr 1fr; }

    /* Programme */
    #the-wedding-info { padding: 80px 24px; }
    .celebration-grid { grid-template-columns: 1fr 1fr; }
    .cel-block { padding: 36px 20px; }

    /* Timeline */
    #our-story { padding: 48px 0 0; }
    .story-header { padding: 0 24px; }
    .story-timeline { padding: 48px 24px 64px; }
    .story-timeline::before { display: none; }
    .tl-item {
      grid-template-columns: 1fr;
      margin-bottom: 56px;
    }
    .tl-center { display: none; }
    .tl-left, .tl-right {
      padding: 0;
      text-align: left;
      grid-column: 1;
    }
    .tl-left.tl-text { text-align: left; }
    .tl-photo img { height: 220px; }

    /* Galerie */
    .story-masonry {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 180px;
    }
    .m-cell.wide { grid-column: span 2; }
    .m-cell.tall { grid-row: span 1; }

    /* Notre équipe */
    #notre-equipe { padding: 80px 0; }
    .equipe-inner { padding: 0 24px; }
    .equipe-grid-mariee { grid-template-columns: repeat(3, 1fr); gap: 28px 12px; }
    .equipe-grid-marie { grid-template-columns: repeat(3, 1fr); gap: 28px 12px; }

    /* Dress code */
    .dc-block { grid-template-columns: 1fr; min-height: auto; }
    .dc-block.reverse { }
    .dc-photo { height: 260px; }
    .dc-content { padding: 40px 28px; border-left: none !important; border-right: none !important; border-top: 1px solid var(--beige-dark); }

    /* Pronostics */
    #wedding-club { padding: 80px 24px; }
    .club-inner { padding: 48px 32px; }

    /* Cagnotte */
    #gift { padding: 80px 0; }
    .gift-inner {
      grid-template-columns: 1fr;
      padding: 0 24px;
      gap: 40px;
    }
    .gift-img { height: 280px; }

    /* Footer */
    footer { padding: 64px 24px 36px; }
  }

  /* ══════════════════════════════════════════
     RESPONSIVE — SMALL MOBILE (≤ 480px)
  ══════════════════════════════════════════ */
  @media (max-width: 480px) {
    .celebration-grid { grid-template-columns: 1fr; }
    .equipe-grid-mariee { grid-template-columns: repeat(2, 1fr); }
    .equipe-grid-marie { grid-template-columns: repeat(2, 1fr); }
    .story-masonry {
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: 160px;
    }
    .hero-eyebrow::before, .hero-eyebrow::after { display: none; }
  }
