/* ==========================================================================
   Cásate Conmigo Weddings — design tokens & base
   Palette and type sampled/derived from WEB - MARC/View web draft.
   ========================================================================== */

:root{
  /* --- palette (from Canva draft sampling) --- */
  --cream:        #EFE9E4;
  --cream-2:      #E6DED5;
  --ink:          #2A2521;
  --ink-soft:     #595A58;
  --heading-ink:  #68564C;
  --gold:         #B9975A;
  --gold-bright:  #D5A146;
  --charcoal:     #211E1A;
  --charcoal-2:   #2C2822;
  --on-charcoal:  #EFE9E4;
  --line:         rgba(42,37,33,.14);
  --line-on-dark: rgba(239,233,228,.18);
  --white:        #FFFFFF;

  /* --- type --- */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Lora', Georgia, serif;
  --font-sans:    'Poppins', Helvetica, Arial, sans-serif;

  /* --- rhythm --- */
  --header-h: 84px;
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 2px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (max-width: 640px){
  :root{ --header-h: 68px; }
}

/* --- reset --- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3{ font-family: var(--font-display); font-weight: 400; margin: 0; text-wrap: balance; }
p{ margin: 0; }
::selection{ background: var(--gold); color: var(--white); }
:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

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

.visually-hidden{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link{
  position: fixed;
  top: -60px; left: 12px;
  z-index: 1000;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .04em;
  transition: top .2s var(--ease);
}
.skip-link:focus{ top: 12px; }

.eyebrow{
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 500;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled{
  background: color-mix(in srgb, var(--cream) 78%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.site-header.on-dark.is-scrolled{
  background: color-mix(in srgb, var(--charcoal) 55%, transparent);
}
.site-header .container{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand{ display: flex; align-items: center; gap: 12px; }
.brand img{
  height: 40px;
  width: auto;
  transition: opacity .3s var(--ease);
}
@media (max-width: 640px){ .brand img{ height: 32px; } }
/* logo-for-dark-bg = white mark (default: header starts over the dark hero) */
.brand img.logo-for-light-bg{ display: none; }
.site-header.on-light .brand img.logo-for-dark-bg{ display: none; }
.site-header.on-light .brand img.logo-for-light-bg{ display: block; }

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

.lang-switch{
  display: flex;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .08em;
  color: currentColor;
}
.lang-switch a{ opacity: .55; padding: 4px 2px; }
.lang-switch a[aria-current="true"]{ opacity: 1; border-bottom: 1px solid currentColor; }
.lang-switch a:hover{ opacity: 1; }

.site-header{ color: var(--on-charcoal); } /* default: on dark hero */
.site-header.on-light{ color: var(--ink); }
.site-header.on-dark{ color: var(--on-charcoal); }

.header-cta{
  display: inline-flex; align-items: center; justify-content: center;
  height: 26px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap;
  color: currentColor;
  padding: 0 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: .55;
  transition: opacity .25s var(--ease);
}
.header-cta:hover{ opacity: 1; }
.header-cta.cookie-cta-primary{
  background: var(--cream-2);
  border-color: var(--cream-2);
  color: var(--ink);
  opacity: 1;
}
.header-cta.cookie-cta-primary:hover{
  background: var(--cream);
  border-color: var(--cream);
}
.header-ig{
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: currentColor;
  opacity: .55;
  transition: opacity .25s var(--ease);
}
.header-ig svg{ width: 13px; height: 13px; }
.header-ig:hover{ opacity: 1; }
@media (max-width: 360px){
  .header-actions{ gap: 10px; }
  .header-cta{ height: 24px; padding: 0 9px; font-size: 10px; }
  .header-ig{ width: 24px; height: 24px; }
  .header-ig svg{ width: 12px; height: 12px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: calc(var(--header-h) + clamp(16px, 4vh, 56px));
  text-align: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,16,.28) 0%, rgba(20,18,16,0) 32%, rgba(20,18,16,0) 62%, rgba(20,18,16,.4) 100%);
}
.hero-content{
  position: relative; z-index: 2;
  padding: 0 20px;
  color: var(--cream);
}
.hero-title{
  font-size: clamp(1.4rem, 8vw, 6rem);
  white-space: nowrap;
  letter-spacing: .01em;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0,0,0,.18);
}
.hero-sub{
  display: block;
  margin-top: clamp(14px, 2.4vw, 22px);
  font-family: var(--font-sans);
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero-scroll{
  position: absolute; left: 50%; bottom: 34px; z-index: 2;
  transform: translateX(-50%);
  color: var(--cream);
  opacity: .8;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
}
.hero-scroll .line{ width: 1px; height: 30px; background: currentColor; overflow: hidden; }
.hero-scroll .line::after{
  content: ""; display: block; width: 100%; height: 40%;
  background: var(--gold);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine{
  0%{ transform: translateY(-100%); }
  100%{ transform: translateY(250%); }
}
@media (prefers-reduced-motion: reduce){ .hero-scroll .line::after{ animation: none; } }

/* ==========================================================================
   Full-bleed editorial grid (9 photos)
   ========================================================================== */
.grid-editorial{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.grid-editorial img{
  width: 100%; height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
@media (max-width: 720px){
  .grid-editorial{ grid-template-columns: repeat(2, 1fr); }
  .grid-editorial img{ aspect-ratio: 3 / 4; }
  .grid-editorial li:nth-child(9){ display: none; }
}

/* ==========================================================================
   Video (full-bleed)
   ========================================================================== */
.video-section{
  position: relative;
  height: 100svh;
  background: var(--charcoal);
  overflow: hidden;
}
.video-section video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-section::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,13,11,.5), rgba(15,13,11,.08) 40%);
}
.video-caption{
  position: absolute; left: 0; right: 0; top: clamp(28px, 6vh, 64px);
  z-index: 2; text-align: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  padding: 0 24px;
}
.video-sound{
  position: absolute; right: clamp(16px,4vw,40px); bottom: clamp(28px, 6vh, 64px);
  z-index: 3;
  width: 44px; height: 44px;
  border: 1px solid var(--line-on-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
}
.video-sound:hover{ border-color: var(--gold); color: var(--gold); }
.video-sound::after{
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 28px; height: 1px;
  background: currentColor;
  transform: translate(-50%,-50%) rotate(-45deg);
  transition: opacity .2s var(--ease);
}
.video-sound.is-unmuted::after{ opacity: 0; }

/* ==========================================================================
   Services
   ========================================================================== */
.services{ background: var(--cream); padding: clamp(80px,12vw,140px) 0 clamp(40px,8vw,90px); }
.services-intro{ max-width: 62ch; margin: 0 auto clamp(56px,9vw,96px); text-align: center; }
.services-intro h2{ font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--heading-ink); margin-top: 14px; }
.services-intro p{ margin-top: 16px; color: var(--ink-soft); font-size: 1.05rem; }

.service{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  margin-bottom: clamp(64px, 10vw, 130px);
}
.service:last-child{ margin-bottom: 0; }
.service:nth-child(even) .service-media{ order: 2; }
.service:nth-child(even) .service-copy{ order: 1; }
.service-media{
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
}
.service-media img{
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.02);
  transform: scale(1.001);
  transition: filter .8s var(--ease), transform 1.2s var(--ease);
}
.service:hover .service-media img{ filter: grayscale(0); transform: scale(1.035); }
.service-copy h3{
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--heading-ink);
}
.service-copy p{ margin-top: 16px; color: var(--ink-soft); max-width: 52ch; text-align: justify; }
.service-copy p + p{ margin-top: 14px; }
@media (max-width: 780px){
  .service{ grid-template-columns: 1fr; }
  .service:nth-child(even) .service-media,
  .service:nth-child(even) .service-copy{ order: initial; }
}

