/* ============================================================
   Brutăria Grama — Turda
   Paleta e luată din afișul lor: crem #F8EDDB, chihlimbar #ED9E05,
   cacao #3E2415. Verdele e din copertina brutăriei.
   ============================================================ */

:root {
  --cream: #f8edd9;
  --cream-soft: #fdf6e8;
  --paper: #fffcf4;
  --ink: #3e2415;
  --ink-deep: #2a170c;
  --ink-80: rgba(62, 36, 21, .82);
  --ink-70: rgba(62, 36, 21, .7);
  --ink-55: rgba(62, 36, 21, .55);
  --ink-30: rgba(62, 36, 21, .3);
  --line: rgba(62, 36, 21, .16);
  --amber: #ed9e05;
  --amber-deep: #c47c02;
  --amber-soft: rgba(237, 158, 5, .12);
  --wheat: #e8c583;
  --sage: #4c6a58;
  --shadow-sm: 0 10px 26px rgba(42, 23, 12, .1);
  --shadow-lg: 0 34px 74px rgba(42, 23, 12, .24);
  --sec: clamp(64px, 9vw, 132px);
  --container: 1220px;
  --edge: clamp(20px, 5vw, 60px);
  --r: 20px;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
h1, h2, h3, h4, p, figure, ul { margin: 0; }
ul { padding: 0; list-style: none; }
::selection { background: var(--amber); color: var(--ink-deep); }

.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--edge); }
.container-wide { max-width: 1500px; margin: 0 auto; padding-inline: var(--edge); }

/* ---------- tipografie ---------- */
.display {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.015em;
  line-height: 1.06;
  font-stretch: 100%;
}
h1.display { font-size: clamp(2.35rem, 5.4vw, 4.15rem); line-height: 1.08; text-wrap: balance; }
h2.display { font-size: clamp(1.85rem, 3.7vw, 2.95rem); line-height: 1.18; text-wrap: balance; }
h3.display { font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: 1.2; letter-spacing: -.01em; }

.script {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  color: var(--amber-deep);
  line-height: 1.1;
}

.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber-deep);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 1.5px; background: var(--amber);
}
.lead { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--ink-80); }
em { font-style: italic; color: var(--amber-deep); }

/* ---------- butoane ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: .92rem;
  padding: 1.02em 1.75em; border-radius: 999px; white-space: nowrap;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, background .25s, color .25s, border-color .25s;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-primary { background: var(--ink); color: var(--cream-soft); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--ink-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-amber { background: var(--amber); color: var(--ink-deep); box-shadow: var(--shadow-sm); }
.btn-amber:hover { background: var(--amber-deep); color: var(--cream-soft); transform: translateY(-2px); }
.btn-ghost { border: 1.6px solid var(--ink-30); }
.btn-ghost:hover { background: var(--ink); color: var(--cream-soft); border-color: var(--ink); }
.btn-light { background: var(--cream-soft); color: var(--ink); }
.btn-light:hover { background: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* ---------- semnătura casei: ștampila ---------- */
.stamp {
  width: 172px; height: 172px; border-radius: 50%;
  background: var(--amber);
  color: var(--ink-deep);
  display: grid; place-content: center; text-align: center;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(42, 23, 12, .22);
  position: relative;
  transform: rotate(-9deg);
}
.stamp::after {
  content: ''; position: absolute; inset: 9px; border-radius: 50%;
  border: 1.6px dashed rgba(62, 36, 21, .45);
}
.stamp span {
  font-family: 'Caveat', cursive; font-weight: 700;
  font-size: 1.32rem; line-height: 1.12; display: block;
}
.stamp small { display: block; margin-top: 6px; font-size: 1.05rem; font-family: 'Caveat', cursive; }
.stamp-sm { width: 128px; height: 128px; padding: 14px; }
.stamp-sm span { font-size: 1.02rem; }

