/* ==========================================================================
   Sadaju Hayowi — Luminous Surfaces
   ========================================================================== */

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

:root {
  --bg: #faf7f2;
  --bg-alt: #f1ece1;
  --bg-dark: #10141b;
  --bg-dark-alt: #181f29;
  --text: #201d18;
  --text-soft: #5b564c;
  --text-light: #f5f0e6;
  --text-light-soft: #c3bcad;
  --accent: #d7a55c;
  --accent-light: #f0cd94;
  --accent-dark: #a97a34;
  --border-light: rgba(32,29,24,0.09);
  --border-dark: rgba(245,240,230,0.1);
  --glow: rgba(215,165,92,0.35);
  --glow-strong: rgba(215,165,92,0.55);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-sm: 0 2px 8px rgba(20,18,14,.06);
  --shadow-md: 0 10px 30px rgba(20,18,14,.08), 0 2px 8px rgba(20,18,14,.05);
  --shadow-glow: 0 0 0 1px var(--border-light), 0 16px 40px -14px var(--glow);
  --shadow-glow-dark: 0 0 0 1px var(--border-dark), 0 20px 50px -16px var(--glow);
  --ease: cubic-bezier(.4,0,.2,1);
  --sp-xs: clamp(.5rem, .4rem + .5vw, .75rem);
  --sp-sm: clamp(1rem, .8rem + 1vw, 1.5rem);
  --sp-md: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  --sp-lg: clamp(2.5rem, 2rem + 2.5vw, 4.5rem);
  --sp-xl: clamp(4rem, 3rem + 5vw, 7rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }


.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 1.8rem;
  border-radius: 999px;
  font-weight: 500; font-size: .95rem;
  transition: all .35s var(--ease);
  min-height: 48px;
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #241a0a;
  box-shadow: 0 4px 16px -4px var(--glow), 0 1px 0 rgba(255,255,255,.4) inset;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -6px var(--glow-strong), 0 1px 0 rgba(255,255,255,.5) inset;
}
.btn-ghost {
  border: 1px solid var(--border-light);
  color: var(--text);
  background: rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 26px -10px var(--glow);
  transform: translateY(-2px);
}
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,.7);
  color: #fff;
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.3);
}


.hdr {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 500;
  padding: 1.6rem clamp(1.2rem, 4vw, 3rem);
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
  background: rgba(250,247,242,0.5);
  backdrop-filter: blur(10px);
}
.hdr.hdr--scrolled {
  padding: .8rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(250,247,242,0.88);
  box-shadow: 0 4px 24px rgba(20,18,14,.06);
}
.hdr-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.hdr-logo { display: flex; align-items: center; gap: .6rem; }
.hdr-logo-img { width: 40px; height: 40px; transition: width .4s var(--ease), height .4s var(--ease); }
.hdr.hdr--scrolled .hdr-logo-img { width: 30px; height: 30px; }
.hdr-logo span { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.15rem; }
.hdr-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.2rem); }
.hdr-nav a { font-size: .93rem; font-weight: 500; color: var(--text-soft); transition: color .3s var(--ease); position: relative; }
.hdr-nav a:hover, .hdr-nav a.is-active { color: var(--text); }
.hdr-nav a:not(.hdr-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--accent); transition: width .3s var(--ease);
}
.hdr-nav a:not(.hdr-cta):hover::after, .hdr-nav a.is-active:not(.hdr-cta)::after { width: 100%; }
.hdr-cta {
  padding: .6rem 1.3rem; border-radius: 999px;
  background: var(--text); color: var(--bg) !important;
  transition: all .3s var(--ease);
}
.hdr-cta:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 22px -8px var(--glow); }
.hdr-burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.hdr-burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s var(--ease); }


