/* =================================================
   KOSMICZNA HERBATKA — Premium Design System
   kosmicznaherbatka.pl
   ================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* =================================================
   VARIABLES
   ================================================= */
:root {
  --ink:        #0d0c0a;
  --ink-2:      #181613;
  --cream:      #ffffff;
  --cream-2:    #f7f7f6;
  --cream-3:    #ececea;
  --gold:       #b89a6a;
  --gold-lt:    #cdb48a;
  --sky:        #8fb5c8;
  --rose:       #c4908a;

  --text:       #1a1814;
  --text-body:  #3a3630;
  --text-muted: #7a7268;
  --text-cream: #f2ede6;
  --text-dim:   rgba(242,237,230,0.5);

  --border:     rgba(26,24,20,0.1);
  --border-lt:  rgba(26,24,20,0.055);
  --border-dk:  rgba(242,237,230,0.07);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap:   cubic-bezier(0.7, 0, 0.3, 1);
}

/* =================================================
   RESET & BASE
   ================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  animation: pageFade .55s var(--ease-out) both;
}

@media (hover: none) { body { cursor: auto; } }

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

@keyframes pageFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =================================================
   TYPOGRAPHY
   ================================================= */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.08;
}
h1 { font-size: clamp(3rem, 7vw, 6.5rem); font-style: italic; }
h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-style: italic; }
h3 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.55rem); font-weight: 400; }
p  { line-height: 1.88; color: var(--text-body); }

.label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}

/* =================================================
   CUSTOM CURSOR
   ================================================= */
.cursor-dot,
.cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  /* will-change: transform removed — breaks mix-blend-mode compositing */
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin: -3px 0 0 -3px;
  /* Dual halo (light + dark) keeps the dot readable on cream,
     ink and accent sections without relying on mix-blend-mode,
     which breaks over GPU-composited layers on macOS. */
  box-shadow: 0 0 0 1px rgba(242,237,230,.30), 0 0 6px rgba(13,12,10,.40);
}
.cursor-ring {
  width: 30px; height: 30px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  margin: -15px 0 0 -15px;
  box-shadow: 0 0 0 1px rgba(242,237,230,.18), 0 0 8px rgba(13,12,10,.28);
  transition: width .35s var(--ease-out), height .35s var(--ease-out),
              border-color .3s, background .3s, opacity .3s;
}
.cursor-ring.link-hover {
  width: 52px; height: 52px;
  border-color: var(--gold-lt);
  background: rgba(184,154,106,.10);
  margin: -26px 0 0 -26px;
}

/* =================================================
   LOADING LINE
   ================================================= */
.load-line {
  position: fixed; top: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  z-index: 9998; transform-origin: left;
  animation: loadLine 1.1s var(--ease-out) both;
}
@keyframes loadLine {
  0%   { transform: scaleX(0); opacity: 1; }
  75%  { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0; }
}

/* =================================================
   NAVIGATION
   ================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.75rem 3rem;
  transition: background .5s, padding .4s, backdrop-filter .5s;
}
.nav.scrolled {
  background: rgba(242,237,230,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  color: var(--text-muted);
  transition: color .3s, opacity .3s;
}
.nav-logo:hover { opacity: .75; }

.nav-logo-img {
  height: 32px; width: auto;
  display: block;
  /* logo is black — works on cream nav; footer inverts it */
}

.nav-logo-mark {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(184,154,106,.45);
  position: relative; flex-shrink: 0;
  transition: border-color .4s;
}
.nav-logo-mark::after {
  content: '';
  position: absolute; inset: 5px; border-radius: 50%;
  border: 1px solid rgba(184,154,106,.22);
  transition: border-color .4s;
}

