/* DESIGNOSS — The Art of Being Seen
   Variant B: Dark luxe + Bodoni Moda
   Inspiration: Margiela print, Yohji catalogue, Vogue cover
   ----------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  /* Light scheme — default, used by body and most sections */
  --paper: #F2EDDF;        /* warm cream paper */
  --paper-deep: #E9E1CC;
  --ink: #1A1815;          /* warm soft-black on cream */
  --ink-soft: #3D3833;
  --ink-muted: #7A6F5E;
  --hairline: #C5B89E;
  --hairline-soft: #D9CFB6;
  --accent: #B89752;       /* antique gold — unified across light + dark */

  /* Fonts */
  --display: 'DM Serif Display', 'Times New Roman', serif;
  --statement: 'Fraunces', 'Georgia', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --stencil: 'Big Shoulders Stencil Display', 'Inter', sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ============= TOP NAV ============= */
.top-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 56px;
  z-index: 50;
  pointer-events: none;
  transition: background-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

/* Frosted background on light sections so nav doesn't overlap with content text */
.top-nav.is-light {
  background-color: rgba(242, 237, 223, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
}

.top-nav .nav-cta { pointer-events: auto; }
.top-nav.is-light .logo-mini { pointer-events: auto; }

.logo-mini {
  display: inline-block;
  transition: opacity 0.4s var(--ease);
  line-height: 0;
  opacity: 0;
  pointer-events: none;
}

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

.logo-mini .logo-dark { display: none; }

.top-nav.is-light .logo-mini {
  opacity: 1;
  pointer-events: auto;
}

.top-nav.is-light .logo-mini .logo-light { display: none; }
.top-nav.is-light .logo-mini .logo-dark { display: block; }

.top-nav.is-light .logo-mini:hover { opacity: 0.65; }

.nav-cta {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), opacity 0.4s var(--ease), color 0.4s var(--ease);
  color: #D5D2C8;
}

.top-nav.is-light .nav-cta {
  color: #1A1815;
}

.nav-cta:hover {
  opacity: 0.65;
  border-bottom-color: currentColor;
}

/* ============= HERO ============= */
.hero {
  /* Dark scheme override — only inside hero, deepened for premium */
  --paper: #0D0B09;
  --ink: #D8D4C8;
  --ink-soft: #9E988C;
  --ink-muted: #6E685C;
  --hairline: #2A2520;
  --hairline-soft: #1C1814;
  --accent: #B89752;

  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 6vw 100px;
  position: relative;
  overflow: hidden;
}


.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  display: block;
  width: clamp(160px, 18vw, 260px);
  height: auto;
  margin-bottom: 56px;
  opacity: 0.7;
}

.tagline {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(28px, 5.5vw, 68px);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 44px;
  color: var(--ink);
  font-variation-settings: 'opsz' 72;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .tagline { white-space: normal; line-height: 1.05; }
}

.hero-divider {
  width: 56px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 52px;
  opacity: 0.7;
}

.services {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 72px;
  font-weight: 500;
}

.hero-sub {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 72px;
  line-height: 1.45;
  font-variation-settings: 'opsz' 36;
}

.hero-cta {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--ink);
  font-weight: 500;
  color: var(--ink);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

.hero-cta:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ============= SECTIONS ============= */
section {
  padding: 160px 6vw;
  opacity: 0;
  transition: opacity 1s var(--ease);
  max-width: 1480px;
  margin: 0 auto;
}

section.visible { opacity: 1; }
.hero { opacity: 1; max-width: none; }

/* ============= THESIS LINE (between hero and packages) ============= */
.thesis {
  text-align: center;
  padding: 180px 8vw;
  max-width: 1200px;
}

.thesis-line {
  font-family: var(--statement);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3.4vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 880px;
  margin: 0 auto;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

/* ============= PACKAGE SECTIONS ============= */
.package {
  border-top: 1px solid var(--hairline);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.package h2 {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 64px;
  color: var(--ink);
}

.pull-quote {
  font-family: var(--statement);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 64px;
  max-width: 900px;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

.package-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 140px;
  align-items: start;
}

.package-content p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 580px;
  font-weight: 300;
}

.package-content ul {
  list-style: none;
  margin-top: 48px;
  max-width: 580px;
}

.package-content li {
  padding: 20px 0 20px 0;
  border-bottom: 1px solid var(--hairline-soft);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.55;
  position: relative;
  padding-left: 40px;
}

.package-content li:first-child {
  border-top: 1px solid var(--hairline-soft);
}

.package-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 30px;
  width: 22px;
  height: 1px;
  background: var(--ink);
}

.package-aside {
  border-left: 1px solid var(--hairline);
  padding-left: 52px;
  position: sticky;
  top: 80px;
  align-self: start;
}

.package-aside .price {
  font-family: var(--statement);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(24px, 2vw, 32px);
  letter-spacing: -0.005em;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--ink);
}

.package-aside .price .vat {
  font-size: 0.28em;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-left: 10px;
  vertical-align: middle;
  font-family: var(--sans);
  font-weight: 500;
}

