/* ============================================================
   CROMATIQ — bijuterii artizanale
   Design system + components. Built from the Claude Design
   handoff (1280px desktop mockups), made responsive.
   ============================================================ */

:root {
  /* Surfaces */
  --cream:      #F7F2EA;   /* page background */
  --band:       #EFE7D8;   /* light section band */
  --card:       #ECE4D6;   /* product image background */
  --ink:        #262220;   /* near-black, dark sections */
  --ink-2:      #2B2620;   /* outline-button border */

  /* Text */
  --text:       #262220;
  --text-soft:  #3A352F;
  --muted:      #6B6258;
  --muted-2:    #8A8074;
  --muted-3:    #9A9082;

  /* Accents */
  --green:      #235C43;
  --mint:       #9AD9BC;

  /* On-dark text */
  --on-dark:        #EFE7D8;
  --on-dark-muted:  #C4BAAB;
  --on-dark-soft:   #D9D0C2;
  --topbar:         #E6DDCD;

  /* Borders */
  --border:     #E2D8C6;
  --border-2:   #C9BCA4;
  --border-3:   #DCD0BC;
  --border-4:   #CDBFA8;

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --maxw: 1280px;
  --gutter: 48px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  width: 100%;
  overflow-x: hidden;
}

::selection { background: var(--green); color: var(--cream); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.serif  { font-family: var(--serif); }
.italic { font-style: italic; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--topbar);
  text-align: center;
  padding: 9px 20px;
  font-size: 11.5px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- Header / nav ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px var(--gutter);
  position: relative;
}
.logo img {
  height: 46px;
  width: auto;
  mix-blend-mode: multiply;
}
.main-nav {
  display: flex;
  gap: 38px;
  align-items: center;
}
.main-nav a {
  font-size: 12.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-soft);
  transition: color .25s ease;
}
.main-nav a:hover { color: var(--green); }
.main-nav a.is-active { font-weight: 700; color: var(--green); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 150px;
  justify-content: flex-end;
}
.header-actions .icon { cursor: pointer; display: block; }
.header-actions .icon svg { display: block; }
.cart { position: relative; cursor: pointer; display: block; }
.cart-badge {
  position: absolute;
  top: -5px; right: -7px;
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all .35s ease;
  font-family: var(--sans);
}
.btn svg { flex: none; }

.btn-outline-dark {
  border: 1px solid var(--ink-2);
  padding: 17px 32px;
  color: var(--text);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--ink); color: var(--cream); }

.btn-outline-light {
  border: 1px solid rgba(247,242,234,0.7);
  padding: 15px 30px;
  color: var(--cream);
  background: transparent;
}
.btn-outline-light:hover { background: var(--cream); color: var(--text); border-color: var(--cream); }

.btn-solid-cream {
  background: var(--cream);
  color: var(--text);
  border: none;
  padding: 16px 36px;
  font-weight: 700;
  transition: background .3s ease;
}
.btn-solid-cream:hover { background: var(--mint); }

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  top: 0; right: 0;
  width: 53%;
  height: 100%;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 22%;
}
.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,#F7F2EA 0%,rgba(247,242,234,0.55) 12%,rgba(247,242,234,0) 30%);
}
.hero-caption {
  position: absolute;
  right: 34px; bottom: 30px;
  text-align: right;
}
.hero-caption .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  color: var(--cream);
  text-shadow: 0 1px 14px rgba(28,24,20,0.5);
}
.hero-caption .meta {
  font-size: 10px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: #EFE7D8;
  font-weight: 600;
  margin-top: 4px;
  text-shadow: 0 1px 10px rgba(28,24,20,0.6);
}
.hero-inner { position: relative; }
.hero-copy { max-width: 500px; }
.hero-copy h1 {
  font-size: 88px;
  line-height: 0.98;
  letter-spacing: -1px;
  color: var(--text);
}
.hero-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 32px 0 42px;
  max-width: 380px;
}

/* ---------- Section heading row ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.featured { padding: 8px var(--gutter) 110px; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 46px;
  flex-wrap: wrap;
  gap: 18px;
}
.section-head h2 { font-size: 46px; line-height: 1; color: var(--text); }
.link-underline {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 5px;
  transition: color .25s ease, border-color .25s ease;
}
.link-underline:hover { border-color: var(--green); color: var(--green); }

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card { display: block; color: inherit; cursor: pointer; }
.product-card .thumb {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border-radius: 3px;
}
.product-card .thumb img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .thumb img { transform: scale(1.05); }
.product-card .meta {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.product-card h3 { font-weight: 500; font-size: 22px; color: var(--text); line-height: 1.1; }
.product-card .sub { font-size: 12.5px; color: var(--muted-2); margin-top: 5px; letter-spacing: .3px; }
.product-card .price { font-family: var(--serif); font-size: 20px; color: var(--text); white-space: nowrap; }

/* Homepage featured cards are a touch larger + staggered */
.featured .product-card .thumb img { aspect-ratio: 1 / 1.04; }
.featured .product-card h3 { font-size: 23px; }
.featured .product-card .price { font-size: 21px; }
.featured .product-card.stagger { margin-top: 52px; }

