/* ==========================================================================
   KILICASA — static site styles (mobile-first)
   ========================================================================== */

:root {
  --cream: #FDF4E7;
  --cream-2: #FBEEDC;
  --dark: #303434;
  --ink: #26232B;
  --ink-2: #2B2C32;
  --muted: #3d3830;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', Helvetica, sans-serif;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; }

.krona { font-family: 'Krona One', sans-serif; font-weight: 400; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.dark-section { background: var(--dark); color: var(--cream); }

.section-title {
  font-family: 'Krona One', sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.25;
  margin: 0;
}

/* ============ NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
}

.site-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  position: relative;
}

.site-nav .logo img { height: 32px; width: auto; display: block; }

@media (min-width: 900px) {
  .site-nav .logo img { height: 40px; }
}

/* Burger button — phone only */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Phone: dropdown menu */
.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: var(--cream);
  border-top: 1px solid rgba(38, 35, 43, 0.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}
.nav-open .nav-links { display: flex; }

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.06em;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(38, 35, 43, 0.08);
}

.nav-links a:hover { opacity: 0.6; }

/* Waiting-list CTA button in the nav — matches the dark "JOIN THE LIST" button */
.nav-links a.nav-cta {
  background: var(--ink);
  color: var(--cream-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.nav-links a.nav-cta:hover { opacity: 1; background: #3f3a49; }

/* Phone menu: separate the CTA from the list and animate it so it stands out */
.nav-open .nav-links a.nav-cta {
  margin: 16px 20px 20px;
  padding: 16px;
  text-align: center;
  border-bottom: none;
  animation: cta-pulse 1.8s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(38, 35, 43, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(38, 35, 43, 0); }
}

/* Dashboard button in the nav — same design as the WAITING LIST CTA */
.nav-links .nav-dash-btn {
  background: var(--ink);
  color: var(--cream-2);
  font-family: 'Jost', Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  border: none;
  cursor: pointer;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(38, 35, 43, 0.08);
}
.nav-links .nav-dash-btn:hover { opacity: 1; background: #3f3a49; }

/* Phone menu: same standalone treatment as the CTA */
.nav-open .nav-links .nav-dash-btn {
  margin: 16px 20px 20px;
  padding: 16px;
  text-align: center;
  border-bottom: none;
}

@media (min-width: 900px) {
  .nav-links .nav-dash-btn { padding: 12px 26px; border-bottom: none; }
}

/* Blur backdrop behind the open phone menu */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(38, 35, 43, 0.25);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
body.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }

@media (prefers-reduced-motion: reduce) {
  .nav-open .nav-links a.nav-cta { animation: none; }
}

/* Desktop / tablet: inline links, no burger */
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 14px 22px;
    flex-wrap: wrap;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .nav-links a { font-size: 16px; padding: 0; border: none; }
  .nav-links a.nav-cta { padding: 12px 26px; border-radius: 0; }
  .nav-backdrop { display: none; }
}

/* Simple nav link (privacy page) — always visible */
.nav-simple a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.nav-simple a:hover { opacity: 0.6; }

/* Mobile / desktop content swap */
.only-desktop { display: none !important; }
@media (min-width: 900px) {
  .only-desktop { display: block !important; }
  .only-mobile { display: none !important; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: 48px;
  padding-bottom: 60px;
}

.hero-title-kicker {
  margin: 0 0 8px;
  font-family: 'Krona One', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 5.6vw, 34px);
  letter-spacing: 0.06em;
}

.hero-title {
  margin: 0;
  font-family: 'Krona One', sans-serif;
  font-weight: 400;
  font-size: clamp(42px, 12vw, 142px);
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  position: relative;
  z-index: 3;
}

.hero-img { display: block; width: 100%; }

.hero-img-wrap { position: relative; max-width: 520px; margin: 28px 0 0; }

/* Phone: stronger dark fade so the title on the photo stays readable */
.hero-img-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 75%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}
@media (min-width: 900px) { .hero-img-wrap::after { display: none; } }

/* Phone: the title sits fully on the photo; the tagline below keeps its position */
.hero-content { position: relative; z-index: 3; }

/* Phone title: beige, full title on the image with comfortable margins */
h1.hero-title.only-mobile {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  margin: 0;
  font-family: 'Krona One', sans-serif;
  text-transform: uppercase;
  font-size: clamp(30px, 8.8vw, 52px);
  line-height: 1.16;
  color: #FDF4E7;
}

.hero-tagline { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.hero-tagline .dash { width: 94px; height: 17px; object-fit: cover; }
.hero-tagline p {
  margin: 0;
  max-width: 400px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink-2);
}

.hero .starburst {
  position: absolute;
  width: 90px;
  height: 90px;
  right: 8px;
  top: 0;
  z-index: 2;
}

@media (min-width: 900px) {
  .hero { padding-top: 80px; padding-bottom: 90px; min-height: 620px; }
  .hero-content { padding-top: 120px; position: relative; z-index: 1; }
  .hero-title { white-space: nowrap; font-size: clamp(44px, 9.8vw, 142px); line-height: 1; letter-spacing: 0.03em; }
  .hero-title-kicker { font-size: clamp(18px, 2.6vw, 34px); margin-bottom: 4px; }
  .hero-tagline p { font-size: 19px; font-weight: 400; line-height: 1.5; }
  .hero-img-wrap {
    position: absolute;
    top: 60px;
    right: 40px;
    width: min(42%, 520px);
    max-width: none;
    margin: 0;
  }
  .hero-img { width: 100%; }
  .hero-tagline { margin-top: clamp(60px, 12vh, 140px); gap: 22px; }
  .hero .starburst { width: 131px; height: 131px; right: 40px; top: 90px; }
}

/* ============ SECTION LAYOUTS ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .two-col { grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.6fr); gap: clamp(40px, 6vw, 110px); }
  .col-head { padding-left: 48px; }
}

.section-dash { display: block; margin-top: 28px; width: 120px; height: auto; }

/* ============ OFFER ============ */
.offer-section { padding: 64px 0; }
@media (min-width: 900px) { .offer-section { padding: 110px 0; } }

.offer-list { display: flex; flex-direction: column; gap: 40px; max-width: 640px; }
@media (min-width: 900px) { .offer-list { gap: 52px; } }

.offer-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
}
.offer-item > img { width: 72px; height: auto; }

@media (min-width: 600px) {
  .offer-item { grid-template-columns: 121px 1fr; gap: 28px; }
  .offer-item > img { width: 121px; height: 119px; margin-top: -10px; }
}

.offer-item h6 {
  margin: 0 0 12px;
  font-family: 'Krona One', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.offer-item p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(253, 244, 231, 0.82);
  font-weight: 300;
}

/* ============ FOUNDATION ============ */
.foundation-section { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 900px) { .foundation-section { padding-top: 110px; padding-bottom: 110px; } }

.foundation-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
.foundation-head .title-row { display: flex; align-items: flex-start; gap: 20px; }
.foundation-head .title-row img { width: 64px; height: auto; margin-top: 4px; }
.foundation-head p { margin: 0; font-size: 16px; line-height: 1.55; color: var(--dark); max-width: 520px; }

@media (min-width: 900px) {
  .foundation-head {
    grid-template-columns: minmax(280px, 1.1fr) minmax(280px, 1fr);
    gap: clamp(40px, 5vw, 90px);
    margin-bottom: 56px;
    align-items: center;
  }
  .foundation-head .title-row { padding-left: 48px; gap: 28px; }
  .foundation-head .title-row img { width: 84px; margin-top: 8px; }
}

.foundation-photo { width: 100%; height: 260px; object-fit: cover; display: block; margin-bottom: 40px; }
@media (min-width: 900px) { .foundation-photo { height: 523px; margin-bottom: 56px; } }

.foundation-bottom { display: grid; grid-template-columns: 1fr; gap: 24px; }
.foundation-bottom h5 {
  margin: 0;
  font-family: 'Krona One', sans-serif;
  font-weight: 400;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.3;
}
.foundation-bottom p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--muted); }