.hdr-mobile {
  position: fixed; inset: 0; z-index: 900;
  visibility: hidden; pointer-events: none;
}
.hdr-mobile.is-open { visibility: visible; pointer-events: auto; }
.hdr-mobile-overlay {
  position: absolute; inset: 0; left: 80%;
  background: rgba(16,20,27,.4);
  opacity: 0; transition: opacity .4s var(--ease);
}
.hdr-mobile.is-open .hdr-mobile-overlay { opacity: 1; }
.hdr-mobile-panel {
  position: absolute; top: 0; left: 0; bottom: 0; width: 80%; max-width: 340px;
  background: var(--bg-dark);
  padding: clamp(5rem,15vw,6rem) 2rem 2rem;
  transform: translateX(-100%);
  transition: transform .45s var(--ease);
  display: flex; flex-direction: column; gap: .5rem;
  box-shadow: 20px 0 60px rgba(0,0,0,.3);
}
.hdr-mobile.is-open .hdr-mobile-panel { transform: translateX(0); }
.hdr-mobile-link {
  color: var(--text-light); font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600;
  padding: .9rem 0; border-bottom: 1px solid var(--border-dark);
  opacity: 0; transform: translateX(-16px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), color .3s var(--ease);
}
.hdr-mobile.is-open .hdr-mobile-link { opacity: 1; transform: translateX(0); }
.hdr-mobile.is-open .hdr-mobile-link:nth-child(1) { transition-delay: .08s; }
.hdr-mobile.is-open .hdr-mobile-link:nth-child(2) { transition-delay: .14s; }
.hdr-mobile.is-open .hdr-mobile-link:nth-child(3) { transition-delay: .2s; }
.hdr-mobile.is-open .hdr-mobile-link:nth-child(4) { transition-delay: .26s; }
.hdr-mobile.is-open .hdr-mobile-link:nth-child(5) { transition-delay: .32s; }
.hdr-mobile-link:hover { color: var(--accent-light); }


.brc {
  margin-top: 84px;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
}
.brc-inner { max-width: 1320px; margin: 0 auto; display: flex; gap: .6rem; align-items: center; font-size: .85rem; color: var(--text-soft); }
.brc-inner a { color: var(--text-soft); transition: color .3s var(--ease); }
.brc-inner a:hover { color: var(--accent-dark); }
.brc-inner span:last-child { color: var(--text); font-weight: 500; }


.hero {
  min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 1.5rem 4rem;
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero-glow {
  position: absolute; width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  top: 10%; left: 50%; transform: translateX(-50%);
  filter: blur(60px); opacity: .55; pointer-events: none;
}
.hero-eyebrow { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-dark); font-weight: 500; margin-bottom: 1.2rem; position: relative; }
.hero-title {
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 700;
  line-height: .95;
  margin-bottom: 1.6rem;
  position: relative;
  background: linear-gradient(180deg, var(--text) 30%, var(--text-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  max-width: 480px; color: var(--text-soft); font-size: 1.05rem;
  margin-bottom: 2.2rem; position: relative;
}
.hero .btn { position: relative; }


.sec { padding: var(--sp-xl) clamp(1.2rem, 5vw, 4rem); position: relative; }
.sec-light { background: var(--bg); }
.sec-dark { background: var(--bg-dark); color: var(--text-light); }
.sec-eyebrow { text-align: center; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark); font-weight: 500; margin-bottom: .8rem; }
.sec-eyebrow--light { color: var(--accent-light); }
.sec-title { text-align: center; font-size: clamp(1.8rem, 3.2vw, 2.7rem); max-width: 780px; margin: 0 auto var(--sp-lg); }
.sec-title--light { color: var(--text-light); }
.sec-desc { text-align: center; color: var(--text-soft); font-size: 1.05rem; }

.notice-band {
  max-width: 820px; margin: var(--sp-md) auto 0;
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.4rem 1.6rem; border-radius: var(--radius-md);
  background: rgba(215,165,92,0.08);
  border: 1px solid var(--border-light);
}
.notice-band i { color: var(--accent-dark); font-size: 1.2rem; margin-top: .1rem; }
.notice-band p { font-size: .92rem; color: var(--text-soft); }


.page-hero { padding: var(--sp-xl) clamp(1.2rem, 5vw, 4rem) var(--sp-lg); text-align: center; background: var(--bg-alt); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 1rem; }
.page-hero p { color: var(--text-soft); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }


.zig { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-xl); }
.zig-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-lg); align-items: center; }
.zig-row--rev .zig-media { order: 2; }
.zig-row--rev .zig-content { order: 1; }
.zig-media { position: relative; }
.zig-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
  transition: box-shadow .5s var(--ease), transform .5s var(--ease);
}
.sec-dark .zig-img { box-shadow: var(--shadow-glow-dark); }
.zig-media:hover .zig-img { transform: translateY(-6px); box-shadow: 0 0 0 1px var(--border-light), 0 26px 60px -18px var(--glow-strong); }
.zig-num {
  display: inline-block; font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600;
  color: var(--accent); border: 1px solid var(--glow); border-radius: 999px;
  padding: .3rem .9rem; margin-bottom: 1rem;
}
.zig-content h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin-bottom: .9rem; }
.zig-content p { color: var(--text-soft); font-size: 1rem; }
.sec-dark .zig-content p { color: var(--text-light-soft); }