.nav-logo span {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: .78rem; font-weight: 400; letter-spacing: .05em;
  color: var(--text-muted); position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  height: 1px; width: 0; background: currentColor;
  transition: width .35s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none; cursor: none; border: none; background: none;
  width: 30px; height: 18px; position: relative; z-index: 400;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block; width: 100%; height: 1px;
  background: var(--text);
  transition: transform .45s var(--ease-out), opacity .3s, background .4s;
}
.nav-toggle.open span { background: var(--cream) !important; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Full-screen overlay menu */
.mobile-overlay {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 350;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transform: translateY(-100%);
  transition: transform .7s var(--ease-snap);
}
.mobile-overlay.open { transform: translateY(0); }

.mobile-overlay ul { list-style: none; text-align: center; }
.mobile-overlay ul li { overflow: hidden; }
.mobile-overlay ul a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 9vw, 5rem);
  font-style: italic; font-weight: 300;
  color: rgba(242,237,230,.2);
  padding: .25rem 0;
  transform: translateY(110%);
  transition: transform .55s var(--ease-out), color .3s;
}
.mobile-overlay.open ul a {
  transform: translateY(0);
  transition: transform .55s var(--ease-out), color .3s;
}
.mobile-overlay ul li:nth-child(1) a { transition-delay: .12s, 0s; }
.mobile-overlay ul li:nth-child(2) a { transition-delay: .2s,  0s; }
.mobile-overlay ul li:nth-child(3) a { transition-delay: .28s, 0s; }
.mobile-overlay ul li:nth-child(4) a { transition-delay: .36s, 0s; }
.mobile-overlay ul a:hover { color: var(--cream); }

.mobile-overlay-footer {
  position: absolute; bottom: 2.5rem;
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(242,237,230,.2);
}

/* =================================================
   BUTTONS
   ================================================= */
.btn {
  display: inline-block; position: relative;
  padding: .95rem 2.5rem;
  border: 1px solid currentColor; border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: .75rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  overflow: hidden; cursor: none;
  transition: color .45s var(--ease-snap);
  z-index: 0;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-snap);
  z-index: -1;
}
.btn:hover::before { transform: scaleX(1); }
.btn-cream { color: var(--cream); }
.btn-cream::before { background: var(--cream); }
.btn-cream:hover { color: var(--ink); }
.btn-dark  { color: var(--text); }
.btn-dark::before { background: var(--ink); }
.btn-dark:hover  { color: var(--cream); }

/* Underline button (for cards) */
.btn-link {
  font-size: .72rem; font-weight: 500; letter-spacing: .11em; text-transform: uppercase;
  color: var(--text-muted); cursor: none; position: relative;
  padding-bottom: 3px;
  transition: color .25s;
}
.btn-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 1px; width: 35%; background: var(--gold);
  transition: width .38s var(--ease-out);
}
.btn-link:hover { color: var(--text); }
.btn-link:hover::after { width: 100%; }

/* =================================================
   SCROLL REVEAL
   ================================================= */
.r {
  opacity: 0; transform: translateY(32px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.r.in { opacity: 1; transform: none; }

/* =================================================
   HERO — HOME
   ================================================= */
.hero {
  position: relative; min-height: 100svh;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 6rem 3rem;
  overflow: hidden;
  text-align: center;
}

/* Animated nebula */
.nebula {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.nebula-a, .nebula-b, .nebula-c {
  position: absolute; border-radius: 50%;
  filter: blur(90px);
}
.nebula-a {
  width: 70%; height: 80%; top: -25%; left: -10%;
  background: radial-gradient(ellipse, rgba(184,154,106,.16) 0%, transparent 68%);
  animation: ndrift 20s ease-in-out infinite alternate;
}
.nebula-b {
  width: 55%; height: 65%; bottom: -20%; right: -8%;
  background: radial-gradient(ellipse, rgba(196,144,138,.12) 0%, transparent 70%);
  animation: ndrift 26s ease-in-out infinite alternate-reverse;
}
.nebula-c {
  width: 45%; height: 55%; top: 25%; right: 8%;
  background: radial-gradient(ellipse, rgba(143,181,200,.12) 0%, transparent 70%);
  animation: ndrift 18s ease-in-out infinite alternate;
  animation-delay: -8s;
}
@keyframes ndrift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(5%,7%) scale(1.18); }
}

/* Decorative orb */
.hero-orb {
  position: absolute; top: 10%; right: 8%;
  width: clamp(130px, 18vw, 300px);
  height: clamp(130px, 18vw, 300px);
  border-radius: 50%;
  border: 1px solid rgba(26,24,20,.07);
  animation: orbSpin 80s linear infinite;
}
.hero-orb::before, .hero-orb::after {
  content: ''; position: absolute; border-radius: 50%;
}
.hero-orb::before {
  inset: 18px;
  border: 1px solid rgba(26,24,20,.05);
}
.hero-orb::after {
  inset: 36px;
  border: 1px solid rgba(184,154,106,.18);
}
@keyframes orbSpin { to { transform: rotate(360deg); } }

/* Hero content */
.hero-content { position: relative; z-index: 1; max-width: 860px; }

.hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 1.75rem;
  opacity: 0; animation: fadeUp .7s var(--ease-out) .25s forwards;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--gold); opacity: .7; flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: .66rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-muted);
}

