/* Ferraro Bakery — Minimal soft 3D */

:root {
  --dark: #2c2b24;
  --white: #ffffff;
  --bg: #ffffff;
  --surface: #fafaf8;
  --surface-raised: #ffffff;
  --muted: #6e6d66;
  --border: rgba(44, 43, 36, 0.06);
  --accent: #8ba4b0;
  --accent-sage: #069999;
  --font: "General Sans", system-ui, sans-serif;
  --header-h: 4.75rem;
  --container: min(70rem, 90vw);
  --r-sm: 1rem;
  --r-md: 1.5rem;
  --r-lg: 2rem;
  --r-xl: 2.75rem;
  --r-pill: 100px;
  --shadow-soft:
    0 1px 2px rgba(44, 43, 36, 0.04),
    0 8px 24px rgba(44, 43, 36, 0.06),
    0 24px 48px rgba(44, 43, 36, 0.04);
  --shadow-float:
    0 2px 4px rgba(44, 43, 36, 0.03),
    0 12px 32px rgba(44, 43, 36, 0.08),
    0 32px 64px rgba(44, 43, 36, 0.06);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 450;
  line-height: 1.7;
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Ambient soft shapes */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.ambient__orb--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(139, 164, 176, 0.25), transparent 70%);
}

.ambient__orb--2 {
  width: 360px;
  height: 360px;
  bottom: 10%;
  left: -100px;
  background: radial-gradient(circle, rgba(6, 153, 153, 0.2), transparent 70%);
}

.ambient__orb--3 {
  width: 280px;
  height: 280px;
  top: 45%;
  right: 15%;
  background: radial-gradient(circle, rgba(44, 43, 36, 0.04), transparent 70%);
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

/* Typography */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--dark);
}

.section-lead {
  margin-top: 0.85rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 450;
}

/* Buttons — soft pill */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.65rem;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
}

.btn--primary {
  color: var(--white);
  background: var(--dark);
  box-shadow: 0 4px 14px rgba(44, 43, 36, 0.2), var(--shadow-inset);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 43, 36, 0.22), var(--shadow-inset);
}

.btn--ghost {
  color: var(--dark);
  background: var(--surface-raised);
  box-shadow: var(--shadow-soft);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
}

.btn--accent {
  color: var(--white);
  background: linear-gradient(145deg, var(--accent), #7a96a3);
  box-shadow: 0 4px 16px rgba(122, 150, 163, 0.35);
}

.btn--accent:hover {
  transform: translateY(-2px);
}

/* Header — pill flottante, colore primario scuro */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
}

.site-header__bar {
  position: relative;
  margin: 0.75rem auto 0;
  width: var(--container);
  height: calc(var(--header-h) - 0.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  background: var(--dark);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__start,
.site-header__end {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-header__end {
  justify-content: flex-end;
  gap: 0.75rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo--center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.logo img {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__links {
  display: flex;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .nav__links {
    gap: 1.5rem;
  }
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--ease);
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav__cta {
  display: inline-flex;
  flex-shrink: 0;
  padding: 0.65rem 1.25rem;
  font-size: 0.75rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-sage);
  background: var(--surface);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-soft);
}

.hero__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-sage);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem;
}

.page-hero__inner {
  max-width: 40rem;
}

.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero__text {
  margin-top: 1.25rem;
  max-width: 30rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__hours {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
}

.hero__visual {
  position: relative;
  padding: 1.25rem 0.75rem;
}

.hero__card {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  background: var(--surface-raised);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-float);
  border: 1px solid var(--border);
  overflow: visible;
}

.hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: var(--shadow-inset);
  pointer-events: none;
}

.hero__card-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero__card-stat strong {
  font-size: 2.75rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero__card-stat span {
  font-size: 0.875rem;
  color: var(--muted);
}

.hero__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.hero__card-tags .tag {
  background: var(--surface);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(44, 43, 36, 0.05);
}

.hero__card-tags .tag--light {
  background: rgba(6, 153, 153, 0.18);
  color: var(--dark);
  border-color: rgba(6, 153, 153, 0.35);
}

.hero__float {
  position: absolute;
  z-index: 2;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-float);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.hero__float--1 {
  top: -0.85rem;
  right: -0.65rem;
}

.hero__float--2 {
  bottom: -1.15rem;
  left: -0.65rem;
  color: var(--accent);
}

/* Services */
.services {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.services__header {
  margin-bottom: 2.5rem;
}

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

.service-card {
  padding: 2rem 1.75rem;
  background: var(--surface-raised);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
}

.service-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem;
  color: var(--accent);
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Info strip — biscottteria senza lattosio (in evidenza) */
.info-strip {
  padding: 0 0 clamp(3rem, 7vw, 5rem);
}

.info-strip--featured {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.info-strip__card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(2rem, 4vw, 2.75rem);
  background: var(--surface-raised);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-float);
  border: 1px solid var(--border);
}

.info-strip--featured .info-strip__card {
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.25rem);
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-float);
  overflow: hidden;
}