/* ---------- spicul: separator ---------- */
.wheat-rule {
  display: flex; align-items: center; gap: 16px; color: var(--amber);
}
.wheat-rule::before, .wheat-rule::after {
  content: ''; height: 1.5px; flex: 1;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
}
.wheat-rule svg { width: 34px; height: 34px; flex-shrink: 0; }
.wheat-rule-left::before { display: none; }
.wheat-rule-left::after { max-width: 180px; }

/* ---------- navigație ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 60; padding-block: 18px;
  transition: padding .35s, background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding-block: 10px; background: rgba(248, 237, 217, .9);
  backdrop-filter: blur(14px); border-color: var(--line);
  box-shadow: 0 10px 30px rgba(42, 23, 12, .07);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.nav-logo img { height: 52px; width: auto; transition: height .35s; }
.nav.is-scrolled .nav-logo img { height: 42px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: .93rem; font-weight: 500; position: relative; padding-block: 4px; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--amber); transform: scaleX(0); transform-origin: right;
  transition: transform .32s ease;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.is-current::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: .9rem;
  display: inline-flex; align-items: center; gap: .45em;
}
.nav-phone svg { width: 15px; height: 15px; color: var(--amber-deep); }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; }
.hamburger span { height: 2px; background: var(--ink); border-radius: 2px; }

.mobile-nav {
  position: fixed; inset: 0; background: var(--cream); z-index: 90;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
  padding: var(--edge); transform: translateY(-101%);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav-close { position: absolute; top: 18px; right: var(--edge); font-size: 2.1rem; line-height: 1; }
.mobile-nav img { height: 58px; width: auto; align-self: flex-start; margin-bottom: 4px; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav nav a {
  font-family: 'Archivo', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 2rem; line-height: 1.14; letter-spacing: -.02em;
}
.mobile-nav .btn { align-self: flex-start; }
.mobile-nav-foot { display: flex; flex-direction: column; gap: 6px; color: var(--ink-70); font-size: .92rem; }
.scrim {
  position: fixed; inset: 0; background: rgba(42, 23, 12, .5); z-index: 70;
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.scrim.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; background: var(--cream); z-index: 1000;
  display: grid; place-content: center; justify-items: center; gap: 16px;
  transition: opacity .65s, visibility .65s;
}
.loader img { height: 82px; width: auto; animation: bob 1.5s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.loader p {
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: .7rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-55);
}
.loader.is-hidden { opacity: 0; visibility: hidden; }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: 106px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 4vw, 60px);
  align-items: center; padding-block: clamp(30px, 5vw, 70px) clamp(46px, 6vw, 84px);
}
.hero-kicker { margin-bottom: 20px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .amberline { color: var(--amber-deep); display: block; }
.hero-sub { max-width: 46ch; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-media { position: relative; }
.hero-media-frame {
  border-radius: 240px 240px 26px 26px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.5;
}
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-stamp { position: absolute; left: -46px; bottom: 34px; z-index: 3; }
.hero-since {
  position: absolute; right: -10px; top: 26px; z-index: 3;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow-sm); text-align: center;
  transform: rotate(4deg);
}
.hero-since strong { font-family: 'Archivo', sans-serif; font-size: 1.7rem; display: block; line-height: 1; letter-spacing: -.01em; }
.hero-since span { display: block; font-size: .62rem; line-height: 1.5; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-55); margin-bottom: 2px; }

/* ---------- banda cu marchiză ---------- */
.crumb-trail {
  background: var(--ink); color: var(--cream-soft); padding-block: 15px;
  overflow: hidden; white-space: nowrap;
}
.crumb-track { display: inline-flex; gap: 44px; animation: crawl 34s linear infinite; padding-right: 44px; }
.crumb-track span {
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: .82rem;
  letter-spacing: .17em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 44px;
}
.crumb-track span::after { content: '✻'; color: var(--amber); font-size: 1rem; letter-spacing: 0; }
@keyframes crawl { to { transform: translateX(-50%); } }