/* ==========================================================================
   Instagram grid
   ========================================================================== */
.instagram{ background: var(--cream); }
.instagram-head{
  padding: clamp(48px,8vw,84px) var(--gutter) clamp(28px,5vw,44px);
  text-align: center;
  color: var(--ink);
}
.instagram-head h2{ font-size: clamp(1.8rem,3.2vw,2.4rem); margin-top: 14px; }
.instagram-head a{ color: var(--gold); }
.instagram-head a:hover{ text-decoration: underline; text-underline-offset: 4px; }
.grid-instagram{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.grid-instagram li{ position: relative; aspect-ratio: 1/1; overflow: hidden; }
.grid-instagram img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), opacity .3s; }
.grid-instagram a{ position: absolute; inset: 0; display: block; }
.grid-instagram a::after{
  content: "";
  position: absolute; inset: 0;
  background: rgba(20,17,15,0);
  transition: background .3s var(--ease);
}
.grid-instagram a:hover::after{ background: rgba(20,17,15,.28); }
.grid-instagram a:hover img{ transform: scale(1.06); }
.grid-instagram svg{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.7);
  opacity: 0; color: #fff; transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.grid-instagram a:hover svg{ opacity: 1; transform: translate(-50%,-50%) scale(1); }
@media (max-width: 900px){ .grid-instagram{ grid-template-columns: repeat(4,1fr); } }
@media (max-width: 560px){ .grid-instagram{ grid-template-columns: repeat(3,1fr); } }