.info-strip--featured .info-strip__card::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: min(22rem, 55vw);
  height: min(22rem, 55vw);
  background: radial-gradient(circle, rgba(148, 168, 153, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.info-strip__tag {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  padding: 0.4rem 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dceee4;
  background: rgba(148, 168, 153, 0.22);
  border: 1px solid rgba(148, 168, 153, 0.35);
  border-radius: var(--r-pill);
}

.info-strip__layout {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
}

.info-strip__icon {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-sage);
  background: rgba(6, 153, 153, 0.12);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}

.info-strip--featured .info-strip__icon {
  color: #dceee4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.info-strip__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.info-strip--featured .section-label {
  color: var(--accent-sage);
}

.info-strip--featured .section-title {
  color: var(--white);
}

.info-strip__lead {
  margin-top: 0.85rem;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.info-strip__lead strong {
  color: var(--white);
  font-weight: 600;
}

.info-strip__text {
  margin-top: 0.75rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.info-strip--featured .info-strip__text {
  color: rgba(255, 255, 255, 0.72);
}

.info-strip__text strong {
  color: var(--dark);
  font-weight: 600;
}

.info-strip--featured .info-strip__text strong {
  color: var(--white);
}

.info-strip__note {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  border-left: 3px solid var(--accent);
}

.info-strip--featured .info-strip__note {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  border-left-color: var(--accent-sage);
}

.info-strip__note strong {
  color: var(--dark);
  font-weight: 600;
}

.info-strip--featured .info-strip__note strong {
  color: var(--white);
}

.info-strip__badge {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(139, 164, 176, 0.15);
  border-radius: var(--r-pill);
  vertical-align: middle;
}

.info-strip--featured .info-strip__badge {
  color: #dceee4;
  background: rgba(148, 168, 153, 0.2);
}

.btn--featured {
  margin-top: 1.5rem;
  color: var(--dark);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn--featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* About */
.about {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.about--page {
  padding-top: 0;
}

.about__paragraph {
  margin-top: 1rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.975rem;
  line-height: 1.7;
}

.about__legal {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about__legal li {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.about__legal span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.services--page {
  padding-top: 0;
}

.cta--intro {
  padding-top: 0;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.about__main {
  padding: 2.5rem;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-soft);
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.about__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 2px 12px rgba(44, 43, 36, 0.04);
}

.about__item-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  background: var(--dark);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(44, 43, 36, 0.15);
}

.about__item strong {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
}

.about__item p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.about__panel {
  padding: 2.5rem;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-float);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__panel .section-label {
  color: var(--accent);
}

.about__panel .section-title {
  color: var(--white);
}

.about__panel p {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.tag {
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 500;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.tag--light {
  background: rgba(139, 164, 176, 0.25);
}

/* CTA */
.cta {
  padding: 2rem 0 4rem;
}

.cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: var(--surface-raised);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-float);
  border: 1px solid var(--border);
}

.cta__box h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cta__box p {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 26rem;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 2rem;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  box-shadow: 0 -8px 40px rgba(44, 43, 36, 0.08);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 20rem;
}

.site-footer h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.site-footer li {
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer__meta {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.65;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  font-size: 0.75rem;
  opacity: 0.55;
}

/* ========== LISTINO ========== */

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.catalog-nav {
  position: sticky;
  top: calc(var(--header-h) + 0.5rem);
  z-index: 50;
  padding: 0.5rem 0 1.5rem;
}

.catalog-nav__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.65rem 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.catalog-nav__link {
  flex-shrink: 0;
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: var(--r-pill);
  transition: all var(--ease);
  white-space: nowrap;
}

.catalog-nav__link:hover,
.catalog-nav__link--active {
  color: var(--dark);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.catalog {
  padding-bottom: 3rem;
}

.catalog-section {
  margin-bottom: 3.5rem;
  scroll-margin-top: 8rem;
}

.catalog-section__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.catalog-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.catalog-section__pill {
  padding: 0.35rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
}

.catalog-section--dolci .catalog-section__pill {
  color: var(--accent);
  background: rgba(139, 164, 176, 0.12);
}

.catalog-section--salati .catalog-section__pill {
  color: var(--accent-sage);
  background: rgba(6, 153, 153, 0.12);
}

.category {
  margin-bottom: 2.5rem;
}

.category__head {
  margin-bottom: 1.25rem;
}

.category__title {
  font-size: 1.1rem;
  font-weight: 600;
}

.category__desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.product-card {
  background: var(--surface-raised);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-float);
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__media img.is-hidden {
  display: none;
}

.product-card__media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.45;
}

.product-card__body {
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.product-card__variants {
  margin-top: auto;
  padding-top: 1rem;
}

.product-card__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.variant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.variant-tag {
  padding: 0.28rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--surface);
  border-radius: var(--r-pill);
  box-shadow: 0 1px 4px rgba(44, 43, 36, 0.05);
}

.variant-tag--sage {
  background: rgba(6, 153, 153, 0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .info-strip__layout {
    flex-direction: column;
    align-items: stretch;
  }

  .info-strip__card {
    text-align: left;
  }

  .info-strip__note {
    text-align: left;
  }

  .hero__grid,
  .about__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    max-width: 28rem;
    margin-inline: auto;
    padding: 1.25rem 0.5rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta__box {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .cta__actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .site-header__start {
    flex: 0;
    width: 0;
  }

  .site-header__end .nav__cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav--left {
    position: fixed;
    inset: calc(var(--header-h) + 0.5rem) 1rem auto 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1.25rem;
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-float);
    border: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--ease), opacity var(--ease), visibility var(--ease);
    z-index: 99;
  }

  .nav--left.nav--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav--left .nav__link {
    color: var(--muted);
  }

  .nav--left .nav__link:hover,
  .nav--left .nav__link--active {
    color: var(--dark);
  }

  .nav__links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav__link {
    display: block;
    padding: 0.65rem 0;
    font-size: 1rem;
  }

  .logo--center img {
    height: 2.35rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }
}

@media (max-width: 480px) {
  .hero__actions .btn {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}