.crd-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--sp-md); }
.crd-grid--3 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.crd {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.crd:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: var(--glow); }
.crd--dark { background: var(--bg-dark-alt); border-color: var(--border-dark); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.crd--dark:hover { box-shadow: var(--shadow-glow-dark); border-color: var(--glow); }
.crd-ico {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #241a0a; font-size: 1.3rem; margin-bottom: 1.2rem;
  box-shadow: 0 6px 16px -6px var(--glow);
}
.crd-title { font-size: 1.15rem; margin-bottom: .6rem; }
.crd--dark .crd-title { color: var(--text-light); }
.crd-txt { color: var(--text-soft); font-size: .93rem; }
.crd--dark .crd-txt { color: var(--text-light-soft); }


.splide { max-width: 1200px; margin: 0 auto; }
.slide-crd { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-glow-dark); position: relative; }
.slide-crd img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.slide-crd p {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.2rem 1.4rem;
  background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
  color: #fff; font-weight: 500;
}
.splide__pagination__page { background: rgba(255,255,255,.3); }
.splide__pagination__page.is-active { background: var(--accent); }
.splide__arrow { background: rgba(255,255,255,.1); backdrop-filter: blur(6px); }
.splide__arrow svg { fill: #fff; }
.splide__arrow:hover { background: var(--accent); }


.blog-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-md); }
.blog-crd { background: #fff; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-light); box-shadow: var(--shadow-md); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.blog-crd:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.blog-crd-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-crd-body { padding: 1.6rem; }
.blog-crd-title { font-size: 1.15rem; margin-bottom: .7rem; }
.blog-crd-excerpt { color: var(--text-soft); font-size: .92rem; margin-bottom: 1.1rem; }
.blog-crd-link { color: var(--accent-dark); font-weight: 500; font-size: .9rem; display: inline-flex; align-items: center; gap: .5rem; transition: gap .3s var(--ease); }
.blog-crd-link:hover { gap: .8rem; }

.modal-overlay {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(16,20,27,.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease);
  padding: 1.5rem;
}
.modal-overlay.is-active { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg); max-width: 620px; width: 100%; max-height: 85vh; overflow-y: auto;
  border-radius: var(--radius-lg); padding: var(--sp-md); position: relative;
  box-shadow: var(--shadow-glow); transform: scale(.94); transition: transform .35s var(--ease);
}
.modal-overlay.is-active .modal { transform: scale(1); }
.modal-close { position: absolute; top: 1.2rem; right: 1.2rem; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; transition: background .3s var(--ease); }
.modal-close:hover { background: var(--accent-light); }
.modal-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 1.4rem; }
.modal h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.modal p { color: var(--text-soft); margin-bottom: 1rem; }