/* ==========================================================================
   Press / Vogue banner
   ========================================================================== */
.press{ background: var(--cream); padding: clamp(70px,10vw,120px) 0 0; }
.press-grid{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}
.press-carousel{ position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--charcoal); }
.press-carousel img{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1s var(--ease);
}
.press-carousel img.is-active{ opacity: 1; }
.press-dots{
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.press-dots button{ width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.45); transition: background .3s, transform .3s; }
.press-dots button.is-active{ background: #fff; transform: scale(1.25); }
.press-arrow{
  position: absolute; top: 50%; right: 16px; transform: translateY(-50%);
  z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.85); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.press-arrow:hover{ background: var(--white); }
.press-copy{
  padding: clamp(28px,4vw,56px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 18px;
}
.press-logo{
  display: block;
  align-self: flex-start;
  height: clamp(40px, 5.5vw, 58px);
  width: auto;
  margin-left: -3px;
}
.press-copy h2{ font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--heading-ink); }
.press-copy p{ color: var(--ink-soft); text-align: justify; }
.press-copy .btn{ align-self: flex-start; margin-top: 6px; }
@media (max-width: 780px){ .press-grid{ grid-template-columns: 1fr; } .press-carousel{ aspect-ratio: 4/3; } }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.btn-dark{ color: var(--ink); }
.btn-dark:hover{ background: var(--ink); color: var(--cream); }
.btn-light{ color: var(--cream); border-color: var(--line-on-dark); }
.btn-light:hover{ background: var(--cream); color: var(--ink); }
.btn-gold{ background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover{ background: color-mix(in srgb, var(--gold) 82%, black); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.reviews{ background: var(--cream); padding: clamp(80px,12vw,140px) 0 clamp(80px,10vw,130px); }
.reviews-head{ text-align: center; max-width: 60ch; margin: 0 auto clamp(48px,7vw,80px); }
.reviews-head h2{ font-size: clamp(1.9rem,3.2vw,2.6rem); color: var(--heading-ink); margin-top: 14px; }
.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(20px, 3vw, 32px);
}
.review-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px,3vw,34px);
  display: flex; flex-direction: column; gap: 16px;
}
.review-stars{ color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.review-quote{ color: var(--ink-soft); flex: 1; text-align: justify; }
.review-meta{ display: flex; align-items: center; gap: 12px; }
.review-avatar{
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--heading-ink); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  flex-shrink: 0;
}
.review-name{ font-family: var(--font-sans); font-size: 13.5px; font-weight: 600; color: var(--ink); }
.review-source{ font-family: var(--font-sans); font-size: 11.5px; color: var(--ink-soft); }
@media (max-width: 860px){ .reviews-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   Contact (dark closing section)
   ========================================================================== */
.contact{
  background: var(--charcoal);
  color: var(--on-charcoal);
  padding: clamp(90px,12vw,150px) 0 clamp(40px,6vw,60px);
}
.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
}
.contact-head .eyebrow{ color: var(--gold); }
.contact-head h2{ font-size: clamp(2.2rem,4.4vw,3.4rem); margin-top: 16px; color: var(--on-charcoal); }
.contact-head p{ margin-top: 20px; color: color-mix(in srgb, var(--on-charcoal) 72%, transparent); max-width: 46ch; text-align: justify; }
.contact-list{ display: flex; flex-direction: column; gap: 4px; }
.contact-row{
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-on-dark);
}
.contact-row:first-child{ border-top: 1px solid var(--line-on-dark); }
.contact-row-label{ font-family: var(--font-sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.contact-row-value{ font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.4rem); }
.contact-row-value a{ transition: opacity .25s var(--ease); }
.contact-row-value a:hover{ opacity: .55; }
.copy-btn{
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-on-dark);
  flex-shrink: 0; position: relative;
  opacity: 1;
  transition: opacity .25s var(--ease);
}
.copy-btn:hover{ opacity: .55; }
.copy-btn .toast{
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--gold); color: var(--white);
  font-family: var(--font-sans); font-size: 11px; letter-spacing: .06em;
  padding: 5px 10px; border-radius: 4px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.copy-btn.is-copied .toast{ opacity: 1; transform: translateX(-50%) translateY(0); }
