:root {
  --bg: #f2eadf;
  --paper: #f8f1e7;
  --paper-strong: #fdf9f3;
  --wine-990: #0e0709;
  --wine-960: #161012;
  --wine-920: #201013;
  --wine-860: #3a171f;
  --wine-780: #5a222c;
  --gold: #b18c59;
  --ink: #15110f;
  --muted: #64584f;
  --line: rgba(32, 16, 19, 0.14);
  --line-light: rgba(253, 249, 243, 0.18);
  --shadow-xl: 0 44px 110px rgba(14, 7, 9, 0.24);
  --shadow-lg: 0 26px 64px rgba(14, 7, 9, 0.16);
  --shadow-md: 0 16px 38px rgba(14, 7, 9, 0.1);
  --container: min(1280px, calc(100vw - 40px));
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(177, 140, 89, 0.1), transparent 24%),
    linear-gradient(180deg, #f6efe6 0%, #efe1cf 46%, #f8f1e8 100%);
}

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

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

button,
.button {
  font: inherit;
}

input,
textarea,
select {
  font: inherit;
}

code {
  padding: 0.12rem 0.45rem;
  background: rgba(32, 16, 19, 0.06);
}

.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

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

.hero-shell {
  position: relative;
  min-height: 100svh;
  color: var(--paper-strong);
  overflow: clip;
  background: var(--wine-990);
}

.hero-media,
.hero-media img,
.hero-media-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.hero-media-overlay {
  background:
    linear-gradient(180deg, rgba(14, 7, 9, 0.58) 0%, rgba(14, 7, 9, 0.22) 22%, rgba(14, 7, 9, 0.74) 74%, rgba(14, 7, 9, 0.94) 100%),
    linear-gradient(90deg, rgba(14, 7, 9, 0.72) 0%, rgba(14, 7, 9, 0.18) 55%, rgba(14, 7, 9, 0.58) 100%);
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: 28px 0;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 16px 22px;
  background: linear-gradient(180deg, rgba(15, 8, 10, 0.48), rgba(15, 8, 10, 0.24));
  border-top: 1px solid rgba(253, 249, 243, 0.12);
  border-bottom: 1px solid rgba(253, 249, 243, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 54px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.16));
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong,
.hero-shell h1,
.intro-copy h2,
.section-head h2,
.editorial-copy h2,
.pairing-card h3,
.product-name,
.trade-copy h2,
.cta-shell h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.brand-copy strong {
  font-size: 1.36rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(253, 249, 243, 0.72);
}

.site-footer .brand-copy small {
  color: var(--muted);
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
  color: rgba(253, 249, 243, 0.82);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu,
.hero-copy,
.hero-aside,
.section-head,
.product-card,
.pairing-card,
.trade-shell,
.testimonial-card,
.cta-shell {
  min-width: 0;
}

.menu a {
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: transform var(--transition);
}

.menu a:hover::after,
.menu a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent),
    linear-gradient(135deg, #6a2230, var(--wine-920));
  box-shadow: 0 18px 40px rgba(17, 7, 9, 0.3);
}

.button-secondary {
  min-height: 46px;
  padding: 0 20px;
  color: var(--paper-strong);
  background: var(--wine-920);
  box-shadow: 0 10px 24px rgba(14, 7, 9, 0.14);
}

.button-outline,
.button-ghost {
  color: var(--paper-strong);
  border-color: var(--line-light);
  background: rgba(253, 249, 243, 0.04);
}

.button-large {
  min-height: 58px;
  padding: 0 34px;
  font-weight: 800;
}