.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md); overflow: hidden;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.sec-light .faq-item { background: #fff; box-shadow: var(--shadow-sm); }
.faq--dark .faq-item { border-color: var(--border-dark); background: var(--bg-dark-alt); }
.faq-item:hover { border-color: var(--glow); }
.faq-question {
  width: 100%; text-align: left; padding: 1.3rem 1.6rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1rem; color: inherit;
}
.faq-question i { color: var(--accent); transition: transform .35s var(--ease); flex-shrink: 0; }
.faq-item.is-open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-answer p { padding: 0 1.6rem 1.4rem; color: var(--text-soft); font-size: .95rem; }
.faq--dark .faq-answer p { color: var(--text-light-soft); }


.contact-sec { }
.contact-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--sp-lg); align-items: start; }
.contact-form-wrap h2 { font-size: 1.6rem; margin-bottom: 1.4rem; }
.frm { display: flex; flex-direction: column; gap: 1.2rem; }
.frm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.frm-group { display: flex; flex-direction: column; gap: .5rem; }
.frm-label { font-size: .85rem; font-weight: 500; color: var(--text-soft); }
.frm-input {
  padding: .85rem 1.1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border-light); background: #fff;
  font-family: inherit; font-size: .95rem; color: var(--text);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  min-height: 48px;
}
.frm-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(215,165,92,0.15); }
.frm-textarea { min-height: 130px; resize: vertical; }
.frm-checkbox { display: flex; align-items: flex-start; gap: .7rem; font-size: .88rem; color: var(--text-soft); }
.frm-checkbox input { margin-top: .2rem; width: 18px; height: 18px; accent-color: var(--accent); }
.frm-checkbox a { color: var(--accent-dark); text-decoration: underline; }
.frm-submit { align-self: flex-start; }
.frm-note { color: #b3492f; font-size: .85rem; }

.contact-info-wrap { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info-crd { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-sm); }
.contact-info-crd h3 { font-size: 1rem; display: flex; align-items: center; gap: .6rem; margin-bottom: .4rem; }
.contact-info-crd h3 i { color: var(--accent-dark); }
.contact-info-crd p { color: var(--text-soft); font-size: .95rem; }
.contact-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }


.thanks-hero {
  min-height: calc(100vh - 84px);
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 1.5rem;
}
.thanks-icon { font-size: 3.5rem; margin-bottom: 1.4rem; opacity: .95; }
.thanks-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 1.2rem; }
.thanks-hero p { max-width: 520px; margin-bottom: 2rem; font-size: 1.05rem; opacity: .95; }


.legal-wrap { max-width: 1280px; margin: 0 auto; padding: var(--sp-lg) clamp(1.2rem, 4vw, 3rem) var(--sp-xl); display: grid; grid-template-columns: 260px 1fr; gap: var(--sp-lg); align-items: start; }
.legal-wrap--single { grid-template-columns: 1fr; max-width: 860px; }
.legal-nav { position: sticky; top: 110px; background: var(--bg-alt); border-radius: var(--radius-md); padding: 1.6rem; border: 1px solid var(--border-light); }
.legal-nav-updated { font-size: .82rem; color: var(--text-soft); margin-bottom: 1rem; }
.legal-nav nav { display: flex; flex-direction: column; gap: .1rem; }
.legal-nav a { font-size: .88rem; padding: .55rem .4rem; color: var(--text-soft); border-radius: var(--radius-sm); transition: all .3s var(--ease); }
.legal-nav a:hover { color: var(--text); background: rgba(215,165,92,0.1); }
.legal-content h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 1.6rem; }
.legal-content h2 { font-size: 1.25rem; margin: 2.2rem 0 .9rem; }
.legal-content p { color: var(--text-soft); margin-bottom: .9rem; font-size: .98rem; }
.cookie-block { padding: 1.6rem 0; border-bottom: 1px solid var(--border-light); }
.cookie-block:last-child { border-bottom: none; }
.cookie-block h2 { margin-top: 0; }