@media (max-width: 780px){
  .contact-grid{ grid-template-columns: 1fr; gap: clamp(32px, 10vw, 48px); }
  .contact-head h2{ font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .contact-row{ padding: 14px 0; }
  .contact-row-label{ font-size: 10px; letter-spacing: .12em; }
  .contact-row-value{ font-size: .95rem; }
  .copy-btn{ width: 32px; height: 32px; }
}

.site-footer{
  margin-top: clamp(60px,8vw,90px);
  padding-top: 28px;
  border-top: 1px solid var(--line-on-dark);
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  font-family: var(--font-sans); font-size: 12px;
  color: color-mix(in srgb, var(--on-charcoal) 60%, transparent);
}
.site-footer a:hover{ color: var(--gold); }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
[data-reveal]{ opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity: 1; transform: none; }
}

/* section anchor offset so fixed header doesn't cover targets */
section[id]{ scroll-margin-top: var(--header-h); }

/* ==========================================================================
   Cookie consent
   ========================================================================== */
.cookie-banner{
  position: fixed; inset: auto 0 0 0;
  z-index: 2147483000;
  background: color-mix(in srgb, var(--charcoal) 92%, transparent);
  color: var(--on-charcoal);
  border-top: 1px solid var(--line-on-dark);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.cookie-banner[hidden]{ display: none; }
.cookie-banner-row{
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-top: 14px; padding-bottom: 14px;
}
.cookie-banner p{
  margin: 0; flex: 1 1 360px; min-width: 0;
  font-size: 12.5px; line-height: 1.6;
  color: color-mix(in srgb, var(--on-charcoal) 85%, transparent);
}
.cookie-banner a{ color: var(--gold); }
.cookie-banner a:hover{ opacity: .8; }
.cookie-banner-actions{
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
@media (max-width: 640px){
  .cookie-banner-row{ padding-top: 12px; padding-bottom: 12px; }
  .cookie-banner-actions{ width: 100%; gap: 6px; }
  .cookie-banner-actions .header-cta{ flex: 1 1 0; padding: 0 6px; font-size: 10px; letter-spacing: .03em; }
}

.cookie-modal{ position: fixed; inset: 0; z-index: 2147483000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal[hidden]{ display: none; }
.cookie-modal-backdrop{ position: absolute; inset: 0; background: rgba(15,13,11,.55); }
.cookie-modal-panel{
  position: relative; z-index: 1;
  width: 100%; max-width: 480px;
  max-height: 86vh; overflow-y: auto;
  background: var(--cream); color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(26px,4vw,36px);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.cookie-modal-panel h2{ font-size: 1.4rem; color: var(--heading-ink); }
.cookie-modal-intro{ margin-top: 10px; font-size: 13px; color: var(--ink-soft); }
.cookie-modal-row{
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.cookie-modal-row:first-of-type{ margin-top: 18px; }
.cookie-modal-row h3{ font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: var(--ink); margin: 0 0 4px; }
.cookie-modal-row p{ font-size: 12.5px; color: var(--ink-soft); margin: 0; }
.cookie-toggle{ position: relative; flex-shrink: 0; width: 40px; height: 24px; display: inline-block; margin-top: 2px; }
.cookie-toggle input{ position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.cookie-toggle span{
  position: absolute; inset: 0; border-radius: 999px; background: var(--line);
  transition: background .2s var(--ease);
}
.cookie-toggle span::before{
  content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--white); transition: transform .2s var(--ease); box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.cookie-toggle input:checked + span{ background: var(--gold); }
.cookie-toggle input:checked + span::before{ transform: translateX(16px); }
.cookie-toggle input:disabled{ cursor: not-allowed; }
.cookie-toggle input:disabled + span{ opacity: .6; }
.cookie-modal-actions{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cookie-modal-actions .cookie-btn{
  flex: 1; text-align: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: none;
  transition: opacity .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.cookie-modal-actions .cookie-btn-ghost{ color: var(--ink); opacity: .7; }
.cookie-modal-actions .cookie-btn-ghost:hover{ opacity: 1; }
.cookie-modal-actions .cookie-btn-primary{ background: var(--gold); border-color: var(--gold); color: var(--white); }
.cookie-modal-actions .cookie-btn-primary:hover{ background: color-mix(in srgb, var(--gold) 82%, black); }

.footer-cookie-link{ font-family: var(--font-sans); font-size: 12px; color: inherit; opacity: .85; }
.footer-cookie-link:hover{ opacity: 1; color: var(--gold); }