/* Related (product page) cards */
.related .product-card .thumb img { aspect-ratio: 1 / 1.04; }

/* ---------- Story strip ---------- */
.story {
  background: var(--band);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.story-media { position: relative; min-height: 580px; }
.story-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}
.story-copy {
  display: flex;
  align-items: center;
  padding: 96px 7vw 96px 84px;
}
.story-copy .inner { max-width: 440px; }
.story-copy h2 { font-size: 50px; line-height: 1.04; color: var(--text); letter-spacing: -0.3px; }
.story-copy p { font-size: 16px; line-height: 1.75; color: var(--muted); margin: 28px 0 18px; }
.story-copy .quote { font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--green); }

/* ---------- Collection band ---------- */
.band {
  position: relative;
  width: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.band > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}
.band-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(28,24,20,0.74) 0%,rgba(28,24,20,0.5) 38%,rgba(28,24,20,0.06) 72%);
}
.band-inner { position: relative; }
.band-copy { max-width: 430px; }
.band-copy h2 { font-size: 52px; line-height: 1.05; color: var(--cream); letter-spacing: -0.3px; }
.band-copy p { font-size: 15.5px; line-height: 1.7; color: var(--on-dark-soft); margin: 24px 0 36px; max-width: 360px; }

/* ---------- Contact ---------- */
.contact {
  background: var(--ink);
  color: var(--on-dark);
  width: 100%;
  scroll-margin-top: 20px;
}
.contact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 104px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.contact h2 { font-size: 54px; line-height: 1.02; color: var(--cream); }
.contact .lead { font-size: 16px; line-height: 1.7; color: var(--on-dark-muted); margin: 24px 0 46px; max-width: 400px; }
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
  max-width: 440px;
}
.label {
  font-size: 10.5px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 600;
  margin-bottom: 9px;
}
.contact-details a,
.contact-details .val { font-size: 15px; color: var(--on-dark); line-height: 1.5; transition: color .25s ease; }
.contact-details a:hover { color: var(--mint); }
.contact-socials { display: flex; gap: 26px; margin-top: 44px; }
.contact-socials a {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  transition: color .25s ease;
}
.contact-socials a:hover { color: var(--cream); }

.contact-form { display: flex; flex-direction: column; gap: 26px; }
.field label { display: block; margin-bottom: 10px; }
.field label { font-size: 10.5px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--mint); font-weight: 600; }
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(239,231,216,0.28);
  padding: 11px 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
  transition: border-color .25s ease;
}
.field textarea { resize: none; }
.field input:focus,
.field textarea:focus { border-bottom-color: var(--mint); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(239,231,216,0.45); }
.form-note {
  font-size: 13px;
  color: var(--mint);
  margin-top: 4px;
  min-height: 16px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--cream); border-top: 1px solid var(--border); }
.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px var(--gutter) 30px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
}
.footer-brand img { height: 38px; width: auto; mix-blend-mode: multiply; margin-bottom: 20px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: var(--muted-2); max-width: 250px; }
.footer-col .col-title {
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col .links { display: flex; flex-direction: column; gap: 11px; }
.footer-col .links a { font-size: 13.5px; color: var(--muted); transition: color .25s ease; }
.footer-col .links a:hover { color: var(--green); }
.footer-news p { font-size: 13.5px; color: var(--muted-2); margin-bottom: 16px; line-height: 1.6; }
.news-form {
  display: flex;
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 9px;
  max-width: 260px;
}
.news-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--text);
  outline: none;
}
.news-form button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green);
}
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--gutter) 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom .copy { font-size: 12px; color: var(--muted-3); letter-spacing: .4px; }
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom .legal a { font-size: 12px; color: var(--muted-3); letter-spacing: 1px; transition: color .25s ease; }
.footer-bottom .legal a:hover { color: var(--green); }
.footer-spacer { padding-bottom: 34px; }

/* ============================================================
   Page-specific blocks
   ============================================================ */