@media (min-width: 900px) {
  .foundation-bottom { grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.6fr); gap: clamp(32px, 5vw, 90px); }
}

/* ============ INSIGHTS ============ */
.insights-section { padding-bottom: 64px; }
@media (min-width: 900px) { .insights-section { padding-bottom: 110px; } }

.insights-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.insights-head h3 { max-width: 640px; font-size: clamp(24px, 3.2vw, 42px); line-height: 1.3; }
.insights-head img { width: 64px; height: auto; }
@media (min-width: 900px) {
  .insights-head { margin-bottom: 44px; }
  .insights-head img { width: 84px; }
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 700px) {
  .insights-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-bottom: 48px; }
}

.insight-card { display: flex; flex-direction: column; gap: 16px; }
.insight-card img { width: 100%; display: block; }
.insight-card h6 { margin: 0; font-family: 'Krona One', sans-serif; font-weight: 400; font-size: 16px; }
.insight-card p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--muted); }

.insights-cta { display: flex; justify-content: flex-end; }

.btn-dark {
  display: inline-block;
  background: var(--ink);
  color: var(--cream-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  font-family: 'Jost', Helvetica, sans-serif;
}
.btn-dark:hover { background: #3f3a49; }

/* ============ LAUNCH ============ */
.launch-section { padding: 64px 0; }
@media (min-width: 900px) { .launch-section { padding: 110px 0 90px; } }

.launch-steps { display: flex; flex-direction: column; gap: 44px; max-width: 560px; }
@media (min-width: 900px) { .launch-steps { gap: 64px; } }

.launch-step { display: flex; gap: 18px; align-items: flex-start; }
@media (min-width: 600px) { .launch-step { gap: 28px; } }

.launch-step .num {
  font-family: 'Krona One', sans-serif;
  font-size: 56px;
  line-height: 0.9;
  color: var(--cream);
  flex-shrink: 0;
}
@media (min-width: 600px) { .launch-step .num { font-size: 84px; } }

.launch-step h6 {
  margin: 0;
  font-family: 'Krona One', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.launch-step .date {
  margin: 2px 0 0;
  font-family: 'Krona One', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: var(--cream);
}
.launch-step .body {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--cream);
  font-weight: 300;
}

.launch-dash { width: 120px; height: auto; margin: 48px 0 0; display: block; }
@media (min-width: 900px) { .launch-dash { margin: 64px 0 0 48px; } }

/* ============ TEAM ============ */
.team-section { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 900px) { .team-section { padding-top: 110px; padding-bottom: 110px; } }

.team-section h3 { text-align: center; margin: 0 0 20px; font-size: clamp(24px, 3.2vw, 42px); }
.team-intro {
  margin: 0 auto 44px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  color: var(--muted);
  font-weight: 300;
}
@media (min-width: 900px) { .team-intro { margin-bottom: 56px; } }

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 600px) { .team-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); } }