.package-aside .note {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 60px;
  font-weight: 500;
}

.package-aside .continuation {
  font-family: var(--statement);
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 60px;
  font-weight: 300;
  font-variation-settings: 'opsz' 36;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px 36px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.cta:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.cta .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}

.cta:hover .arrow { transform: translateX(4px); }

/* ============= ABOUT ============= */
.about {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}

.about-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 64px;
  font-weight: 500;
}

.about-main {
  font-family: var(--statement);
  font-style: italic;
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 64px;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

.about-body {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 80px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-signature {
  font-family: var(--statement);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-muted);
  font-weight: 300;
  font-variation-settings: 'opsz' 36;
}

/* ============= CONTACT ============= */
.contact {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}

.contact-heading {
  font-family: var(--statement);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4.2vw, 56px);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 36px;
  text-align: center;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

.contact-sub {
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: 88px;
  font-size: 17px;
  font-family: var(--sans);
  font-weight: 300;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

#contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 56px;
}

#contact-form .form-row.full-row,
#contact-form fieldset {
  grid-column: 1 / -1;
}

#contact-form .send-btn {
  grid-column: 1 / -1;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row label,
.form-row legend {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

.form-row input,
.form-row textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  resize: none;
  outline: none;
  transition: border-color 0.4s var(--ease);
}

.form-row textarea {
  padding-top: 14px;
  line-height: 1.65;
}

.form-row input:focus,
.form-row textarea:focus {
  border-bottom-color: var(--accent);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--ink-muted);
  font-weight: 300;
  font-style: italic;
  font-family: var(--statement);
  font-size: 16px;
  font-variation-settings: 'opsz' 36;
}

fieldset {
  border: none;
  padding: 0;
}

fieldset legend { margin-bottom: 24px; }

.radio {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-soft);
  padding: 12px 0;
  text-transform: none;
  letter-spacing: 0;
  transition: color 0.3s var(--ease);
}

.radio:hover { color: var(--ink); }

.radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  border: 1px solid var(--ink-muted);
  border-radius: 50%;
  margin: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
  flex: 0 0 16px;
  transition: border-color 0.3s var(--ease);
  background: transparent;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  aspect-ratio: 1 / 1;
}

.radio input[type="radio"]:checked { border-color: var(--ink); }

.radio input[type="radio"]:checked + span { color: var(--ink); }

.radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1 / 1;
}

.send-btn {
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 40px;
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
  margin-top: 32px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.send-btn:hover {
  background: var(--ink);
  color: var(--paper);
}

.send-btn .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}

.send-btn:hover .arrow { transform: translateX(4px); }

.thank-you {
  text-align: center;
  padding: 100px 0;
}

.thank-you p {
  font-family: var(--statement);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.4;
  font-variation-settings: 'opsz' 72;
}

.thank-signature {
  font-family: var(--statement) !important;
  font-style: italic !important;
  font-size: 18px !important;
  color: var(--ink-muted) !important;
  margin-top: 40px;
  font-weight: 300;
}

.hidden { display: none !important; }

/* ============= FOOTER ============= */
footer {
  text-align: center;
  padding: 120px 40px 80px;
  margin-top: 60px;
  border-top: 1px solid var(--hairline);
}

.footer-tagline {
  font-family: var(--statement);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 56px;
  font-weight: 300;
  font-variation-settings: 'opsz' 36;
}

.footer-logo-wrap {
  display: block;
  margin: 0 auto 48px;
  text-align: center;
}

.footer-logo-img {
  display: inline-block;
  height: clamp(64px, 8vw, 110px);
  width: auto;
  max-width: 90%;
}

.footer-contact {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.footer-contact a {
  transition: color 0.3s var(--ease);
}

.footer-contact a:hover { color: var(--accent); }

.footer-contact .sep {
  margin: 0 14px;
  color: var(--hairline);
}

.footer-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--hairline);
  margin-top: 32px;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-meta .sep {
  margin: 0 10px;
  color: var(--hairline-soft);
}

/* Stack footer contact lines on mobile — no hanging separators */
@media (max-width: 640px) {
  .footer-contact {
    line-height: 2.2;
  }
  .footer-contact .sep {
    display: none;
  }
  .footer-contact a,
  .footer-contact > span {
    display: block;
  }
  .footer-meta {
    font-size: 10px;
    letter-spacing: 2px;
    margin-top: 24px;
  }
}