/* ---------- piloni ---------- */
.pillars { padding-block: var(--sec); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); margin-top: 44px; }
.pillar { text-align: left; }
.pillar-chip {
  width: 60px; height: 60px; border-radius: 50%; background: var(--amber);
  display: grid; place-content: center; margin-bottom: 18px; color: var(--ink-deep);
}
.pillar-chip svg { width: 30px; height: 30px; }
.pillar h3 { margin-bottom: 8px; }
.pillar p { color: var(--ink-70); font-size: .97rem; }

/* ---------- capul de secțiune ---------- */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 26px; flex-wrap: wrap; margin-bottom: 38px; }
.sec-head-text { max-width: 58ch; flex: 1 1 480px; }
.sec-head .eyebrow { margin-bottom: 14px; }
.sec-head h2 { margin-bottom: 12px; }

/* ---------- carduri de produs ---------- */
.grid-produse {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
}
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .38s cubic-bezier(.2,.8,.2,1), box-shadow .38s, border-color .38s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.card:hover .card-media img { transform: scale(1.06); }
.card-unit {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(253, 246, 232, .93); backdrop-filter: blur(4px);
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .48em .82em; border-radius: 999px;
}
.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.card-body h3 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.06rem; line-height: 1.2; }
.card-note { font-size: .9rem; color: var(--ink-70); flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: .64rem;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--amber); color: var(--amber-deep);
  padding: .34em .68em; border-radius: 999px;
}
.price-tag {
  font-family: 'Caveat', cursive; font-weight: 700; font-size: 1.34rem;
  color: var(--ink); background: var(--amber-soft);
  border: 1.4px dashed var(--amber); border-radius: 10px;
  padding: .1em .6em; line-height: 1.3; white-space: nowrap;
}
.card-ask { font-size: .82rem; color: var(--ink-55); }

/* ---------- filtre ---------- */
.filtre { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.filtru {
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: .84rem;
  padding: .62em 1.15em; border-radius: 999px; border: 1.4px solid var(--ink-30);
  transition: background .25s, color .25s, border-color .25s;
}
.filtru:hover { border-color: var(--ink); }
.filtru.is-on { background: var(--ink); color: var(--cream-soft); border-color: var(--ink); }
.filtru-count { opacity: .55; margin-left: .4em; font-size: .8em; }

/* ---------- banda cuptorului ---------- */
.oven {
  position: relative; color: var(--cream-soft); overflow: hidden;
  margin-block: var(--sec);
}
.oven-media { position: absolute; inset: 0; }
.oven-media img { width: 100%; height: 100%; object-fit: cover; }
.oven-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(30, 16, 8, .93) 0%, rgba(30, 16, 8, .8) 42%, rgba(30, 16, 8, .35) 100%);
}
.oven-inner { position: relative; z-index: 2; padding-block: clamp(64px, 9vw, 128px); }
.oven-inner h2 { max-width: 22ch; }
.oven-inner p { max-width: 54ch; }
.oven-quote { max-width: 24ch; }
.oven-inner .eyebrow { color: var(--wheat); }
.oven-inner .eyebrow::before { background: var(--wheat); }
.oven-inner h2 { margin-block: 14px 18px; }
.oven-inner p { color: rgba(253, 246, 232, .84); }
.oven-quote {
  font-family: 'Caveat', cursive; font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--wheat); margin-top: 26px; line-height: 1.25;
}

