/* DWELLER — Soft Architecture
   Design tokens taken from the brand's approved concept:
   warm off-white ground, near-black ink, Cormorant Garamond display
   serif + Jost sans for everything else, generous whitespace. */

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

:root{
  --bg: #faf8f5;
  --ink: #0a0a0a;
  --ink-soft: #1c1c1a;
  --muted: #8f8880;
  --line: rgba(10,10,10,0.12);
  --line-soft: rgba(10,10,10,0.08);
  --cream: #f2ede6;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', -apple-system, 'system-ui', sans-serif;
  --gap: clamp(20px, 4vw, 48px);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }

.wrap{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gap);
}

.eyebrow{
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

h1,h2,h3{
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  line-height: 1.05;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background .35s ease, color .35s ease;
  white-space: nowrap;
}
.btn:hover{ background: var(--ink); color: var(--bg); }
.btn.light{ border-color: rgba(255,255,255,.85); color:#fff; }
.btn.light:hover{ background:#fff; color: var(--ink); }
.btn.solid{ background: var(--ink); color: var(--bg); }
.btn.solid:hover{ background: transparent; color: var(--ink); }

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 26px var(--gap);
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.solid{
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(10px);
  padding: 16px var(--gap);
  border-bottom-color: var(--line-soft);
}
.logo{
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 300;
}
.site-header:not(.solid) .logo,
.site-header:not(.solid) .nav-main a,
.site-header:not(.solid) .lang a{ color:#fff; }

.nav-main{ display:flex; gap: 34px; }
.nav-main a{
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, opacity .3s ease;
  opacity: .85;
}
.nav-main a:hover, .nav-main a.active{ opacity:1; border-color: currentColor; }

.header-right{ display:flex; align-items:center; gap: 26px; }
.lang{ display:flex; align-items:center; gap:6px; font-size:10px; letter-spacing:1.5px; }
.lang span{ opacity:.4; }
.lang button{ background:none; border:none; color:inherit; font: inherit; letter-spacing:1.5px; padding:0; opacity:.6; }
.lang button.active{ opacity:1; text-decoration: underline; text-underline-offset:3px; }

.burger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:4px;
}
.burger span{ width:22px; height:1px; background: currentColor; display:block; }

.mobile-nav{
  position:fixed; inset:0; z-index:99;
  background: var(--bg);
  display:flex; flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap: 22px;
  padding: 0 40px;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.7,0,.2,1);
}
.mobile-nav.open{ transform: translateY(0); }
.mobile-nav a{
  font-family: var(--serif);
  font-size: 34px;
}
.mobile-nav .lang{ margin-top: 20px; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  height: 100vh;
  min-height: 620px;
  display:flex;
  align-items: flex-end;
  color:#fff;
  overflow:hidden;
}
.hero img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.05) 60%, rgba(0,0,0,.55) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  padding: 0 var(--gap) 72px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 30px;
}
.hero-content .eyebrow{ color: rgba(255,255,255,.75); margin-bottom: 18px; }
.hero-content h1{
  font-size: clamp(48px, 9vw, 108px);
  letter-spacing: -1px;
}
.hero-side{ text-align:right; max-width: 260px; }
.hero-side p{ font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,.8); margin: 0 0 18px; }

.scroll-cue{
  position:absolute; left: var(--gap); bottom: 26px; z-index:2;
  font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,.75);
  display:flex; align-items:center; gap:10px;
}
.scroll-cue::after{ content:''; width:1px; height:34px; background: rgba(255,255,255,.5); }

/* ---------- Section basics ---------- */
section{ padding: 120px 0; }
.section-head{
  max-width: 640px;
  margin: 0 auto 64px;
  text-align:center;
}
.section-head .eyebrow{ margin-bottom: 18px; }
.section-head h2{ font-size: clamp(34px, 4.4vw, 54px); margin-bottom: 20px; }
.section-head p{ color: var(--muted); font-size: 16px; line-height: 1.7; }

/* ---------- Collection split ---------- */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items:stretch;
}
.split-media{ position:relative; min-height: 560px; overflow:hidden; }
.split-media img{ width:100%; height:100%; object-fit:cover; }
.split-copy{
  display:flex; flex-direction:column; justify-content:center;
  padding: 60px var(--gap);
}
.split-copy .eyebrow{ margin-bottom: 22px; }
.split-copy h2{ font-size: clamp(30px, 4vw, 46px); margin-bottom: 24px; }
.split-copy p{ color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 34px; max-width: 480px; }

