:root {
  --ink: #141414;
  --ink-soft: #2a2520;
  --saffron: #d97706;
  --saffron-dark: #b26003;
  --paprika: #b23a2a;
  --paprika-dark: #8e2c1f;
  --ochre: #e8a33a;
  --cream: #f6f1e7;
  --warm-white: #fbf8f2;
  --border: rgba(20, 20, 20, 0.08);
  --border-strong: rgba(20, 20, 20, 0.18);
  --shadow-card: 0 8px 28px rgba(40, 20, 0, 0.10);
  --shadow-lg: 0 18px 50px rgba(40, 20, 0, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 74px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}

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

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

button { font: inherit; cursor: pointer; border: none; background: none; }

.display {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: 'SOFT' 50, 'opsz' 144;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  line-height: 0;
  position: relative;
}

.nav__logo {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
  transition: opacity 0.3s var(--ease), transform 0.2s var(--ease);
}

.nav__logo--dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  filter: none;
}

.nav--scrolled .nav__logo--light { opacity: 0; }
.nav--scrolled .nav__logo--dark { opacity: 1; }

.nav__brand:hover .nav__logo { transform: translateY(-1px); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--warm-white);
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
  opacity: 0.85;
}

.nav__link:hover { opacity: 1; }

.nav--scrolled {
  background: var(--warm-white);
  box-shadow: 0 1px 0 var(--border);
}

.nav--scrolled .nav__brand,
.nav--scrolled .nav__link { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--saffron);
  color: var(--warm-white);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.btn--primary:hover {
  background: var(--saffron-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.45);
}

.btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: var(--warm-white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: var(--warm-white);
  color: var(--ink);
  border-color: var(--warm-white);
}

.btn--dark {
  background: var(--ink);
  color: var(--warm-white);
}

.btn--dark:hover { background: var(--ink-soft); }

.btn--inline {
  padding: 10px 18px;
  font-size: 13px;
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease);
}

.btn:hover .btn__arrow { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.02);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,4,0,0.72) 0%, rgba(8,4,0,0.38) 24%, rgba(8,4,0,0.35) 48%, rgba(8,4,0,0.78) 82%, rgba(8,4,0,0.92) 100%),
    linear-gradient(90deg, rgba(8,4,0,0.55) 0%, rgba(8,4,0,0.15) 55%, rgba(8,4,0,0) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 32px 96px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  color: var(--warm-white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero__eyebrow {
  color: var(--ochre);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--ochre);
}

.hero__title {
  font-size: clamp(50px, 8.5vw, 120px);
  max-width: 14ch;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ochre);
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
}

.hero__lede {
  font-size: clamp(17px, 1.5vw, 20px);
  max-width: 48ch;
  opacity: 0.92;
  margin-bottom: 36px;
  line-height: 1.55;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__meta {
  position: absolute;
  bottom: 36px;
  right: 32px;
  z-index: 2;
  color: var(--warm-white);
  text-align: right;
  font-size: 13px;
  letter-spacing: 0.05em;
  opacity: 0.85;
  font-weight: 500;
}

.hero__meta strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  opacity: 1;
  margin-bottom: 2px;
}

/* ---------- Order strip ---------- */
.order-strip {
  background: var(--paprika);
  color: var(--warm-white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.order-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255,180,90,0.15), transparent 50%);
  pointer-events: none;
}

.order-strip__header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.order-strip__title {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 10px;
}

.order-strip__sub {
  font-size: 15px;
  opacity: 0.85;
  max-width: 48ch;
  margin: 0 auto;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}

.order-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  color: var(--warm-white);
}

.order-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}

.order-card__num {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
  color: var(--ochre);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  display: block;
}

.order-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.order-card__title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.order-card__body {
  font-size: 14px;
  opacity: 0.88;
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}

.order-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.chip {
  padding: 5px 11px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 500;
}

.order-card__cta {
  align-self: flex-start;
  font-weight: 600;
  font-size: 14px;
  color: var(--ochre);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s var(--ease);
}

.order-card__cta:hover { color: var(--warm-white); }

.order-card__cta::after {
  content: '→';
  transition: transform 0.2s var(--ease);
}

.order-card__cta:hover::after { transform: translateX(4px); }