.hero h1 {
  color: var(--text);
  font-size: clamp(2rem, 4.6vw, 3.9rem); line-height: 1.16;
  opacity: 0; animation: heroUp 1.1s var(--ease-out) .4s forwards;
}
.hero h1 em { color: var(--gold); font-style: italic; }

.hero-desc {
  max-width: 500px; font-size: .92rem;
  color: var(--text-muted); line-height: 1.85;
  margin: 1.75rem auto 2.5rem;
  opacity: 0; animation: fadeUp .8s var(--ease-out) .85s forwards;
}

.hero .btn {
  opacity: 0; animation: fadeUp .8s var(--ease-out) 1.05s forwards;
}

.hero-scroll {
  position: absolute; right: 3rem; bottom: 3.5rem;
  writing-mode: vertical-lr;
  display: flex; align-items: center; gap: .8rem;
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(26,24,20,.28);
  opacity: 0; animation: fadeIn .8s ease 1.5s forwards;
}
.hero-scroll::before {
  content: ''; display: block; width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(26,24,20,.18));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(.4); opacity: .3; }
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(55px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =================================================
   PAGE HERO (subpages)
   ================================================= */
.page-hero {
  position: relative; min-height: 45svh;
  background: var(--cream);
  display: flex; align-items: flex-end;
  padding: 0 3rem 4rem;
  overflow: hidden;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--text);
  opacity: 0; animation: heroUp .9s var(--ease-out) .3s forwards;
}
.page-hero-sub {
  max-width: 480px; font-size: .9rem;
  color: var(--text-muted); line-height: 1.85; margin-top: 1rem;
  opacity: 0; animation: fadeUp .8s var(--ease-out) .6s forwards;
}

/* =================================================
   HOME — AREAS
   ================================================= */
.section-areas { padding: 9rem 0; background: var(--cream); }

.area-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6.5rem; align-items: center;
  max-width: 1100px; margin: 0 auto 9rem; padding: 0 2.5rem;
  position: relative;
}
.area-item:last-child { margin-bottom: 0; }
.area-item.flip { direction: rtl; }
.area-item.flip > * { direction: ltr; }

.area-bg-num {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(9rem, 16vw, 20rem);
  font-style: italic; font-weight: 300;
  color: rgba(26,24,20,.038);
  line-height: 1; pointer-events: none; user-select: none;
  z-index: 0;
}
.area-item:not(.flip) .area-bg-num { right: -2rem; }
.area-item.flip .area-bg-num { left: -2rem; direction: ltr; }

.area-visual {
  aspect-ratio: 4/5; border-radius: 3px; overflow: hidden;
  position: relative; z-index: 1;
  transition: transform .6s var(--ease-out);
}
.area-visual:hover { transform: scale(1.02); }
.area-visual img { width: 100%; height: 100%; object-fit: cover; }