/* ---------- program ---------- */
.hours { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; margin-top: 34px; }
.hours-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 22px 24px;
}
.hours-card .h-lbl { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-55); }
.hours-card .h-val { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.6rem; margin-top: 6px; line-height: 1.1; }
.hours-card .h-note { font-size: .88rem; color: var(--ink-70); margin-top: 8px; }
.hours-live {
  display: inline-flex; align-items: center; gap: .5em; margin-top: 12px;
  font-size: .82rem; font-weight: 600;
}
.hours-live::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
.hours-live.is-closed::before { background: #b4542c; }

/* ---------- premiul ---------- */
.award {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.award-media { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); }
.award-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.award-list { display: grid; gap: 14px; margin-top: 24px; }
.award-item {
  display: flex; gap: 14px; align-items: flex-start;
  border-left: 3px solid var(--amber); padding-left: 16px;
}
.award-item strong { font-family: 'Archivo', sans-serif; font-weight: 700; display: block; }
.award-item span { font-size: .92rem; color: var(--ink-70); }

/* ---------- galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery figure { overflow: hidden; border-radius: 14px; margin: 0; }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.gallery figure:hover img { transform: scale(1.08); }
.gallery .tall { grid-row: span 2; }
.gallery .tall img { aspect-ratio: 1 / 2.06; }

/* ---------- unde ne găsești ---------- */
.find-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3.4vw, 46px); align-items: start; }
.find-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden;
}
.find-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.find-card-body { padding: 24px; }
.find-card-body h3 { margin-bottom: 8px; }
.find-rows { display: grid; gap: 14px; margin-top: 18px; }
.find-row { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; }
.find-row svg { width: 19px; height: 19px; color: var(--amber-deep); flex-shrink: 0; margin-top: 3px; }
.map-frame { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; filter: sepia(.18) saturate(.92); }

/* ---------- fișa de comandă ---------- */
.sheet {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(22px, 3.6vw, 40px); box-shadow: var(--shadow-sm); position: relative;
}
.sheet::before {
  content: ''; position: absolute; inset: 10px 10px auto; height: 3px;
  background: repeating-linear-gradient(90deg, var(--amber) 0 14px, transparent 14px 26px);
  opacity: .5;
}
.sheet-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; margin-bottom: 26px; flex-wrap: wrap; }
.sheet-no { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-55); }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.f-row { display: flex; flex-direction: column; gap: 7px; }
.f-row.full { grid-column: 1 / -1; }
.f-row > label { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-70); }
.f-row input, .f-row textarea, .f-row select {
  background: transparent; border: 0; border-bottom: 1.6px dashed var(--ink-30);
  padding: 9px 2px; font-size: 1rem; transition: border-color .25s;
}
.f-row input:focus, .f-row textarea:focus, .f-row select:focus { outline: none; border-bottom-color: var(--amber); border-bottom-style: solid; }
.f-row textarea { resize: vertical; min-height: 92px; }
.f-row select { border: 1.6px dashed var(--ink-30); border-radius: 10px; padding: 11px 10px; }
.f-hint { font-size: .82rem; color: var(--ink-55); }

.sheet-summary {
  margin-top: 26px; border-top: 1.6px dashed var(--ink-30); padding-top: 20px;
  display: flex; justify-content: space-between; gap: 18px; align-items: flex-end; flex-wrap: wrap;
}
.sheet-summary p { font-size: .88rem; color: var(--ink-70); max-width: 42ch; }
.sheet-err { color: #a5401f; font-size: .88rem; margin-top: 10px; }

.chip-days { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-day {
  border: 1.4px solid var(--ink-30); border-radius: 999px; padding: .5em 1em;
  font-size: .86rem; font-weight: 500; transition: background .2s, color .2s, border-color .2s;
}
.chip-day.is-on { background: var(--amber); border-color: var(--amber); color: var(--ink-deep); font-weight: 600; }

/* ---------- povestea ---------- */
.story-head { padding-top: 130px; padding-bottom: var(--sec); }
.story-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 60px); align-items: start; }
.story-text p + p { margin-top: 1.05em; }
.story-text p { color: var(--ink-80); }
.story-pull {
  font-family: 'Caveat', cursive; font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: var(--amber-deep); line-height: 1.2; margin-block: 26px;
  border-left: 3px solid var(--amber); padding-left: 20px;
}
.story-figs { display: grid; gap: 14px; position: sticky; top: 96px; }
.story-figs figure { margin: 0; border-radius: var(--r); overflow: hidden; }
.story-figs img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.timeline { display: grid; gap: 0; margin-top: 42px; }
.tl-item { display: grid; grid-template-columns: 116px 1fr; gap: 22px; padding-block: 22px; border-top: 1px solid var(--line); }
.tl-year { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--amber-deep); line-height: 1; }
.tl-body h3 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 5px; }
.tl-body p { color: var(--ink-70); font-size: .96rem; }