/* ---------- Sections ---------- */
section { padding: 120px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}

.section-head__text { max-width: 54ch; }

.section-head__eyebrow { margin-bottom: 14px; display: inline-block; }

.section-head__title {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 18px;
}

.section-head__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0.82;
}

/* ---------- Signature dish (editorial split) ---------- */
.signature {
  background: var(--warm-white);
}

.signature__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.signature__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.signature__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.signature__image-wrap:hover .signature__image { transform: scale(1.03); }

.signature__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 14px;
  background: var(--warm-white);
  color: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.signature__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--saffron);
  border-radius: 50%;
}

.signature__title {
  font-size: clamp(38px, 4.5vw, 60px);
  margin-bottom: 24px;
}

.signature__copy {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 44ch;
}

.signature__list {
  list-style: none;
  margin-bottom: 36px;
  border-top: 1px solid var(--border);
}

.signature__list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}

.signature__list dt {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.signature__list dd {
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.75;
  text-align: right;
  max-width: 30ch;
}

/* ---------- Small plates marquee ---------- */
.plates {
  background: var(--cream);
  padding: 120px 0;
}

.plates__marquee {
  overflow: hidden;
  padding: 8px 0 32px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.plates__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: plates-marquee 55s linear infinite;
  will-change: transform;
}

.plates__track:hover { animation-play-state: paused; }

@keyframes plates-marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-50% - 10px), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .plates__track { animation: none; }
  .plates__marquee {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .plate-card { scroll-snap-align: start; }
}

.plate-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--warm-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.plate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plate-card__image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.plate-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.plate-card:hover .plate-card__image { transform: scale(1.05); }

.plate-card__body { padding: 22px 24px 24px; }

.plate-card__title {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}

.plate-card__desc {
  font-size: 14px;
  color: var(--ink-soft);
  opacity: 0.78;
  line-height: 1.5;
}

/* ---------- Familia feature (full-bleed) ---------- */
.familia {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.familia__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.familia__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,5,0,0.8) 0%, rgba(10,5,0,0.55) 45%, rgba(10,5,0,0.1) 100%);
}

.familia__inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 32px;
  width: 100%;
}

.familia__card {
  max-width: 560px;
  color: var(--warm-white);
}

.familia__eyebrow {
  color: var(--ochre);
  margin-bottom: 20px;
}

.familia__title {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 20px;
}

.familia__copy {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 42ch;
}

.familia__stats {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.familia__stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--ochre);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.familia__stat span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.familia__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- About ---------- */
.about {
  background: var(--warm-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__title {
  font-size: clamp(36px, 4.5vw, 54px);
  margin-bottom: 28px;
}

.about__copy {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 52ch;
}

.about__sig {
  margin-top: 32px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}

.about__sig-sub {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ---------- Visit ---------- */
.visit {
  background: var(--cream);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.visit__info {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit__title {
  font-size: clamp(36px, 4.5vw, 54px);
  margin-bottom: 36px;
}

.visit__block {
  padding: 20px 0;
  border-top: 1px solid var(--border-strong);
}

.visit__block:last-of-type { border-bottom: 1px solid var(--border-strong); }

.visit__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--saffron);
  margin-bottom: 8px;
}

.visit__value {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.visit__sub {
  font-size: 14px;
  color: var(--ink-soft);
  opacity: 0.8;
  margin-top: 4px;
  line-height: 1.5;
}

.visit__map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 480px;
  border: 1px solid var(--border);
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
}

.visit__note {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--ochre);
  color: var(--ink);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.visit__note::before {
  content: '★';
  font-size: 16px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--warm-white);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__logo {
  height: 92px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}

.footer__tag {
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.55;
  max-width: 34ch;
}

.footer__col-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer__list a {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s var(--ease);
}

.footer__list a:hover { opacity: 1; }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.55;
}

/* ---------- Gift card ---------- */
.giftcard {
  background: linear-gradient(135deg, #3a1a12 0%, #5a241a 45%, #8e2c1f 100%);
  color: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.giftcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 110% 50%, rgba(232, 163, 58, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 60% at -10% 20%, rgba(217, 119, 6, 0.12), transparent 60%);
  pointer-events: none;
}

.giftcard__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.giftcard__eyebrow { color: var(--ochre); margin-bottom: 14px; display: inline-block; }

.giftcard__title {
  font-size: clamp(44px, 6vw, 76px);
  margin-bottom: 22px;
}

.giftcard__copy {
  font-size: 18px;
  line-height: 1.6;
  max-width: 46ch;
  opacity: 0.9;
  margin-bottom: 30px;
}

.giftcard__features {
  list-style: none;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.giftcard__features li {
  font-size: 14.5px;
  padding-left: 22px;
  position: relative;
  opacity: 0.92;
}

.giftcard__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--ochre);
  border-radius: 50%;
}

.giftcard__visual {
  position: relative;
  min-height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.giftcard__card {
  width: 360px;
  aspect-ratio: 1.586 / 1;
  background: linear-gradient(135deg, #1a0d08 0%, #2d1410 60%, #451d16 100%);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(232, 163, 58, 0.2) inset;
  position: relative;
  overflow: hidden;
  transform: rotate(-6deg) translate(-20px, -20px);
  z-index: 2;
}

.giftcard__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(232, 163, 58, 0.2), transparent 60%);
  pointer-events: none;
}

.giftcard__card--back {
  position: absolute;
  background: linear-gradient(135deg, #8e2c1f 0%, #b23a2a 60%, #d97706 140%);
  transform: rotate(4deg) translate(60px, 40px);
  z-index: 1;
  opacity: 0.95;
}

.giftcard__card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  position: relative;
  z-index: 2;
}

.giftcard__card-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ochre);
}