/* Breadcrumb */
.breadcrumb { font-size: 12px; letter-spacing: 1px; color: var(--muted-3); }
.breadcrumb .sep { color: var(--border-2); }
.breadcrumb a { transition: color .25s ease; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .current { color: var(--muted); }

/* Shop — page title + filters */
.page-title { padding: 48px var(--gutter) 30px; }
.page-title .breadcrumb { margin-bottom: 20px; }
.page-title h1 { font-size: 66px; line-height: 1; letter-spacing: -0.5px; color: var(--text); }
.page-title p { font-size: 16px; line-height: 1.7; color: var(--muted); margin-top: 18px; max-width: 460px; }

.filter-bar { padding: 14px var(--gutter) 34px; }
.filter-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 22px;
}
.filters { display: flex; gap: 28px; flex-wrap: wrap; }
.filters a {
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted-2);
  padding-bottom: 6px;
  transition: color .25s ease;
}
.filters a:hover { color: var(--text); }
.filters a.is-active { font-weight: 700; color: var(--green); border-bottom: 1px solid var(--green); }
.sort { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); cursor: pointer; }
.sort b { color: var(--text); font-weight: 600; }

/* Product detail */
.product { padding: 34px var(--gutter) 96px; }
.product .breadcrumb { margin-bottom: 30px; }
.product-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}
.gallery { display: flex; gap: 18px; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 14px; flex: none; width: 84px; }
.gallery-thumbs .gt {
  cursor: pointer;
  background: var(--card);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border-3);
  padding: 0;
  transition: border-color .25s ease;
}
.gallery-thumbs .gt.is-active { border-color: var(--green); }
.gallery-thumbs .gt img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.gallery-main { flex: 1; background: var(--card); border-radius: 3px; overflow: hidden; }
.gallery-main img { width: 100%; aspect-ratio: 1 / 1.12; object-fit: cover; }

.product-info { padding-top: 6px; }
.badge {
  display: inline-block;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 2px;
  margin-bottom: 22px;
}
.product-info h1 { font-size: 54px; line-height: 1.02; letter-spacing: -0.5px; color: var(--text); }
.product-info .price { font-family: var(--serif); font-size: 30px; color: var(--text); margin: 18px 0 26px; }
.product-info .desc { font-size: 15.5px; line-height: 1.75; color: var(--muted); max-width: 440px; }
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  margin: 34px 0;
  max-width: 420px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.specs .label { font-size: 10.5px; letter-spacing: 2px; color: var(--muted-3); margin-bottom: 6px; }
.specs .val { font-size: 14.5px; color: var(--text-soft); }
.buy-row { display: flex; gap: 14px; align-items: stretch; max-width: 440px; }
.qty { display: flex; align-items: center; border: 1px solid var(--border-4); border-radius: 2px; }
.qty button { background: none; border: none; width: 44px; height: 54px; font-size: 18px; color: var(--muted); cursor: pointer; }
.qty .n { width: 34px; text-align: center; font-size: 15px; color: var(--text); }
.add-cart {
  flex: 1;
  background: var(--ink);
  color: var(--cream);
  border: none;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background .3s ease;
}
.add-cart:hover { background: var(--green); }
.fav {
  width: 54px;
  border: 1px solid var(--border-4);
  background: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s ease;
}
.fav:hover { border-color: var(--green); }
.fav.is-active svg { fill: var(--green); stroke: var(--green); }
.ship-note { display: flex; align-items: center; gap: 9px; margin-top: 22px; font-size: 13px; color: var(--green); }

.accordion { margin-top: 36px; border-top: 1px solid var(--border); }
.accordion .acc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  width: 100%;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  font-family: var(--sans);
}
.accordion .acc-head span:first-child {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text);
}
.accordion .acc-sign { color: var(--muted-3); font-size: 20px; line-height: 1; transition: transform .25s ease; }
.accordion .acc-item.open .acc-sign { transform: rotate(45deg); }
.accordion .acc-body {
  display: none;
  padding: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 460px;
}
.accordion .acc-item.open .acc-body { display: block; }

.related { padding: 0 var(--gutter) 110px; }
.related h2 { font-size: 40px; color: var(--text); margin-bottom: 38px; }

/* Custom page */
.custom-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 50px var(--gutter) 92px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.custom-hero .copy { max-width: 470px; }
.custom-hero h1 { font-size: 72px; line-height: 1; letter-spacing: -0.8px; color: var(--text); }
.custom-hero p { font-size: 16.5px; line-height: 1.72; color: var(--muted); margin: 30px 0 40px; max-width: 400px; }
.custom-hero .media { overflow: hidden; border-radius: 3px; box-shadow: 0 30px 70px -34px rgba(58,46,30,0.42); }
.custom-hero .media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.process { background: var(--band); width: 100%; }
.process .inner { max-width: var(--maxw); margin: 0 auto; padding: 92px var(--gutter); }
.process h2 { font-size: 44px; color: var(--text); margin-bottom: 54px; text-align: center; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.step .num { font-family: var(--serif); font-size: 34px; color: var(--green); margin-bottom: 14px; }
.step h3 { font-weight: 500; font-size: 23px; color: var(--text); margin-bottom: 10px; }
.step p { font-size: 14px; line-height: 1.7; color: var(--muted); }

.pullquote { max-width: 900px; margin: 0 auto; padding: 96px var(--gutter); text-align: center; }
.pullquote p { font-family: var(--serif); font-style: italic; font-size: 34px; line-height: 1.4; color: var(--text); }
.pullquote .by { font-size: 11.5px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--green); font-weight: 600; margin-top: 26px; }

