:root {
  --accent: #a0472a;
  --accent-dark: #7d3620;
  --accent-light: #e7c3ae;
  --accent-soft: #f7e2d3;
  --ink: #2b2420;
  --ink-soft: #5b4f45;
  --cream: #faf5ee;
  --cream-alt: #f3e7da;
  --white: #ffffff;
  --line: #e9dccb;
  --shadow: 0 10px 30px rgba(122, 66, 39, 0.12);
  --shadow-soft: 0 6px 18px rgba(43, 36, 32, 0.08);
  --shadow-lg: 0 30px 70px rgba(84, 45, 25, 0.22);
  --radius-lg: 32px;
  --radius: 20px;
  --radius-sm: 12px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --edge: clamp(20px, 3vw, 40px);
  --w-wide: 1760px;
  --w-normal: 1300px;
  --w-narrow: 1120px;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.section-inner {
  max-width: var(--w-normal);
  margin: 0 auto;
  padding: 0 var(--edge);
}
.section-inner--wide {
  max-width: var(--w-wide);
}
.section-inner--narrow {
  max-width: var(--w-narrow);
}

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 10px;
}
.eyebrow.center { text-align: center; }
.eyebrow.on-dark { color: var(--accent-light); }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
}

h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h2.center { text-align: center; }

.section-sub {
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 40px;
}
.section-sub.center { text-align: center; }

/* ---------- decorative flourish (reused svg) ---------- */
.flourish {
  position: absolute;
  color: var(--accent);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible,
.cat-card:focus-visible,
.filter-pill:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary { background: var(--accent); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--accent-dark); }

.btn-outline { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: var(--white); }

.btn-light { background: var(--white); color: var(--accent-dark); box-shadow: var(--shadow-soft); }
.btn-light:hover { background: var(--cream-alt); }

.btn-glass {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.38); }

.btn-block { width: 100%; }

.cta-mobile-only { display: none; }
@media (max-width: 780px) {
  .cta-desktop-only { display: none !important; }
  .cta-mobile-only { display: inline-flex; }
}

/* ---------- Header (floating glass island) ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--edge) 0;
  pointer-events: none;
}
.header-island {
  pointer-events: auto;
  max-width: var(--w-normal);
  margin: 0 auto;
  background: rgba(250, 245, 238, 0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  box-shadow: 0 10px 34px rgba(122, 66, 39, 0.14);
  padding: 10px 12px 10px 26px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.scrolled .header-island {
  background: rgba(250, 245, 238, 0.82);
  box-shadow: 0 10px 30px rgba(122, 66, 39, 0.2);
}

.brand { display: flex; justify-content: center; }
.brand-logo { height: 50px; width: auto; }

.nav { display: flex; align-items: center; gap: 26px; font-weight: 500; font-size: 0.94rem; }
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }
.nav a { position: relative; padding: 4px 0; color: var(--ink); }
.nav a:hover { color: var(--accent); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  align-self: center;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  pointer-events: auto;
  display: none;
  flex-direction: column;
  gap: 4px;
  margin: 8px auto 0;
  max-width: var(--w-normal);
  padding: 10px 22px 18px;
  background: rgba(250, 245, 238, 0.92);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(122, 66, 39, 0.16);
}
.mobile-menu a { padding: 12px 4px; border-bottom: 1px solid var(--line); font-weight: 500; }
.mobile-menu a:last-child { border-bottom: none; margin-top: 8px; }
.mobile-menu.open { display: flex; }
.mobile-menu .phone-pill {
  justify-content: center; margin-top: 6px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white); padding: 12px 18px; border-radius: 100px; font-weight: 500;
}

/* ---------- Hero (boxed card) ---------- */
.hero {
  padding: 108px var(--edge) 28px;
  position: relative;
  overflow: hidden;
}
.hero .flourish { top: 40px; left: 6%; width: 90px; height: 90px; opacity: 0.12; }
.hero-box {
  position: relative;
  max-width: var(--w-wide);
  margin: 0 auto;
  height: min(86vh, 780px);
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-box img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,20,14,0.15) 0%, rgba(30,20,14,0.05) 35%, rgba(20,13,9,0.75) 100%);
}
.hero-flourish-wrap {
  position: absolute; top: 26px; right: 26px;
  width: 130px; height: 130px;
  color: rgba(255,255,255,0.5);
  opacity: 0.8;
  pointer-events: none;
}

.hero-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--white);
}
.hero-text { max-width: 560px; }
.hero-text .eyebrow { color: var(--accent-light); }
.hero-text h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  margin: 0;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  z-index: 2;
  animation: bob 2.2s ease-in-out infinite;
  opacity: 0.85;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- About ---------- */