.giftcard__card-amount {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--warm-white);
}

.giftcard__card-logo {
  height: 60px;
  width: auto;
  align-self: center;
  position: relative;
  z-index: 2;
  opacity: 0.95;
}

.giftcard__card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.giftcard__card-chip {
  width: 28px;
  height: 20px;
  background: linear-gradient(135deg, var(--ochre), var(--saffron));
  border-radius: 4px;
  opacity: 0.9;
}

/* ---------- Sticky mobile order bar ---------- */
.sticky-order {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.sticky-order--visible { opacity: 1; transform: translateY(0); }

.sticky-order .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 22px;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .container, .hero__content, .order-strip__header, .familia__inner { padding-left: 24px; padding-right: 24px; }
  .nav__inner { padding-left: 24px; padding-right: 24px; }
  section { padding: 80px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }

  .nav__links { display: none; }
  .nav__links--mobile { display: flex; gap: 16px; }
  .nav__links--mobile .nav__link { display: none; }

  .hero { min-height: 88vh; min-height: 88svh; }
  .hero__content { padding-bottom: 110px; }
  .hero__meta { display: none; }
  .hero__title { font-size: clamp(44px, 12vw, 80px); }

  .order-grid { grid-template-columns: 1fr; gap: 12px; }
  .order-grid--4 { grid-template-columns: 1fr; }

  .giftcard__grid { grid-template-columns: 1fr; gap: 48px; }
  .giftcard__visual { min-height: 280px; }
  .giftcard__card { width: min(320px, 86vw); }
  .giftcard__features { grid-template-columns: 1fr; }

  .footer__logo { height: 72px; }

  .signature__grid, .about__grid, .visit__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .signature__image-wrap, .about__image-wrap { aspect-ratio: 4 / 3; }

  .familia { min-height: 540px; }
  .familia__inner { padding: 80px 24px; }
  .familia__scrim { background: linear-gradient(180deg, rgba(10,5,0,0.55) 0%, rgba(10,5,0,0.88) 100%); }
  .familia__stats { gap: 24px; }
  .familia__stat strong { font-size: 22px; }

  .visit__map, .visit__map iframe { min-height: 340px; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }

  .sticky-order { display: block; }
}

@media (max-width: 1040px) {
  .order-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .hero__ctas { width: 100%; }
  .hero__ctas .btn { flex: 1; justify-content: center; }
  .familia__stats { flex-wrap: wrap; gap: 18px; }
  .footer__grid { grid-template-columns: 1fr; }
  .plate-card { width: 82vw; }
  .giftcard__card-logo { height: 48px; }
  .giftcard__card-amount { font-size: 28px; }
}

/* ---------- Motion / reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