/* ---------- pagină simplă ---------- */
.page-head { padding-top: 128px; padding-bottom: 34px; }
.page-head .eyebrow { margin-bottom: 14px; }
.page-head p { max-width: 62ch; margin-top: 14px; }

/* ---------- CTA final ---------- */
.cta { padding-block: var(--sec); }
.cta-box {
  background: var(--ink); color: var(--cream-soft); border-radius: 28px;
  padding: clamp(34px, 5vw, 68px); position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 34px; align-items: center;
}
.cta-box h2 { margin-bottom: 14px; }
.cta-box p { color: rgba(253, 246, 232, .8); max-width: 46ch; margin-bottom: 26px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-stamp { justify-self: center; }

/* ---------- subsol ---------- */
.footer { background: var(--ink-deep); color: rgba(253, 246, 232, .78); padding-block: 62px 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 34px; }
.footer-logo { height: 66px; width: auto; margin-bottom: 16px; }
.footer p { font-size: .92rem; max-width: 34ch; }
.footer h4 {
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--wheat); margin-bottom: 14px;
}
.footer-list { display: grid; gap: 9px; font-size: .93rem; }
.footer-list a:hover { color: var(--amber); }
.footer-bottom {
  margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(253, 246, 232, .14);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(253, 246, 232, .55);
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 404 ---------- */
.nf { min-height: 100vh; display: grid; place-content: center; text-align: center; gap: 20px; padding: 120px var(--edge) 60px; }
.nf img { height: 120px; width: auto; margin: 0 auto; }
.nf h1 { font-size: clamp(3.4rem, 12vw, 8rem); }
.nf p { color: var(--ink-70); max-width: 44ch; margin: 0 auto; }
.nf-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* ---------- apariții ---------- */
[data-reveal].reveal-ready { will-change: transform, opacity; }
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 130%);
  background: var(--ink); color: var(--cream-soft); border-radius: 999px;
  padding: .85em 1.5em; font-size: .9rem; z-index: 120; box-shadow: var(--shadow-lg);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.toast.is-up { transform: translate(-50%, 0); }

/* ---------- responsive ---------- */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 520px; margin-inline: auto; width: 100%; }
  .hero-stamp { left: auto; right: 12px; bottom: -30px; }
  .hero-since { right: auto; left: -6px; }
  .award { grid-template-columns: 1fr; }
  .cta-box { grid-template-columns: 1fr; }
  .cta-stamp { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .story-cols { grid-template-columns: 1fr; }
  .story-figs { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; gap: 26px; }
  .find-grid { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .tall { grid-row: span 1; }
  .gallery .tall img { aspect-ratio: 1; }
}
@media (max-width: 560px) {
  .nav-actions .btn { padding: .75em 1.05em; font-size: .8rem; }
  .nav-logo img { height: 42px; }
  .card-foot { flex-direction: column; align-items: stretch; gap: 9px; }
  .card-foot .btn { width: 100%; }
  .card-ask { text-align: center; }
  .price-tag { text-align: center; }
  .hero-media-frame { border-radius: 160px 160px 20px 20px; }
  .stamp { width: 132px; height: 132px; }
  .stamp span { font-size: 1.06rem; }
  .grid-produse { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-body { padding: 13px 13px 15px; gap: 7px; }
  .card-body h3 { font-size: .95rem; }
  .card-note { font-size: .82rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
  .story-figs { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .crumb-track { animation: none; }
  .loader img { animation: none; }
  * { transition-duration: .01ms !important; }
}