.about { padding: 120px 0 100px; position: relative; overflow: hidden; }
.about .blob { width: 420px; height: 420px; background: var(--accent-soft); opacity: 0.5; top: -120px; left: -160px; }
.about .flourish { bottom: 0; right: 4%; width: 160px; height: 160px; opacity: 0.1; transform: scaleX(-1); }
.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.about-stack {
  position: relative;
  aspect-ratio: 4/5;
  margin: 0 30px 30px 0;
}
.about-stack img {
  position: absolute;
  border-radius: var(--radius);
  object-fit: cover;
  width: 88%;
  height: 88%;
}
.about-stack .stack-back {
  top: 12%; left: 12%;
  transform: rotate(-8deg);
  filter: saturate(0.55) brightness(0.9);
  box-shadow: var(--shadow-soft);
}
.about-stack .stack-front {
  top: 0; left: 0;
  transform: rotate(3deg);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.about-text p { color: var(--ink-soft); }
.about-cta-text { color: var(--ink); font-weight: 500; }

.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0 32px;
}
.value-chip {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  text-align: left;
}
.value-chip svg { color: var(--accent); margin-bottom: 8px; }
.value-chip strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--ink); }

/* ---------- Portfolio: category cards ---------- */
.portfolio { padding: 100px 0 110px; position: relative; overflow: hidden; }
.portfolio .blob { width: 460px; height: 460px; background: var(--accent-soft); opacity: 0.45; bottom: -180px; right: -180px; }