/* ============= RESPONSIVE ============= */
@media (max-width: 960px) {
  .top-nav { padding: 20px 28px; }

  section { padding: 120px 6vw; }

  .package-body {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .package-aside {
    border: none;
    padding: 56px 0 0 0;
    border-top: 1px solid var(--hairline-soft);
    position: static;
  }

  #contact-form {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero { padding: 120px 28px 80px; }

  .tagline { letter-spacing: 0.02em; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }

  .top-nav { padding: 18px 20px; }

  .logo-mini { font-size: 13px; letter-spacing: 4px; }

  .nav-cta { font-size: 9px; }

  section { padding: 90px 22px; }

  .tagline {
    letter-spacing: 0.01em;
    line-height: 1;
  }

  .services { font-size: 9px; letter-spacing: 5px; margin-bottom: 72px; }

  .hero-sub { margin-bottom: 56px; font-size: 17px; }

  .package h2 { letter-spacing: 4px; }

  .pull-quote {
    font-size: 30px;
    margin-bottom: 56px;
  }

  .pull-quote::before { margin-left: 0; }

  .footer-design { letter-spacing: 4px; }
}

/* ============= LEGAL PAGE (privacy.html) ============= */

body.legal-page {
  background: var(--paper);
  color: var(--ink);
}

/* Legal sections are always visible — bypass the fade-in observer rules */
body.legal-page section,
.legal-section {
  opacity: 1 !important;
  padding: 0;
  max-width: none;
}

.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 160px 32px 80px;
  font-family: var(--sans);
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 15.5px;
  font-weight: 400;
}

.legal-header {
  text-align: center;
  margin-bottom: 96px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hairline);
}

.legal-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.legal-title {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
  font-weight: 400;
}

.legal-updated {
  font-style: italic;
  font-family: var(--statement);
  color: var(--ink-muted);
  font-size: 14px;
  font-variation-settings: 'opsz' 24;
}

.legal-lead {
  font-family: var(--statement);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.55;
  font-variation-settings: 'opsz' 36;
  font-weight: 300;
}

.legal-section {
  margin-bottom: 64px;
}

.legal-section h2 {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.legal-section h3 {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 500;
}

.legal-section p {
  margin-bottom: 16px;
}

.legal-section ul {
  margin: 16px 0 16px 0;
  padding-left: 20px;
}

.legal-section li {
  margin-bottom: 10px;
  list-style-type: '— ';
  padding-left: 8px;
}

.legal-section strong {
  color: var(--ink);
  font-weight: 500;
}

.legal-section a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease);
}

.legal-section a:hover {
  color: var(--accent);
}

.legal-block {
  background: var(--paper-deep);
  padding: 24px 28px;
  border-left: 2px solid var(--accent);
  margin: 16px 0;
}

.legal-close {
  margin-top: 96px;
  padding-top: 56px;
  border-top: 1px solid var(--hairline);
  text-align: center;
}

.legal-signature {
  font-family: var(--statement);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-top: 8px;
  font-variation-settings: 'opsz' 36;
  font-weight: 300;
}

.legal-back {
  margin-top: 80px;
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 1px;
}

.legal-back a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.legal-back a:hover {
  color: var(--ink);
}

@media (max-width: 640px) {
  .legal-wrap {
    padding: 120px 20px 60px;
    font-size: 14.5px;
  }
  .legal-header { margin-bottom: 64px; padding-bottom: 40px; }
  .legal-section { margin-bottom: 48px; }
  .legal-section h2 { font-size: 22px; }
  .legal-lead { font-size: 17px; }
}

/* ============= COOKIE BANNER ============= */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 100;
  max-width: 520px;
  margin-left: auto;
  background: #1A1815;
  color: #D8D4C8;
  padding: 28px 32px 24px;
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.55;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(184, 151, 82, 0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-title {
  font-family: var(--display);
  font-size: 18px;
  color: #EFEBE0;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.cookie-banner-text {
  margin-bottom: 20px;
  color: rgba(216, 212, 200, 0.85);
}

.cookie-banner-text a {
  color: #EFEBE0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 22px;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
  color: #D8D4C8;
}

.cookie-btn-accept {
  background: #B89752;
  color: #1A1815;
  border-color: #B89752;
}

.cookie-btn-accept:hover {
  background: #C9A560;
  border-color: #C9A560;
}

.cookie-btn-decline:hover {
  color: #EFEBE0;
  background: rgba(239, 235, 224, 0.06);
}

.cookie-btn-customize {
  background: transparent;
  border: none;
  color: rgba(216, 212, 200, 0.6);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 12px 4px;
  margin-left: auto;
}

.cookie-btn-customize:hover {
  color: #EFEBE0;
}

/* Customize modal panel (extension of banner) */

.cookie-options {
  display: none;
  margin: 20px 0 16px;
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(184, 151, 82, 0.15);
}

.cookie-banner.is-open .cookie-options {
  display: block;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.cookie-option:last-child { margin-bottom: 0; }

.cookie-option label {
  font-size: 12.5px;
  color: rgba(216, 212, 200, 0.85);
  cursor: pointer;
  flex: 1;
  line-height: 1.5;
}

.cookie-option label strong {
  display: block;
  color: #EFEBE0;
  font-weight: 500;
  margin-bottom: 3px;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.cookie-option input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #B89752;
  cursor: pointer;
}

.cookie-option input[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 22px 22px 18px;
    font-size: 13px;
  }
  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-btn { width: 100%; padding: 14px 16px; }
  .cookie-btn-customize {
    margin-left: 0;
    border: none;
    padding: 6px 0;
  }
}