.team-grid figure { margin: 0; }
.team-photo { overflow: hidden; height: 360px; border-radius: 18px; }
@media (min-width: 900px) { .team-photo { height: 435px; } }
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  filter: grayscale(1);
}
.team-grid figcaption { padding-top: 16px; }
.team-grid figcaption h6 { margin: 0 0 4px; font-family: 'Krona One', sans-serif; font-weight: 400; font-size: 17px; }
.team-grid figcaption p { margin: 0; font-size: 13.5px; letter-spacing: 0.08em; color: #6d675e; }

/* ============ PARTNERS ============ */
.partners-section { padding: 64px 0; }
@media (min-width: 900px) { .partners-section { padding: 100px 0 80px; } }

.partners-section .lead {
  margin: 0;
  max-width: 380px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 300;
}
.partners-section h3 { margin: 0 0 24px; color: var(--ink); }

/* Carousel marquee des partenaires — ajoutez un <img> au groupe pour un nouveau logo */
.partners-carousel {
  align-self: center;
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.partners-track {
  display: flex;
  width: max-content;
  animation: partners-scroll 32s linear infinite;
}
.partners-carousel:hover .partners-track,
.partners-carousel:focus-within .partners-track { animation-play-state: paused; }
.partners-group {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
  padding-right: clamp(28px, 5vw, 60px);
}
.partners-group img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
@media (min-width: 600px) { .partners-group img { height: 52px; max-width: 220px; } }
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; width: auto; flex-wrap: wrap; }
  .partners-group { flex-wrap: wrap; }
  .partners-group + .partners-group { display: none; }
}

/* ============ CONTACT ============ */
.contact-section { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 900px) { .contact-section { padding-top: 110px; padding-bottom: 110px; } }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.1fr); gap: clamp(40px, 6vw, 110px); align-items: start; }
}