.av-1 { background: radial-gradient(ellipse at 42% 38%, #e6dcca 0%, #cdbfa8 45%, #9aabbb 100%); }
.av-2 { background: radial-gradient(ellipse at 50% 42%, #c8dbe8 0%, #acccd8 45%, #8aa8bc 100%); }
.av-3 { background: radial-gradient(ellipse at 45% 50%, #becab4 0%, #a8b89c 45%, #8aa080 100%); }

.area-text { position: relative; z-index: 1; }

.area-kicker {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem;
}
.area-num-label { font-size: .68rem; font-weight: 500; letter-spacing: .2em; color: var(--gold); }
.area-rule { flex: 1; height: 1px; max-width: 48px; background: var(--border); }

.area-text h3 { margin-bottom: 1rem; }
.area-text > p { font-size: .93rem; margin-bottom: 2rem; }

.area-list { list-style: none; border-top: 1px solid var(--border); }
.area-list li {
  padding: .7rem 0; border-bottom: 1px solid var(--border-lt);
  font-size: .86rem; color: var(--text-muted);
  display: flex; align-items: center; gap: .75rem;
  transition: color .2s, padding-left .3s var(--ease-out);
}
.area-list li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: .55; flex-shrink: 0;
  transition: opacity .2s;
}
.area-list li:hover { color: var(--text); padding-left: .5rem; }
.area-list li:hover::before { opacity: 1; }

/* =================================================
   HOME — MANIFESTO
   ================================================= */
.section-manifesto {
  background: var(--cream-2); padding: 8rem 2.5rem;
  text-align: center;
}
.manifesto-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem;
  margin-bottom: 2.25rem;
}
.manifesto-eyebrow::before,
.manifesto-eyebrow::after {
  content: ''; width: 44px; height: 1px;
  background: var(--gold); opacity: .45;
}
.manifesto-eyebrow span { font-size: .65rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }

.manifesto-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-style: italic; font-weight: 300;
  color: var(--text); max-width: 640px; margin: 0 auto 3rem; line-height: 1.4;
}
.manifesto-list {
  list-style: none; max-width: 660px; margin: 0 auto 2.5rem;
}
.manifesto-list li {
  padding: .42rem 0; font-size: .92rem;
  color: var(--text-muted); line-height: 1.8;
  transition: color .25s;
}
.manifesto-list li:hover { color: var(--text); }
.manifesto-coda {
  font-size: .92rem; line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px; margin: 0 auto 3rem;
}

/* =================================================
   PRODUCTS PAGE
   ================================================= */
.products-wrap { background: var(--cream); padding: 1rem 0 4rem; }

.products-cat {
  max-width: 1100px; margin: 0 auto;
  padding: 2.5rem 2.5rem; border-bottom: 1px solid var(--border);
}
.products-cat:last-child { border-bottom: none; }

.cat-head {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 2rem; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--border);
}
.cat-num { font-size: .66rem; font-weight: 500; letter-spacing: .2em; color: var(--gold); margin-bottom: .45rem; }
.cat-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.cat-desc { font-size: .88rem; color: var(--text-muted); text-align: right; max-width: 380px; line-height: 1.85; }

.cat-chips {
  display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 2rem;
}
.chip {
  font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); padding: .38rem .9rem;
  border: 1px solid var(--border); border-radius: 50px;
  transition: border-color .25s, color .25s;
}
.chip:hover { border-color: var(--gold); color: var(--text); }

/* Product grid */
.prod-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
}

/* Product card */
.prod-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column; cursor: none;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .4s;
}
.prod-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 28px 64px rgba(13,12,10,.1);
  border-color: transparent;
}

.prod-img { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.prod-img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(13,12,10,.03);
  opacity: 0; transition: opacity .4s;
}
.prod-card:hover .prod-img::after { opacity: 1; }