.cat-grid-wrap {
  position: relative;
  z-index: 1;
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 var(--edge);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 30px 32px;
  margin-top: 56px;
}
.cat-card {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--font-sans);
  text-align: left;
  display: block;
  width: 100%;
}
.cat-stack {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
}
.cat-stack img {
  position: absolute;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.stack-back {
  transform: rotate(-7deg) translate(-6%, 4%);
  filter: saturate(0.5) brightness(0.82);
  box-shadow: var(--shadow-soft);
}
.stack-front {
  transform: rotate(2deg);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.cat-card:hover .stack-front { transform: rotate(-1deg) translateY(-10px); }
.cat-card:hover .stack-back { transform: rotate(-11deg) translate(-9%, 7%); }

.cat-scrim {
  position: absolute;
  left: 5px; right: 5px; bottom: 5px;
  height: 62%;
  border-radius: 0 0 15px 15px;
  background: linear-gradient(180deg, rgba(20,13,9,0) 0%, rgba(20,13,9,0.72) 100%);
  z-index: 1;
  pointer-events: none;
}
.cat-badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
}
.cat-name {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

/* ---------- Gallery overlay (full category view) ---------- */
.gallery-overlay {
  position: fixed; inset: 0;
  z-index: 800;
  background: var(--cream);
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.gallery-overlay.open { display: flex; }
.gallery-overlay-head {
  position: sticky; top: 0;
  background: rgba(250, 245, 238, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 22px var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;
}
.gallery-overlay-head h3 { margin: 0; font-size: 1.4rem; }
.gallery-overlay-head p { margin: 2px 0 0; color: var(--ink-soft); font-size: 0.88rem; }
.gallery-overlay-close {
  background: var(--white);
  border: 1px solid var(--line);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
}
.gallery-overlay-close:hover { background: var(--cream-alt); }
.gallery-overlay-body { max-width: var(--w-wide); margin: 0 auto; padding: 28px var(--edge) 80px; width: 100%; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.thumb {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-alt);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
  position: relative;
}
.thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.thumb:hover img { transform: scale(1.06); }

/* ---------- CTA banner ---------- */
.cta-banner { padding: 60px var(--edge) 90px; }
.cta-card {
  position: relative;
  max-width: var(--w-narrow);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  padding: 64px 40px;
  color: var(--white);
  text-align: center;
}
.cta-card .flourish { top: -20px; left: -10px; width: 220px; height: 220px; color: var(--white); opacity: 0.14; }
.cta-card .flourish.flip { top: auto; left: auto; bottom: -20px; right: -10px; transform: scaleX(-1) scaleY(-1); }
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { color: var(--white); }
.cta-inner p { color: rgba(255,255,255,0.88); max-width: 480px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { padding: 30px 0 120px; position: relative; overflow: hidden; }
.contact .blob { width: 380px; height: 380px; background: var(--accent-soft); opacity: 0.5; top: 40px; left: -160px; }
.contact-card {
  position: relative;
  z-index: 1;
  max-width: var(--w-narrow);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
}
.contact-form-wrap { padding: 48px 44px; }
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--ink-soft); margin-bottom: 26px; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.contact-form textarea { min-height: 100px; }

.contact-side {
  background: linear-gradient(160deg, var(--accent-dark), var(--accent));
  color: var(--white);
  padding: 48px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.contact-side .flourish { color: var(--white); opacity: 0.15; width: 200px; height: 200px; bottom: -30px; right: -30px; }
.contact-side-phone {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-serif); font-size: 1.5rem;
  position: relative; z-index: 1;
}
.contact-side p { color: rgba(255,255,255,0.85); margin: 0; position: relative; z-index: 1; }
.contact-side .btn { position: relative; z-index: 1; }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(30, 20, 14, 0.55);
  backdrop-filter: blur(4px);
}
.modal-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 40px 34px;
  box-shadow: var(--shadow-lg);
  max-height: 88vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}
.modal-sub { color: var(--ink-soft); margin-bottom: 22px; }
.modal-call {
  display: block;
  text-align: center;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.92rem;
}
.modal-call:hover { color: var(--accent-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer .flourish { color: var(--accent-light); opacity: 0.14; width: 220px; height: 220px; top: -40px; left: 50%; transform: translateX(-50%) scaleY(-1); }
.footer-inner { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo { height: 46px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin: 6px 0; font-size: 0.92rem; }
.footer-nav a:hover { color: var(--white); }
.footer-inner > a { color: var(--accent-light); font-weight: 500; }
.footer-inner p { margin: 0; font-size: 0.9rem; }
.footer-divider {
  width: 100%;
  max-width: 380px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 18px 0;
}
.footer-credit {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-credit a { color: rgba(255,255,255,0.55); }
.footer-credit a:hover { color: var(--accent-light); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 14, 10, 0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.no-scroll { overflow: hidden; }

.lb-content {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lb-content img {
  max-width: 90vw;
  max-height: 78vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lb-counter { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0; }

.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lb-nav:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0;
  z-index: 2000;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-flower { width: 92px; height: 92px; color: var(--accent); }
.preloader-flower .petal {
  transform-box: fill-box;
  transform-origin: center;
  animation: petal-bloom 1.6s ease-in-out infinite;
}
.preloader-flower .petal:nth-child(1) { animation-delay: 0s; }
.preloader-flower .petal:nth-child(2) { animation-delay: 0.1s; }
.preloader-flower .petal:nth-child(3) { animation-delay: 0.2s; }
.preloader-flower .petal:nth-child(4) { animation-delay: 0.3s; }
.preloader-flower .petal:nth-child(5) { animation-delay: 0.4s; }
.preloader-flower .petal:nth-child(6) { animation-delay: 0.5s; }
@keyframes petal-bloom {
  0%, 100% { transform: scale(0.55); opacity: 0.35; }
  50% { transform: scale(1); opacity: 1; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .preloader-flower .petal { animation: none; opacity: 1; transform: scale(1); }
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 700;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(250, 245, 238, 0.92);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  transform: translateY(160%);
  transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 0.86rem; color: var(--ink-soft); flex: 1; min-width: 200px; }
.cookie-banner .btn { padding: 10px 20px; font-size: 0.86rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-stack { max-width: 360px; margin: 0 auto 30px; }
  .value-row { grid-template-columns: 1fr 1fr; }
  .nav-left, .nav-right { display: none; }
  .header-island { grid-template-columns: auto 1fr auto; padding: 8px 8px 8px 20px; }
  .burger { display: flex; }
  .brand-logo { height: 42px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-side { order: -1; }
}

@media (max-width: 600px) {
  .about, .portfolio, .contact { padding: 70px 0; }
  .hero { padding: 96px var(--edge) 20px; }
  .hero-box { height: 640px; border-radius: 22px; }
  .hero-bottom { padding: 22px 20px; flex-direction: column; align-items: flex-start; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; }
  .hero-flourish-wrap { width: 80px; height: 80px; top: 16px; right: 16px; }
  .value-row { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 30px 14px; }
  .cat-name { font-size: 1rem; left: 14px; right: 14px; bottom: 12px; }
  .cat-badge { font-size: 0.66rem; padding: 4px 9px; top: 12px; right: 12px; }
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; padding: 18px; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
  .contact-form-wrap, .contact-side { padding: 32px 24px; }
  .cta-card { padding: 44px 26px; }
  .lb-nav { width: 40px; height: 40px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .gallery-overlay-head { padding: 16px; }
}