.contact-grid .intro h3 { margin: 0 0 24px; }
.contact-grid .intro p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--muted); max-width: 440px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form .field { display: flex; flex-direction: column; gap: 6px; }
.contact-form label { font-size: 14px; font-weight: 500; }

.contact-form input,
.contact-form textarea {
  font-family: 'Jost', Helvetica, sans-serif;
  font-size: 16px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(38, 35, 43, 0.18);
  border-radius: 4px;
  color: var(--ink);
  outline: none;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--ink); }
.contact-form ::placeholder { color: #a89f92; }
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form button[type="submit"] {
  align-self: flex-end;
  min-width: 160px;
}
.contact-form button[disabled] { opacity: 0.6; cursor: default; }

.form-status { margin: 0; font-size: 15px; display: none; }
.form-status.success { display: block; color: #2e6b3f; }
.form-status.error { display: block; color: #a83232; }

/* ============ FOOTER ============ */
.site-footer { padding: 56px 0 40px; }
@media (min-width: 900px) { .site-footer { padding: 72px 0 48px; } }

/* Phone: everything centered */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 10px 0 30px;
  justify-items: center;
  text-align: center;
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(240px, 1.2fr) 1fr 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    padding: 30px 0 60px;
    justify-items: stretch;
    text-align: left;
  }
  .footer-logo { margin-left: 48px; }
}

.footer-logo { width: 200px; justify-self: center; }
@media (min-width: 900px) { .footer-logo { width: 230px; justify-self: start; } }

.footer-col { display: flex; flex-direction: column; gap: 8px; align-self: start; align-items: center; }
@media (min-width: 900px) { .footer-col { align-items: flex-start; } }
.footer-col h6 {
  margin: 0 0 12px;
  font-family: 'Krona One', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.footer-col a, .footer-col p {
  color: var(--cream);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  margin: 0;
}
.footer-col a:hover { opacity: 0.7; }
.footer-col a.underline { text-decoration: underline; }
.footer-col .italic { font-style: italic; }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
  max-width: 380px;
  background: var(--dark);
  color: var(--cream);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  display: none;
}
.cookie-banner.visible { display: block; }
@media (min-width: 600px) { .cookie-banner { bottom: 24px; left: 24px; right: auto; } }

.cookie-banner h6 {
  margin: 0 0 10px;
  font-family: 'Krona One', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.cookie-banner p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
  color: rgba(253, 244, 231, 0.9);
}
.cookie-banner p a { color: var(--cream); }
.cookie-actions { display: flex; gap: 12px; }
.cookie-actions button {
  flex: 1;
  font-family: 'Jost', Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 11px 0;
  cursor: pointer;
  border-radius: 6px;
}
.cookie-accept { background: var(--cream); color: var(--dark); border: none; }
.cookie-accept:hover { opacity: 0.85; }
.cookie-refuse { background: transparent; color: var(--cream); border: 1px solid rgba(253, 244, 231, 0.5); }
.cookie-refuse:hover { border-color: var(--cream); }

/* ============ REVEAL ANIMATION ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].revealed, .no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.spin { animation: spin-slow 14s linear infinite; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .spin { animation: none; }
}

/* ============ PRIVACY PAGE ============ */
.legal-main { max-width: 880px; margin: 0 auto; padding: 40px 20px 80px; }
@media (min-width: 900px) { .legal-main { padding: 60px 40px 110px; } }

.legal-main h1 {
  margin: 0 0 32px;
  font-family: 'Krona One', sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.25;
}
.legal-main h2 {
  margin: 44px 0 18px;
  font-family: 'Krona One', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.legal-main p { margin: 0 0 18px; font-size: 16px; line-height: 1.65; font-weight: 300; }
.legal-main ul { margin: 0 0 18px; padding-left: 24px; font-size: 16px; line-height: 1.9; font-weight: 300; }
.legal-main a { color: var(--ink); }

.legal-footer { padding: 40px 0; }
.legal-footer .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.legal-footer img { width: 160px; display: block; }
.legal-footer a { color: var(--cream); text-decoration: none; font-size: 15px; font-weight: 300; }
.legal-footer a:hover { opacity: 0.7; }