.pi-1 { background: linear-gradient(145deg, #c8dce8 0%, #d8ece4 55%, #e4ede0 100%); }
.pi-2 { background: linear-gradient(145deg, #e4d0d4 0%, #ecddde 55%, #f0e6e4 100%); }
.pi-3 { background: linear-gradient(145deg, #c4d4bc 0%, #d4e2ca 55%, #dce8d0 100%); }

.prod-body {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1; display: flex; flex-direction: column;
}
.prod-tag { font-size: .62rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.prod-body h4 { font-size: clamp(1rem, 1.4vw, 1.3rem); font-weight: 400; margin-bottom: .35rem; line-height: 1.25; }
.prod-sub { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.25rem; flex: 1; line-height: 1.7; }

.prod-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.25rem; border-top: 1px solid var(--border-lt); margin-top: auto;
}
.prod-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 400; color: var(--gold); line-height: 1;
}

/* =================================================
   IMPORTANT INFO
   ================================================= */
.section-info { background: var(--cream-2); padding: 5rem 2.5rem; }
.info-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr; gap: 5.5rem; align-items: start;
}
.info-inner h3 { font-style: italic; color: var(--text); font-size: clamp(1.5rem,2.5vw,2rem); }

.info-list { list-style: none; counter-reset: ic; }
.info-list li {
  counter-increment: ic;
  display: grid; grid-template-columns: 2.5rem 1fr;
  gap: 1rem; padding: 1.25rem 0;
  border-bottom: 1px solid var(--border); align-items: start;
}
.info-list li:first-child { border-top: 1px solid var(--border); }
.info-list li::before {
  content: counter(ic,decimal-leading-zero);
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  color: var(--gold);
}
.info-list li p { font-size: .88rem; color: var(--text-muted); line-height: 1.85; }

/* =================================================
   ABOUT PAGE
   ================================================= */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}
.about-visual {
  position: sticky; top: 0; height: 100svh;
  overflow: hidden;
  background: linear-gradient(155deg, #b8cdd6 0%, #a4bcc8 40%, #90a8bc 100%);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-note {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.45); white-space: nowrap;
}

.about-content {
  padding: 9rem 4.5rem 6rem;
  background: var(--cream);
}
.about-content .label { color: var(--gold); margin-bottom: 1rem; display: block; }
.about-content h2 { margin-bottom: 2.5rem; }
.about-content p { font-size: .93rem; margin-bottom: 1.2rem; }
.about-content p:last-child { margin-bottom: 0; }

/* =================================================
   CONTACT PAGE
   ================================================= */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}
.contact-dark {
  background: var(--ink); position: relative; overflow: hidden;
  padding: 9rem 4.5rem 5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.contact-dark-content { position: relative; z-index: 1; }
.contact-dark .label { color: var(--gold); margin-bottom: 1.5rem; display: block; }
.contact-dark h2 { color: var(--cream); margin-bottom: 1rem; }
.contact-dark > p { font-size: .9rem; color: rgba(242,237,230,.42); line-height: 1.85; margin-bottom: 2.5rem; }

.contact-links { list-style: none; }
.contact-links li { padding: .75rem 0; border-bottom: 1px solid var(--border-dk); }
.contact-links li:first-child { border-top: 1px solid var(--border-dk); }
.contact-links a { font-size: .88rem; color: rgba(242,237,230,.38); transition: color .25s; }
.contact-links a:hover { color: rgba(242,237,230,.8); }

.contact-form-wrap {
  background: var(--cream-2); padding: 9rem 4.5rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-form-wrap h3 { font-style: italic; margin-bottom: 2.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.75rem; }

.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .64rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }
.field input, .field textarea {
  padding: .85rem 0; background: none;
  border: none; border-bottom: 1px solid var(--border);
  font-family: 'Jost', sans-serif; font-size: .92rem; font-weight: 300;
  color: var(--text); outline: none;
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { min-height: 110px; resize: none; }

/* =================================================
   FOOTER
   ================================================= */
.footer {
  background: var(--cream-2); padding: 3rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border);
}
.footer-brand {
  display: flex; align-items: center; gap: .75rem;
  font-size: .68rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(26,24,20,.45);
  transition: opacity .25s;
}
.footer-brand:hover { opacity: .7; }
.footer-brand-mark {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(26,24,20,.18);
}
.footer-logo-img {
  height: 28px; width: auto; display: block;
  /* logo is black artwork — sits directly on the light footer */
  transition: opacity .25s;
}

.footer-info { text-align: right; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1rem;
  color: rgba(26,24,20,.55); margin-bottom: .9rem;
}
.footer-links { list-style: none; display: flex; gap: 1.75rem; justify-content: flex-end; margin-bottom: .5rem; }
.footer-links a { font-size: .76rem; color: rgba(26,24,20,.42); transition: color .25s; }
.footer-links a:hover { color: rgba(26,24,20,.75); }
.footer-copy { font-size: .64rem; color: rgba(26,24,20,.32); letter-spacing: .04em; }

/* =================================================
   RESPONSIVE
   ================================================= */
@media (max-width: 1024px) {
  .area-item { gap: 4rem; }
  .info-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1.1rem 1.5rem; }
  .nav.scrolled { padding: .85rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 0 1.5rem 4.5rem; }
  .hero-scroll { right: 1.5rem; bottom: 2.5rem; }
  .hero-orb { display: none; }

  .area-item, .area-item.flip {
    grid-template-columns: 1fr; direction: ltr; gap: 2.25rem; margin-bottom: 5.5rem;
  }
  .area-visual { aspect-ratio: 3/2; }
  .area-bg-num { display: none; }
  .section-areas { padding: 5.5rem 0; }

  .page-hero { padding: 0 1.5rem 3.5rem; min-height: 45svh; }

  .prod-grid { grid-template-columns: 1fr; gap: 1rem; }
  .cat-head { grid-template-columns: 1fr; }
  .cat-desc { text-align: left; max-width: 100%; }
  .products-cat { padding: 3.5rem 1.5rem; }
  .products-wrap { padding: 2rem 0 4rem; }

  .about-layout { grid-template-columns: 1fr; }
  .about-visual { height: 55vw; min-height: 240px; position: relative; top: auto; }
  .about-content { padding: 4rem 1.5rem 5rem; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-dark { padding: 7rem 1.5rem 4rem; }
  .contact-form-wrap { padding: 4rem 1.5rem 5rem; }

  .section-manifesto { padding: 5rem 1.5rem; }

  .footer { flex-direction: column; gap: 1.75rem; text-align: center; padding: 2.5rem 1.5rem; }
  .footer-info { text-align: center; }
  .footer-links { justify-content: center; }
}

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none !important; }
  * { cursor: auto !important; }
  a, button { cursor: pointer !important; }
}