/* ---------- Editorial full bleed ---------- */
.full-bleed{ position:relative; height: 78vh; min-height: 460px; overflow:hidden; }
.full-bleed img{ width:100%; height:100%; object-fit:cover; }
.full-bleed .caption{
  position:absolute; left: var(--gap); bottom: 34px; color:#fff;
  font-family: var(--serif); font-style: italic; font-size: 22px; max-width: 420px;
}

/* ---------- Products ---------- */
.products{ background: var(--cream); }
.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.product-card{ display:block; }
.product-media{ position:relative; overflow:hidden; aspect-ratio: 700/950; background:#e8e2d8; }
.product-media img{ width:100%; height:100%; object-fit:cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.product-card:hover .product-media img{ transform: scale(1.045); }
.product-info{ padding-top: 18px; display:flex; justify-content:space-between; align-items:baseline; }
.product-info h3{ font-size: 22px; }
.product-info span{ font-size: 11px; letter-spacing: 1px; color: var(--muted); text-transform:uppercase; }
.products-foot{ text-align:center; margin-top: 56px; }

/* ---------- Material ---------- */
.material{
  display:grid;
  grid-template-columns: .85fr 1.15fr;
  gap: var(--gap);
  align-items:center;
}
.material-media{ aspect-ratio: 9/7; overflow:hidden; }
.material-media img{ width:100%; height:100%; object-fit:cover; }
.material-copy .eyebrow{ margin-bottom: 22px; }
.material-copy h2{ font-size: clamp(30px, 4vw, 46px); margin-bottom: 24px; }
.material-copy p{ color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 30px; max-width: 480px; }

/* ---------- Diary grid ---------- */
.diary-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
}
.diary-grid a{ position:relative; overflow:hidden; display:block; }
.diary-grid img{ width:100%; height:100%; object-fit:cover; transition: transform .6s ease, opacity .3s ease; }
.diary-grid a:hover img{ transform: scale(1.06); opacity:.92; }
.diary-grid a:nth-child(1){ grid-column: span 2; grid-row: span 2; }
.diary-grid a:nth-child(6){ grid-column: span 2; grid-row: span 2; }

/* ---------- Newsletter ---------- */
.newsletter{ text-align:center; }
.newsletter h2{ font-size: clamp(32px, 4.4vw, 50px); margin-bottom: 18px; }
.newsletter p{ color: var(--muted); max-width: 460px; margin: 0 auto 34px; line-height:1.7; }
.newsletter-form{
  display:flex; justify-content:center; gap: 0;
  max-width: 440px; margin: 0 auto;
  border-bottom: 1px solid var(--ink);
}
.newsletter-form input{
  flex:1; border:none; background:transparent; padding: 14px 4px;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
}
.newsletter-form input:focus{ outline:none; }
.newsletter-form button{
  border:none; background:none; font-size: 11px; letter-spacing:2px; text-transform:uppercase; padding: 14px 4px;
}
.newsletter-note{ margin-top: 16px; font-size: 12px; letter-spacing: .5px; color: var(--muted); display:none; }
.newsletter-note.show{ display:block; }

/* ---------- Footer ---------- */
footer{ background: var(--ink); color: rgba(255,255,255,.82); padding: 90px 0 28px; }
.footer-tag{ text-align:center; font-family: var(--serif); font-style: italic; font-size: 26px; color:#fff; margin-bottom: 70px; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--gap);
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding-bottom: 50px;
  margin-bottom: 26px;
}
.footer-brand .logo{ color:#fff; margin-bottom: 14px; }
.footer-brand p{ font-size: 13px; letter-spacing: .5px; color: rgba(255,255,255,.5); }
.footer-col h4{ font-size: 11px; letter-spacing: 2px; text-transform:uppercase; color: rgba(255,255,255,.45); margin-bottom: 18px; font-weight:400; }
.footer-col a, .footer-col p{ display:block; font-size: 13px; margin-bottom: 12px; color: rgba(255,255,255,.75); }
.footer-col a:hover{ color:#fff; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  font-size: 11px; letter-spacing: .5px; color: rgba(255,255,255,.4);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{ padding: 190px 0 70px; }
.page-hero .eyebrow{ margin-bottom: 20px; }
.page-hero h1{ font-size: clamp(40px, 7vw, 80px); }

/* ---------- Shop grid page ---------- */
.shop-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  padding-bottom: 60px;
}
.shop-note{ text-align:center; max-width: 560px; margin: 0 auto 60px; color: var(--muted); line-height:1.8; }

/* ---------- Campaigns page ---------- */
.campaign-block{ margin-bottom: 130px; }
.campaign-cover{ position:relative; aspect-ratio: 16/8.2; overflow:hidden; margin-bottom: var(--gap); }
.campaign-cover img{ width:100%; height:100%; object-fit:cover; }
.campaign-cover .campaign-label{
  position:absolute; left: var(--gap); bottom: 28px; color:#fff;
}
.campaign-label .eyebrow{ color: rgba(255,255,255,.75); margin-bottom: 10px; }
.campaign-label h2{ color:#fff; font-size: clamp(30px, 5vw, 52px); }
.campaign-strip{ display:grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.campaign-strip img{ width:100%; aspect-ratio: 4/5; object-fit:cover; }

/* ---------- About / Fabrics long-form ---------- */
.prose-section{ max-width: 760px; margin: 0 auto; }
.prose-section .eyebrow{ margin-bottom: 18px; }
.prose-section h2{ font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 26px; }
.prose-section p{ font-size: 17px; line-height: 1.9; color: var(--ink-soft); margin-bottom: 22px; }
.prose-section blockquote{
  font-family: var(--serif); font-style: italic; font-size: 26px; line-height:1.5;
  margin: 50px 0; padding-left: 26px; border-left: 1px solid var(--ink);
}
.pillars{ display:grid; grid-template-columns: 1fr; gap: 0; max-width: 820px; margin: 0 auto; }
.pillar{ display:grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 34px 0; border-top: 1px solid var(--line); }
.pillar:last-child{ border-bottom: 1px solid var(--line); }
.pillar .num{ font-family: var(--serif); font-size: 30px; color: var(--muted); }
.pillar h3{ font-family: var(--serif); font-size: 24px; margin-bottom: 10px; }
.pillar p{ color: var(--muted); font-size: 15px; line-height: 1.8; margin:0; }

.materials-list{ display:flex; flex-direction:column; gap: 90px; }
.material-row{ display:grid; grid-template-columns: 1fr 1.2fr; gap: var(--gap); align-items:center; }
.material-row:nth-child(even) .material-row-media{ order:2; }
.material-row-media{ aspect-ratio: 4/5; overflow:hidden; }
.material-row-media img{ width:100%; height:100%; object-fit:cover; }
.material-row .num{ font-family: var(--serif); font-size:22px; color: var(--muted); }
.material-row h3{ font-size: clamp(26px,3vw,36px); margin: 8px 0 10px; }
.material-tags{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 18px; }
.material-tags span{ font-size: 10px; letter-spacing: 1px; text-transform:uppercase; border:1px solid var(--line); padding: 7px 12px; color: var(--muted); }
.material-origin{ font-size: 11px; letter-spacing: 1.5px; text-transform:uppercase; color: var(--muted); margin-bottom: 14px; }

.process-strip{ display:grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); margin-top: 90px; text-align:center; }
.process-strip .num{ font-family: var(--serif); font-size: 26px; color: var(--muted); display:block; margin-bottom: 14px; }
.process-strip h4{ font-family: var(--serif); font-weight:400; font-size:20px; margin-bottom: 12px; }
.process-strip p{ color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ---------- Contact page ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1.2fr; gap: calc(var(--gap) * 1.4); }
.contact-list h4{ font-size: 11px; letter-spacing: 2px; text-transform:uppercase; color: var(--muted); margin: 0 0 8px; font-weight:400; }
.contact-list .item{ margin-bottom: 38px; }
.contact-list a, .contact-list p{ font-family: var(--serif); font-size: 22px; margin:0; }
.contact-list p.small{ font-family: var(--sans); font-size: 14px; color: var(--ink-soft); line-height:1.6; }

.form-row{ margin-bottom: 26px; }
.form-row label{ display:block; font-size: 11px; letter-spacing: 1.5px; text-transform:uppercase; color: var(--muted); margin-bottom: 10px; }
.form-row input, .form-row textarea{
  width:100%; border:none; border-bottom: 1px solid var(--line);
  background:transparent; font-family: var(--sans); font-size: 15px; color: var(--ink);
  padding: 10px 2px; resize: vertical;
}
.form-row input:focus, .form-row textarea:focus{ outline:none; border-color: var(--ink); }
.form-note{ font-size: 12px; color: var(--muted); margin-top: -8px; margin-bottom: 30px; }

/* ---------- Cookie banner ---------- */
.cookie-banner{
  position:fixed; left: 20px; right:20px; bottom: 20px; z-index: 200;
  background: var(--ink); color: rgba(255,255,255,.85);
  padding: 22px 26px; display:flex; align-items:center; justify-content:space-between; gap: 30px;
  max-width: 1000px; margin: 0 auto; font-size: 13px; line-height:1.6;
  transform: translateY(140%); transition: transform .5s cubic-bezier(.7,0,.2,1);
}
.cookie-banner.show{ transform: translateY(0); }
.cookie-actions{ display:flex; gap: 12px; flex-shrink:0; }
.cookie-actions button{ font-size: 11px; letter-spacing:1.5px; text-transform:uppercase; padding: 12px 20px; border:1px solid rgba(255,255,255,.4); background:none; color:#fff; }
.cookie-actions button.accept{ background:#fff; color: var(--ink); border-color:#fff; }

/* ---------- Reveal ---------- */
.reveal{ opacity:0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ---------- Shop: section heads ---------- */
.shop-section-head{
  display:flex; align-items:baseline; gap: 24px;
  margin: 0 0 34px;
}
.shop-section-head h2{
  font-family: var(--sans); font-weight:400; font-size: 12px; letter-spacing: 3px; text-transform:uppercase;
  white-space:nowrap;
}
.shop-section-head .rule{ flex:1; height:1px; background: var(--line); }
.shop-section-note{ color: var(--muted); font-size: 14px; line-height:1.7; max-width: 560px; margin: -14px 0 34px; }
.shop-block{ margin-bottom: 90px; }
.shop-block:last-child{ margin-bottom: 0; }

/* ---------- Shop: featured (Available Now) grid ---------- */
.shop-grid-featured{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

/* ---------- Product card badges / states ---------- */
.product-card{ position:relative; }
.badge-production{
  position:absolute; top:14px; left:14px; z-index:2;
  font-size: 10px; letter-spacing: 1.5px; text-transform:uppercase;
  background: var(--bg); color: var(--ink);
  padding: 7px 12px; border: 1px solid var(--line);
}
.view-more{
  position:absolute; inset:0; z-index:2;
  display:flex; align-items:center; justify-content:center;
  background: rgba(10,10,10,.32);
  opacity:0; transition: opacity .35s ease;
  color:#fff; font-size: 11px; letter-spacing: 2px; text-transform:uppercase;
}
.product-card:hover .view-more{ opacity:1; }

/* ---------- Placeholder product media (no confirmed photo yet) ---------- */
.product-media.placeholder{
  display:flex; align-items:center; justify-content:center; text-align:center;
  background: linear-gradient(155deg, var(--cream) 0%, #ece5db 100%);
  padding: 24px;
}
.product-media.placeholder .ph-label{
  font-family: var(--serif); font-size: 22px; color: var(--ink-soft);
}
.product-media.placeholder .ph-note{
  display:block; margin-top: 10px; font-family: var(--sans); font-size: 10px; letter-spacing: 1.5px; text-transform:uppercase; color: var(--muted);
}

/* ---------- Product detail page ---------- */
.breadcrumb{
  font-size: 11px; letter-spacing: 1px; text-transform:uppercase; color: var(--muted);
}
.breadcrumb a{ color: var(--muted); }
.breadcrumb a:hover{ color: var(--ink); }
.breadcrumb span{ margin: 0 8px; }

.pdp{ display:grid; grid-template-columns: 1.1fr 1fr; gap: calc(var(--gap) * 1.4); align-items:flex-start; }
.pdp-gallery-main{ aspect-ratio: 4/5; overflow:hidden; background:#ece5db; }
.pdp-gallery-main img{ width:100%; height:100%; object-fit:cover; }
.pdp-gallery-main.placeholder{
  display:flex; align-items:center; justify-content:center; text-align:center;
  background: linear-gradient(155deg, var(--cream) 0%, #ece5db 100%);
}
.pdp-gallery-main.placeholder .ph-label{ font-family: var(--serif); font-size: 30px; color: var(--ink-soft); }
.pdp-gallery-main.placeholder .ph-note{ display:block; margin-top: 12px; font-size: 10px; letter-spacing: 1.5px; text-transform:uppercase; color: var(--muted); }
.pdp-thumbs{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.pdp-thumbs button{ padding:0; border: 1px solid transparent; background:none; aspect-ratio: 4/5; overflow:hidden; }
.pdp-thumbs button.active{ border-color: var(--ink); }
.pdp-thumbs img{ width:100%; height:100%; object-fit:cover; display:block; }

.pdp-info{ position: sticky; top: 120px; }
.pdp-info .eyebrow{ margin-bottom: 16px; }
.pdp-info h1{ font-size: clamp(32px, 3.4vw, 44px); margin-bottom: 12px; }
.pdp-material{ font-size: 12px; letter-spacing: 1px; text-transform:uppercase; color: var(--muted); margin-bottom: 26px; }
.pdp-description{ font-size: 16px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 34px; max-width: 460px; }

.size-label{ font-size: 11px; letter-spacing: 1.5px; text-transform:uppercase; color: var(--muted); margin-bottom: 14px; }
.size-pills{ display:flex; gap: 10px; margin-bottom: 30px; }
.size-pills button{
  display:flex; align-items:center; justify-content:center;
  width: 44px; height: 44px; border: 1px solid var(--line);
  background: transparent;
  font-family: var(--sans); font-size: 12px; letter-spacing: .5px; color: var(--ink-soft);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.size-pills button:hover{ border-color: var(--ink); }
.size-pills button.selected{ background: var(--ink); border-color: var(--ink); color: #fff; }

.pdp-note{ font-size: 12px; color: var(--muted); margin-top: 14px; }

.accordion{ margin-top: 50px; border-top: 1px solid var(--line); }
.accordion-item{ border-bottom: 1px solid var(--line); }
.accordion-trigger{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding: 20px 0; background:none; border:none; text-align:left;
  font-family: var(--sans); font-size: 12px; letter-spacing: 1.5px; text-transform:uppercase; color: var(--ink);
}
.accordion-trigger .icon{ font-size: 16px; font-weight:300; transition: transform .3s ease; }
.accordion-item.open .accordion-trigger .icon{ transform: rotate(45deg); }
.accordion-panel{ max-height:0; overflow:hidden; transition: max-height .35s ease; }
.accordion-item.open .accordion-panel{ max-height: 600px; }
.accordion-panel-inner{ padding: 0 0 24px; font-size: 14px; line-height: 1.8; color: var(--muted); }
.accordion-panel-inner ul{ margin:0; padding:0; }
.accordion-panel-inner li{ padding-left: 16px; position:relative; margin-bottom: 8px; }
.accordion-panel-inner li::before{ content:'—'; position:absolute; left:0; color: var(--line); }
.fabric-table{ width:100%; border-collapse: collapse; }
.fabric-table tr{ border-bottom: 1px solid var(--line-soft); }
.fabric-table tr:last-child{ border-bottom:none; }
.fabric-table td{ padding: 10px 0; font-size: 14px; }
.fabric-table td:first-child{ color: var(--muted); width: 40%; }
.fabric-table td:last-child{ color: var(--ink-soft); }

.pdp-campaign{ margin-top: 90px; }
.pdp-back{ text-align:center; margin-top: 90px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .nav-main, .header-right .lang{ display:none; }
  .burger{ display:flex; }
  .split, .material, .material-row, .contact-grid{ grid-template-columns: 1fr; }
  .material-row-media{ order: 1 !important; }
  .split-media{ min-height: 380px; }
  .product-grid{ grid-template-columns: repeat(2,1fr); }
  .shop-grid{ grid-template-columns: repeat(2,1fr); }
  .diary-grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .campaign-strip{ grid-template-columns: 1fr; }
  .process-strip{ grid-template-columns: 1fr; gap: 40px; }
  section{ padding: 80px 0; }
  .shop-grid-featured{ grid-template-columns: repeat(2,1fr); }
  .pdp{ grid-template-columns: 1fr; }
  .pdp-info{ position:static; }
}
@media (max-width: 560px){
  .product-grid, .shop-grid{ grid-template-columns: 1fr; }
  .shop-grid-featured{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction:column; gap:10px; text-align:center; }
  .hero-content{ flex-direction:column; align-items:flex-start; gap: 20px; }
  .hero-side{ text-align:left; }
  .pdp-thumbs{ grid-template-columns: repeat(4,1fr); }
}