.secret-trigger {
  display: inline;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.secret-trigger:focus-visible {
  outline: 1px solid rgba(253, 249, 243, 0.6);
  outline-offset: 6px;
}

.hero-content {
  position: relative;
  z-index: 10;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.42fr);
  gap: 52px;
  align-items: end;
  padding: 210px 0 86px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-shell h1 {
  margin: 0;
  font-size: clamp(4.8rem, 9vw, 9rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.hero-subtitle {
  max-width: 620px;
  margin: 22px 0 14px;
  color: rgba(253, 249, 243, 0.9);
  font-size: clamp(1.18rem, 2.2vw, 1.68rem);
}

.hero-text,
.intro-copy p,
.editorial-copy p,
.section-head p,
.pairing-card p,
.product-note,
.product-description,
.trade-copy p,
.cta-shell p,
.testimonial-card p,
.footer-column p,
.hero-aside p {
  line-height: 1.78;
}

.hero-text {
  max-width: 600px;
  color: rgba(253, 249, 243, 0.78);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions .button {
  min-width: 220px;
}

.hero-aside {
  justify-self: end;
  align-self: end;
  width: 100%;
  max-width: 390px;
  display: grid;
  gap: 20px;
  padding: 28px 30px;
  border-top: 1px solid rgba(177, 140, 89, 0.44);
  background: linear-gradient(180deg, rgba(18, 9, 12, 0.74), rgba(18, 9, 12, 0.54));
  backdrop-filter: blur(12px);
}

.hero-aside-kicker,
.product-tag,
.product-id,
.product-price span,
.footer-title {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-aside > strong {
  display: block;
  margin-top: -8px;
  font-size: 1.26rem;
  color: var(--paper-strong);
}

.hero-aside p {
  margin: 10px 0 0;
  color: rgba(253, 249, 243, 0.72);
}

.hero-aside-list {
  display: grid;
  gap: 12px;
}

.hero-aside-list div {
  display: grid;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(253, 249, 243, 0.08);
}

.hero-aside-list span {
  color: rgba(253, 249, 243, 0.5);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-aside-list strong {
  color: var(--paper-strong);
  font-size: 0.98rem;
  font-weight: 600;
}

.intro-panel {
  padding: 84px 0 32px;
}

.intro-grid,
.editorial-grid,
.trade-shell,
.footer-grid {
  display: grid;
  gap: 24px;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: stretch;
}

.intro-copy {
  padding: 44px 42px 40px;
  background: linear-gradient(180deg, rgba(253, 249, 243, 0.82), rgba(248, 240, 229, 0.72));
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.intro-copy h2,
.section-head h2,
.editorial-copy h2,
.trade-copy h2,
.cta-shell h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
}

.intro-copy p,
.section-head p,
.editorial-copy p,
.pairing-card p,
.product-description,
.trade-copy p,
.testimonial-card span,
.footer-column p {
  color: var(--muted);
}

.intro-figure {
  margin: 0;
  min-height: 620px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-figure img,
.editorial-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-strip,
.selection-section,
.pairings-section,
.trade-section,
.gallery-section,
.testimonials-section,
.cta-section {
  padding: 112px 0;
}

.editorial-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
}

.editorial-image {
  margin: 0;
  min-height: 680px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.editorial-image img {
  object-position: center 42%;
}

.editorial-copy {
  padding: 42px 38px;
  background: linear-gradient(180deg, rgba(253, 249, 243, 0.78), rgba(248, 240, 229, 0.7));
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.selection-section {
  background:
    linear-gradient(180deg, rgba(17, 7, 9, 0.98) 0%, rgba(17, 7, 9, 0.98) 290px, transparent 290px);
}

.section-head {
  margin-bottom: 42px;
}

.section-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 24px;
  align-items: end;
}

.selection-section .section-head h2,
.selection-section .section-head p,
.selection-section .eyebrow {
  color: var(--paper-strong);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(253, 249, 243, 0.98), rgba(244, 236, 225, 0.96)),
    radial-gradient(circle at top right, rgba(177, 140, 89, 0.1), transparent 30%);
  border-top: 1px solid rgba(177, 140, 89, 0.34);
  box-shadow: var(--shadow-lg);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(14, 7, 9, 0.16);
}

.product-card-empty {
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.product-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.product-id {
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 7px 10px;
}

.product-image-frame {
  overflow: hidden;
  aspect-ratio: 4 / 4.85;
  background: #e8dbc5;
}

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

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 4px 4px;
}

.product-name {
  margin: 0;
  font-size: 3rem;
  line-height: 0.9;
}

.product-note {
  margin: 10px 0 0;
  color: var(--wine-780);
  font-weight: 700;
  font-size: 1rem;
}

.product-description {
  margin: 16px 0 20px;
}

.product-meta {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.product-meta-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(32, 16, 19, 0.08);
  color: var(--muted);
  font-size: 0.94rem;
}

.product-meta-item strong {
  color: var(--ink);
}

.product-options {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(32, 16, 19, 0.1);
}

.product-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.product-option-copy {
  display: grid;
  gap: 4px;
}

.product-option-copy span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-option-copy strong {
  color: var(--wine-920);
  font-size: 1.7rem;
  line-height: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(32, 16, 19, 0.1);
}

.product-price {
  display: flex;
  flex-direction: column;
}

.product-price strong {
  color: var(--wine-920);
  font-size: 1.78rem;
  line-height: 1;
}

.pairings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pairing-card {
  padding: 34px 32px 30px;
  background: linear-gradient(180deg, rgba(253, 249, 243, 0.78), rgba(248, 240, 229, 0.7));
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.pairing-card h3 {
  margin: 14px 0 10px;
  font-size: 2rem;
  line-height: 1;
}

.pairing-card-dark {
  background:
    linear-gradient(180deg, rgba(32, 16, 19, 0.98), rgba(14, 7, 9, 0.96)),
    linear-gradient(135deg, rgba(177, 140, 89, 0.16), transparent);
  border-top-color: rgba(177, 140, 89, 0.28);
}

.pairing-card-dark h3,
.pairing-card-dark p {
  color: var(--paper-strong);
}

.trade-shell {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr) auto;
  align-items: center;
  padding: 46px;
  background:
    radial-gradient(circle at top right, rgba(177, 140, 89, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(32, 16, 19, 0.98), rgba(14, 7, 9, 0.96));
  color: var(--paper-strong);
  box-shadow: var(--shadow-xl);
}

.trade-shell > .button {
  justify-self: end;
}

.trade-copy p {
  color: rgba(253, 249, 243, 0.74);
}

.trade-points {
  display: grid;
  gap: 14px;
}

.trade-points div {
  padding: 18px 20px;
  border-top: 1px solid rgba(177, 140, 89, 0.24);
  background: rgba(253, 249, 243, 0.05);
}

.trade-points strong {
  display: block;
  margin-top: 8px;
  color: var(--paper-strong);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-lg);
}

.gallery-item-hero {
  grid-column: span 8;
  min-height: 500px;
}

.gallery-item-detail {
  grid-column: span 4;
  min-height: 500px;
}

.gallery-item-table {
  grid-column: span 6;
  min-height: 560px;
}

.gallery-item-asado {
  grid-column: span 6;
  min-height: 560px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  padding: 34px 32px;
  background: linear-gradient(180deg, rgba(253, 249, 243, 0.8), rgba(248, 240, 229, 0.72));
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.testimonial-card p {
  margin: 0 0 24px;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--wine-920);
}

.testimonial-card span {
  margin-top: 6px;
}

.testimonial-card-featured {
  background:
    linear-gradient(180deg, rgba(32, 16, 19, 0.98), rgba(14, 7, 9, 0.96)),
    linear-gradient(135deg, rgba(177, 140, 89, 0.16), transparent);
  border-top-color: rgba(177, 140, 89, 0.28);
}

.testimonial-card-featured p,
.testimonial-card-featured strong,
.testimonial-card-featured span {
  color: var(--paper-strong);
}

.cta-shell {
  text-align: center;
  padding: 66px 34px;
  background:
    radial-gradient(circle at top, rgba(177, 140, 89, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(32, 16, 19, 0.98), rgba(14, 7, 9, 0.96));
  color: var(--paper-strong);
  box-shadow: var(--shadow-xl);
}

.cta-shell p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(253, 249, 243, 0.76);
}

.site-footer {
  padding: 42px 0 34px;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.75fr 0.85fr 1fr;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-brand,
.footer-column {
  display: grid;
  gap: 8px;
}

.footer-title {
  color: var(--wine-780);
}

.footer-column a {
  width: fit-content;
  color: var(--wine-920);
  font-weight: 700;
}

body.admin-open {
  overflow: hidden;
}

.admin-portal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

/* Keep the admin modal invisible until the secret trigger opens it. */
.admin-portal[hidden] {
  display: none;
}

.admin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 7, 0.72);
  backdrop-filter: blur(12px);
}

.admin-modal {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  padding: 32px;
  color: var(--paper-strong);
  background:
    radial-gradient(circle at top right, rgba(177, 140, 89, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(32, 16, 19, 0.98), rgba(14, 7, 9, 0.98));
  border: 1px solid rgba(177, 140, 89, 0.22);
  box-shadow: var(--shadow-xl);
}

.admin-modal-head,
.admin-toolbar,
.admin-section-head,
.admin-panel-footer,
.admin-product-head,
.admin-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-modal-head {
  margin-bottom: 18px;
}

.admin-modal-head-wide {
  align-items: start;
}

.admin-kicker {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-modal h2,
.admin-section h3,
.admin-product-head h4,
.admin-section h5,
.admin-empty-state h4 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.admin-modal h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.95;
}

.admin-section h3,
.admin-product-head h4 {
  font-size: 1.9rem;
  line-height: 1;
}

.admin-section h5 {
  font-size: 1.2rem;
  line-height: 1;
}

.admin-copy,
.admin-feedback,
.admin-empty-state p,
.admin-empty-options {
  color: rgba(253, 249, 243, 0.72);
}

.admin-login-form,
.admin-settings-grid,
.admin-product-grid,
.admin-option-grid,
.admin-panel-body,
.admin-product-list,
.admin-options-wrap {
  display: grid;
  gap: 18px;
}

.admin-login-form,
.admin-panel-body {
  margin-top: 22px;
}

.admin-login-form {
  max-width: 440px;
}

.admin-settings-grid,
.admin-product-grid,
.admin-option-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-section {
  padding: 24px;
  border: 1px solid rgba(253, 249, 243, 0.08);
  background: rgba(253, 249, 243, 0.04);
}

.admin-product-card,
.admin-option-card,
.admin-empty-state {
  padding: 20px;
  border: 1px solid rgba(253, 249, 243, 0.08);
  background: rgba(253, 249, 243, 0.04);
}

.admin-section-head {
  margin-bottom: 18px;
}

.admin-section-head-tight {
  margin-bottom: 0;
}

.admin-product-head {
  align-items: start;
}

.admin-field-wide {
  grid-column: 1 / -1;
}

.admin-modal label {
  display: grid;
  gap: 8px;
  color: rgba(253, 249, 243, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-modal input,
.admin-modal textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(253, 249, 243, 0.16);
  color: var(--paper-strong);
  background: rgba(253, 249, 243, 0.06);
  resize: vertical;
}

.admin-modal input:focus,
.admin-modal textarea:focus {
  outline: 1px solid rgba(177, 140, 89, 0.9);
  border-color: rgba(177, 140, 89, 0.9);
}

.admin-close,
.admin-link-button {
  padding: 0;
  border: 0;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
}

.admin-link-button-danger {
  color: #f0b3a8;
}

.admin-toolbar-button,
.admin-add-button,
.admin-small-button {
  min-height: 46px;
}

.admin-options-wrap {
  margin-top: 8px;
}

.admin-panel-footer {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(253, 249, 243, 0.08);
}

.admin-feedback {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .hero-content,
  .intro-grid,
  .editorial-grid,
  .trade-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    justify-self: start;
    max-width: 480px;
  }

  .trade-shell {
    gap: 30px;
  }

  .trade-shell > .button {
    justify-self: start;
  }

  .product-grid,
  .pairings-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .section-head-split {
    grid-template-columns: 1fr;
  }

  .section-head-split p {
    max-width: 680px;
  }
}

@media (max-width: 940px) {
  .site-header {
    position: absolute;
  }

  .nav {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 16px 18px;
  }

  .menu {
    width: 100%;
    justify-content: start;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero-content,
  .section-head-split,
  .product-grid,
  .pairings-grid,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 34px;
    padding-top: 220px;
    padding-bottom: 68px;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .gallery-item-hero,
  .gallery-item-detail,
  .gallery-item-table,
  .gallery-item-asado {
    grid-column: auto;
    min-height: 340px;
  }

  .product-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-option {
    flex-direction: column;
    align-items: stretch;
  }

  .product-option .button {
    width: 100%;
  }

  .admin-modal,
  .admin-section,
  .admin-product-card,
  .admin-option-card {
    padding: 20px;
  }

  .admin-settings-grid,
  .admin-product-grid,
  .admin-option-grid {
    grid-template-columns: 1fr;
  }

  .admin-modal-head,
  .admin-toolbar,
  .admin-section-head,
  .admin-product-head,
  .admin-panel-footer,
  .admin-footer-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 760px) {
  .product-grid,
  .pairings-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .intro-figure,
  .editorial-image {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .brand-mark {
    width: 46px;
    height: 60px;
  }

  .brand {
    gap: 12px;
  }

  .brand-copy strong {
    font-size: 1.12rem;
  }

  .nav {
    padding: 14px 16px;
  }

  .menu {
    gap: 10px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero-shell h1,
  .intro-copy h2,
  .section-head h2,
  .editorial-copy h2,
  .trade-copy h2,
  .cta-shell h2 {
    font-size: 2.85rem;
  }

  .hero-shell h1 {
    font-size: clamp(3.5rem, 14vw, 4.6rem);
  }

  .hero-content {
    gap: 26px;
    padding-top: 188px;
    padding-bottom: 54px;
  }

  .hero-subtitle {
    margin-top: 18px;
    font-size: 1.06rem;
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .hero-aside > strong {
    margin-top: 0;
    font-size: 1.12rem;
  }

  .hero-aside-list strong {
    font-size: 0.92rem;
  }

  .hero-actions .button,
  .button-outline {
    width: 100%;
  }

  .intro-copy,
  .editorial-copy,
  .pairing-card,
  .trade-shell,
  .product-card,
  .testimonial-card,
  .cta-shell,
  .hero-aside {
    padding: 22px;
  }

  .intro-panel {
    padding: 64px 0 18px;
  }

  .intro-figure,
  .editorial-image {
    min-height: 420px;
  }

  .product-card-top,
  .product-meta-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-name {
    font-size: 2.45rem;
  }

  .product-option-copy strong {
    font-size: 1.48rem;
  }

  .trade-shell {
    padding: 24px;
  }

  .trade-points div {
    padding: 16px;
  }

  .gallery-item-hero,
  .gallery-item-detail,
  .gallery-item-table,
  .gallery-item-asado {
    min-height: 300px;
  }

  .editorial-strip,
  .selection-section,
  .pairings-section,
  .trade-section,
  .gallery-section,
  .testimonials-section,
  .cta-section {
    padding: 82px 0;
  }

  .admin-portal {
    padding: 12px;
  }

  .admin-modal {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(1280px, calc(100vw - 28px));
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .menu {
    font-size: 0.68rem;
  }

  .hero-shell h1,
  .intro-copy h2,
  .section-head h2,
  .editorial-copy h2,
  .trade-copy h2,
  .cta-shell h2 {
    font-size: 2.45rem;
  }

  .hero-shell h1 {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .hero-content {
    padding-top: 172px;
  }

  .intro-copy,
  .editorial-copy,
  .pairing-card,
  .trade-shell,
  .product-card,
  .testimonial-card,
  .cta-shell,
  .hero-aside {
    padding: 18px;
  }

  .gallery-item-hero,
  .gallery-item-detail,
  .gallery-item-table,
  .gallery-item-asado {
    min-height: 260px;
  }
}