/* Despre page */
.intro { max-width: 840px; margin: 0 auto; padding: 74px var(--gutter) 70px; text-align: center; }
.eyebrow { font-size: 11.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--green); font-weight: 600; margin-bottom: 22px; }
.intro h1 { font-size: 60px; line-height: 1.06; letter-spacing: -0.5px; color: var(--text); }
.intro p { font-size: 17px; line-height: 1.75; color: var(--muted); margin: 28px auto 0; max-width: 600px; }
.image-band { width: 100%; height: 440px; overflow: hidden; }
.image-band img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
.story.despre .story-media { min-height: 560px; }
.story.despre .story-copy { padding: 90px 7vw 90px 84px; }
.story.despre .story-copy h2 { font-size: 46px; line-height: 1.06; }
.story.despre .story-copy p { margin: 26px 0 16px; }

.values { max-width: var(--maxw); margin: 0 auto; padding: 96px var(--gutter); }
.values .grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 54px; }
.value .num { font-family: var(--serif); font-size: 32px; color: var(--green); margin-bottom: 16px; }
.value h3 { font-weight: 500; font-size: 26px; color: var(--text); margin-bottom: 12px; }
.value p { font-size: 14.5px; line-height: 1.75; color: var(--muted); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1040px) {
  :root { --gutter: 32px; }
  .hero-copy h1 { font-size: 72px; }
  .contact-inner { gap: 56px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
}

@media (max-width: 860px) {
  /* mobile nav */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px var(--gutter);
    display: none;
    z-index: 40;
    box-shadow: 0 20px 40px -28px rgba(38,34,32,0.45);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--border); font-size: 13px; }
  .main-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
  .header-actions { min-width: 0; gap: 16px; }

  /* hero stacks */
  .hero { min-height: 0; display: block; padding-bottom: 8px; }
  .hero-media { position: relative; width: 100%; height: 56vw; max-height: 460px; }
  .hero-fade { background: linear-gradient(0deg,#F7F2EA 0%,rgba(247,242,234,0) 55%); }
  .hero-inner { padding-top: 40px; padding-bottom: 8px; }
  .hero-copy { max-width: none; }
  .hero-copy h1 { font-size: 60px; }
  .hero-copy p { max-width: none; }

  /* 3-col grids -> 2-col */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .featured .product-card.stagger { margin-top: 0; }
  .values .grid3 { grid-template-columns: 1fr; gap: 40px; }

  /* two-column sections stack */
  .story,
  .story.despre { grid-template-columns: 1fr; }
  .story-media,
  .story.despre .story-media { min-height: 360px; }
  .story-copy,
  .story.despre .story-copy { padding: 56px var(--gutter); }
  .story-copy h2 { font-size: 40px; }

  .band { min-height: 440px; }
  .band-fade { background: linear-gradient(90deg,rgba(28,24,20,0.78) 0%,rgba(28,24,20,0.45) 70%,rgba(28,24,20,0.2) 100%); }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact h2 { font-size: 44px; }

  .custom-hero { grid-template-columns: 1fr; gap: 40px; }
  .custom-hero .media { order: -1; }
  .custom-hero h1 { font-size: 58px; }

  .product-layout { grid-template-columns: 1fr; gap: 36px; }
  .gallery { flex-direction: column-reverse; }
  .gallery-thumbs { flex-direction: row; width: 100%; }
  .gallery-thumbs .gt { flex: 1; }
  .product-info h1 { font-size: 44px; }

  .page-title h1 { font-size: 52px; }
  .intro h1 { font-size: 48px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --gutter: 22px; }
  .topbar { font-size: 10px; letter-spacing: 1.6px; }
  .hero-copy h1 { font-size: 46px; }
  .section-head h2 { font-size: 36px; }
  .product-grid { grid-template-columns: 1fr; gap: 30px; }
  .steps { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .custom-hero h1 { font-size: 46px; }
  .product-info h1 { font-size: 36px; }
  .pullquote p { font-size: 26px; }
  .intro h1 { font-size: 38px; }
  .buy-row { flex-wrap: wrap; }
  .add-cart { padding: 16px; min-height: 54px; }
}