.ftr { background: var(--bg-dark); color: var(--text-light); }
.ftr-cta { text-align: center; padding: var(--sp-xl) 1.5rem var(--sp-lg); max-width: 760px; margin: 0 auto; }
.ftr-cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--text-light); margin-bottom: 1.1rem; }
.ftr-cta p { color: var(--text-light-soft); margin-bottom: 2rem; }
.ftr-main { border-top: 1px solid var(--border-dark); padding: var(--sp-lg) clamp(1.2rem, 5vw, 4rem) var(--sp-md); }
.ftr-cols { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--sp-md); padding-bottom: var(--sp-md); }
.ftr-col h3 { font-size: 1rem; color: var(--text-light); margin-bottom: 1rem; }
.ftr-col p { color: var(--text-light-soft); font-size: .9rem; margin-bottom: .6rem; }
.ftr-col a { display: block; color: var(--text-light-soft); font-size: .9rem; margin-bottom: .7rem; transition: color .3s var(--ease); }
.ftr-col a:hover { color: var(--accent-light); }
.ftr-recent { max-width: 1280px; margin: 0 auto; padding: 1.2rem 0; border-top: 1px solid var(--border-dark); }
.ftr-recent h3 { font-size: .85rem; color: var(--text-light-soft); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem; font-family: 'Inter', sans-serif; font-weight: 500; }
.ftr-recent-list { display: flex; flex-wrap: wrap; gap: .8rem; }
.ftr-recent-list a { font-size: .85rem; padding: .5rem 1rem; border-radius: 999px; border: 1px solid var(--border-dark); color: var(--text-light-soft); transition: all .3s var(--ease); }
.ftr-recent-list a:hover { border-color: var(--accent); color: var(--accent-light); }
.ftr-bottom { max-width: 1280px; margin: 0 auto; border-top: 1px solid var(--border-dark); padding-top: 1.4rem; }
.ftr-bottom p { font-size: .82rem; color: var(--text-light-soft); }


.cookie-card {
  position: fixed; top: 24px; left: -400px; z-index: 1000;
  width: min(330px, 88vw);
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-glow-dark);
  border: 1px solid var(--border-dark);
  transition: left .55s var(--ease);
}
.cookie-card.is-visible { left: 24px; }
.cookie-card-icon { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-light), var(--accent)); display: flex; align-items: center; justify-content: center; color: #241a0a; margin-bottom: .9rem; }
.cookie-card-text { font-size: .88rem; color: var(--text-light-soft); margin-bottom: .5rem; }
.cookie-card-link { font-size: .8rem; margin-bottom: 1rem; }
.cookie-card-link a { color: var(--accent-light); text-decoration: underline; }
.cookie-card-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-btn { padding: .6rem 1.1rem; border-radius: 999px; font-size: .82rem; font-weight: 500; transition: all .3s var(--ease); min-height: 40px; }
.cookie-btn-accent { background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #241a0a; }
.cookie-btn-accent:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -6px var(--glow-strong); }
.cookie-btn-ghost { border: 1px solid var(--border-dark); color: var(--text-light-soft); }
.cookie-btn-ghost:hover { border-color: var(--accent); color: var(--accent-light); }

.cookie-modal-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(16,20,27,.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease);
  padding: 1.5rem;
}
.cookie-modal-overlay.is-active { opacity: 1; visibility: visible; }
.cookie-modal {
  background: var(--bg); max-width: 480px; width: 100%; max-height: 85vh; overflow-y: auto;
  border-radius: var(--radius-lg); padding: var(--sp-md);
  box-shadow: var(--shadow-glow); transform: scale(.94); transition: transform .35s var(--ease);
}
.cookie-modal-overlay.is-active .cookie-modal { transform: scale(1); }
.cookie-modal h3 { font-size: 1.3rem; margin-bottom: .8rem; }
.cookie-modal > p { color: var(--text-soft); font-size: .88rem; margin-bottom: 1.2rem; }
.cookie-cat { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: .9rem 0; border-top: 1px solid var(--border-light); }
.cookie-cat strong { font-size: .92rem; }
.cookie-cat p { font-size: .82rem; color: var(--text-soft); margin: 0; }
.cookie-cat input { width: 20px; height: 20px; accent-color: var(--accent); flex-shrink: 0; margin-top: .3rem; }
.cookie-modal-actions { display: flex; gap: .8rem; margin-top: 1.4rem; flex-wrap: wrap; }


@media (max-width: 1024px) {
  .zig-row, .contact-grid, .ftr-cols { grid-template-columns: 1fr; }
  .zig-row--rev .zig-media, .zig-row--rev .zig-content { order: initial; }
  .legal-wrap { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
}

@media (max-width: 768px) {
  .hdr-nav { display: none; }
  .hdr-burger { display: flex; }
  .frm-row { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(3.2rem, 18vw, 6rem); }
}

@media (max-width: 480px) {
  .cookie-card { width: calc(100vw - 32px); }
  .cookie-card.is-visible { left: 16px; top: 16px; }
}