:root {
  --ink: #241713;
  --charcoal: #21120e;
  --wine: #501816;
  --wine-dark: #3a1512;
  --gold: #f4a900;
  --gold-bright: #ffba20;
  --cream: #fff4e4;
  --paper: #f5eee4;
  --muted: #83766d;
  --line: rgba(36, 23, 19, 0.16);
  --shell: min(1240px, calc(100vw - 48px));
  --shadow: 0 24px 70px rgba(36, 12, 8, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.store-drawer-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

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

.section {
  padding: 120px 0;
}

.announcement {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 35px;
  padding: 7px 20px;
  color: #2e1800;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.announcement a {
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 35px;
  right: 0;
  left: 0;
  height: 92px;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 244, 228, 0.17);
  transition: background 240ms ease, height 240ms ease, box-shadow 240ms ease;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  height: 78px;
  background: rgba(33, 18, 14, 0.95);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  width: 196px;
}

.brand img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 31px;
  font-size: 0.91rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 244, 228, 0.3);
  border-radius: 999px;
  background: rgba(33, 18, 14, 0.44);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 29px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--cream);
  line-height: 1;
}

.language-switch a[aria-current="true"] {
  color: #2e1800;
  background: var(--gold);
}

.senyera {
  display: inline-block;
  width: 18px;
  height: 12px;
  border: 1px solid rgba(255, 244, 228, 0.45);
  background: repeating-linear-gradient(
    to bottom,
    #f7d027 0,
    #f7d027 2px,
    #c72b32 2px,
    #c72b32 3.5px
  );
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.flag-spain {
  display: inline-block;
  width: 18px;
  height: 12px;
  border: 1px solid rgba(255, 244, 228, 0.45);
  background: linear-gradient(
    to bottom,
    #aa151b 0 25%,
    #f1bf00 25% 75%,
    #aa151b 75% 100%
  );
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.91rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.82rem;
}

.button-large {
  min-height: 62px;
  padding-inline: 32px;
}

.button-gold {
  color: #2f1a00;
  background: var(--gold);
}

.button-gold:hover {
  background: var(--gold-bright);
}

.button-dark {
  color: var(--cream);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--wine);
}

.button-outline {
  border-color: var(--ink);
}

.button-outline:hover {
  color: var(--cream);
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.92rem;
  font-weight: 750;
}

.text-link-light {
  color: var(--cream);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--wine);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: 400;
}

h1 {
  max-width: 800px;
  margin-bottom: 29px;
  font-size: clamp(3.5rem, 7.5vw, 7.1rem);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 5vw, 5.25rem);
}

.hero {
  position: relative;
  min-height: 930px;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 40%, rgba(139, 54, 40, 0.48), transparent 34%),
    linear-gradient(125deg, #1d100c 0%, #2b1510 58%, #481b16 100%);
}

.hero::before {
  position: absolute;
  right: -1.5vw;
  bottom: -4vw;
  color: rgba(255, 244, 228, 0.032);
  content: "CROQUETIEL";
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 16vw, 17rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.75;
  pointer-events: none;
  white-space: nowrap;
}

.hero-ambient,
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-ambient {
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(255, 244, 228, 0.08) 50%, transparent 50.1%),
    linear-gradient(rgba(255, 244, 228, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 112px;
}

.hero-grain {
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(58px, 7vw, 120px);
  min-height: 930px;
  padding-top: 142px;
  padding-bottom: 72px;
}

.hero-copy {
  max-width: 700px;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.6rem, 6.3vw, 6.5rem);
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 244, 228, 0.74);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 650px);
  margin: 51px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 244, 228, 0.22);
  border-bottom: 1px solid rgba(255, 244, 228, 0.22);
}

.hero-facts li {
  display: flex;
  min-width: 0;
  padding: 17px 20px;
  flex-direction: column;
  border-right: 1px solid rgba(255, 244, 228, 0.18);
}

.hero-facts li:first-child {
  padding-left: 0;
}

.hero-facts li:last-child {
  border-right: 0;
}

.hero-facts strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.hero-facts span {
  color: rgba(255, 244, 228, 0.67);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-video-wrap {
  position: relative;
  width: min(100%, 438px);
  justify-self: center;
}

.hero-video-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: rgba(255, 244, 228, 0.72);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.hero-video-label > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-video-label i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(244, 169, 0, 0.13);
}

.hero-video-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
  margin-inline: auto;
  background: #1a0b09;
  border: 1px solid rgba(255, 244, 228, 0.34);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.56);
}

.hero-video-card::before {
  position: absolute;
  z-index: -1;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(244, 169, 0, 0.62);
  content: "";
}

.hero-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 7, 6, 0.22), transparent 30%, transparent 66%, rgba(9, 7, 6, 0.78));
  pointer-events: none;
}

.instagram-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 37px;
  padding: 8px 12px;
  color: var(--cream);
  background: rgba(9, 7, 6, 0.67);
  border: 1px solid rgba(255, 244, 228, 0.24);
  font-size: 0.72rem;
  font-weight: 800;
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
}

.hero-video-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 8px;
}

.hero-video-controls button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 39px;
  padding: 8px 11px;
  color: var(--cream);
  background: rgba(9, 7, 6, 0.69);
  border: 1px solid rgba(255, 244, 228, 0.25);
  border-radius: 0;
  cursor: pointer;
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
}

.hero-video-controls button:hover {
  color: var(--ink);
  background: var(--gold);
}

.hero-video-controls button span {
  min-width: 12px;
  font-size: 0.82rem;
  text-align: center;
}

.hero-video-controls button small {
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 46px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 244, 228, 0.48);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.hero-scroll span {
  width: 42px;
  height: 1px;
  background: currentColor;
}

.marquee {
  overflow: hidden;
  color: #341d00;
  background: var(--gold);
  border-top: 1px solid rgba(0, 0, 0, 0.17);
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 17px 0;
  animation: marquee 28s linear infinite;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  font-style: italic;
}

.marquee-track i {
  font-style: normal;
  font-size: 0.7rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.products {
  background:
    radial-gradient(circle at 95% 6%, rgba(244, 169, 0, 0.11), transparent 25%),
    var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 63px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 430px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.product-card:nth-child(1) {
  grid-column: span 7;
}

.product-card:nth-child(2) {
  grid-column: span 5;
}

.product-card:nth-child(3),
.product-card:nth-child(4),
.product-card:nth-child(5) {
  grid-column: span 4;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: #fffaf3;
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.product-card-wide {
  min-width: 0;
}

.product-card > .product-content {
  display: block;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e9dfd2;
}

.product-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 7, 6, 0.04), rgba(10, 7, 6, 0.26));
  content: "";
  pointer-events: none;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.045);
}

.product-number,
.product-badge {
  position: absolute;
  z-index: 2;
  top: 17px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-number {
  left: 17px;
  color: var(--cream);
  background: rgba(12, 9, 8, 0.83);
}

.product-badge {
  right: 17px;
  color: #321d00;
  background: var(--gold);
}

.product-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  min-height: 137px;
  padding: 25px 27px 24px;
}

.product-info h3 {
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}

.product-info p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-info .product-tagline {
  color: var(--wine);
  font-weight: 800;
}

.product-info .product-description {
  max-width: 45rem;
  margin-top: 10px;
  color: #654f47;
  font-size: 0.82rem;
  line-height: 1.55;
}

.product-details-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--ink);
  border-bottom: 1px solid rgba(36, 23, 19, 0.35);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.product-details-link:hover {
  color: var(--wine);
  border-color: var(--wine);
}

.product-buy {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  white-space: nowrap;
}

.product-buy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.product-add {
  display: inline-flex;
  min-width: 142px;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 10px 12px 10px 14px;
  color: var(--cream);
  background: var(--wine);
  border: 1px solid var(--wine);
  border-radius: 2px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.product-add:hover {
  color: #2f1a00;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.product-add i {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--wine);
  background: var(--cream);
  border-radius: 50%;
  font-size: 1rem;
  font-style: normal;
  line-height: 1;
}

.product-add.is-added {
  color: #fff;
  background: #2e6a3c;
  border-color: #2e6a3c;
}

.product-add.is-error {
  color: #fff;
  background: #8a241f;
  border-color: #8a241f;
}

.product-add:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.shop-note {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 42px;
  margin-top: 38px;
  padding: 27px 30px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.shop-note > div {
  display: flex;
  flex-direction: column;
}

.shop-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.shop-note span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-note .button {
  justify-self: end;
}

.payment-promise {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  color: var(--cream);
  background: rgba(255, 244, 228, 0.15);
  border: 1px solid var(--ink);
}

.payment-promise p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 92px;
  margin: 0;
  padding: 23px 24px;
  color: rgba(255, 244, 228, 0.72);
  background: var(--wine-dark);
  font-size: 0.84rem;
  line-height: 1.5;
}

.payment-promise p > span {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  place-items: center;
}

.payment-promise strong {
  color: var(--cream);
}

.google-reviews {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(244, 169, 0, 0.18), transparent 22%),
    #eee1d1;
}

.google-reviews::after {
  position: absolute;
  right: -3vw;
  bottom: -2vw;
  color: rgba(80, 24, 22, 0.035);
  content: "5,0";
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(10rem, 21vw, 22rem);
  letter-spacing: -0.08em;
  line-height: 0.7;
  pointer-events: none;
}

.google-reviews .shell {
  position: relative;
  z-index: 1;
}

.google-reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.google-reviews-heading h2 {
  max-width: 830px;
  margin-bottom: 0;
}

.google-reviews-heading h2 em {
  color: var(--wine);
}

.google-rating-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1px 24px;
  padding: 25px 28px;
  color: var(--ink);
  background: rgba(255, 250, 243, 0.88);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.google-rating-summary:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 75px rgba(36, 12, 8, 0.21);
}

.google-rating-source {
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.google-rating-summary strong {
  grid-row: span 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 0.9;
}

.google-stars,
.google-review-meta > span:first-child {
  color: var(--gold);
  letter-spacing: 0.13em;
}

.google-rating-summary small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

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

.google-review-card {
  position: relative;
  display: flex;
  min-height: 315px;
  padding: 34px 32px 30px;
  flex-direction: column;
  background: #fffaf3;
  border: 1px solid rgba(36, 23, 19, 0.13);
  box-shadow: 0 20px 55px rgba(60, 30, 20, 0.08);
}

.google-review-card::before {
  position: absolute;
  top: 45px;
  right: 25px;
  color: rgba(80, 24, 22, 0.09);
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  line-height: 1;
  pointer-events: none;
}

.google-review-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}

.google-review-meta small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.google-review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 34px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.65vw, 1.45rem);
  line-height: 1.48;
}

.google-review-card footer {
  display: flex;
  margin-top: auto;
  padding-top: 19px;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.google-review-card footer strong {
  color: var(--wine);
  font-size: 0.9rem;
}

.google-review-card footer span {
  color: var(--muted);
  font-size: 0.73rem;
}

.google-reviews-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

/* Store and checkout */
.store-page {
  background: var(--paper);
}

.store-page .site-header,
.store-page .site-header.is-sticky {
  position: relative;
  top: 0;
  color: var(--cream);
  background: var(--charcoal);
  box-shadow: none;
}

.store-page .site-header.is-sticky {
  position: sticky;
}

.store-page .main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.store-intro {
  position: relative;
  overflow: hidden;
  padding: 84px 0 78px;
  color: var(--cream);
  background:
    radial-gradient(circle at 82% 24%, rgba(244, 169, 0, 0.22), transparent 23%),
    linear-gradient(128deg, #21110d 0%, #3a1512 60%, #64231d 100%);
}

.store-intro::after {
  position: absolute;
  right: -3vw;
  bottom: -6vw;
  color: rgba(255, 244, 228, 0.035);
  content: "TIENDA";
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 18vw, 18rem);
  letter-spacing: -0.07em;
  line-height: 0.75;
  pointer-events: none;
}

.store-intro-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: 80px;
}

.store-back {
  display: inline-flex;
  gap: 9px;
  margin-bottom: 34px;
  color: rgba(255, 244, 228, 0.66);
  border-bottom: 1px solid rgba(255, 244, 228, 0.34);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.store-intro h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 7.4vw, 7.2rem);
}

.store-intro h1 em {
  color: var(--gold);
}

.store-intro-copy > p:last-child {
  max-width: 630px;
  margin-bottom: 0;
  color: rgba(255, 244, 228, 0.72);
  font-size: 1.05rem;
}

.store-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 244, 228, 0.25);
}

.store-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 244, 228, 0.25);
}

.store-steps span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.store-steps strong {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  font-weight: 400;
}

.store-steps small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 244, 228, 0.58);
  font-size: 0.75rem;
}

.checkout-section {
  padding: 70px 0 115px;
  background:
    radial-gradient(circle at 5% 4%, rgba(244, 169, 0, 0.1), transparent 19%),
    var(--paper);
}

.checkout-confidence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 50px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.checkout-confidence > div {
  display: flex;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.checkout-confidence > div:last-child {
  border-right: 0;
}

.checkout-confidence span {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.checkout-confidence strong,
.checkout-confidence small {
  display: block;
}

.checkout-confidence strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
}

.checkout-confidence small {
  color: var(--muted);
  font-size: 0.72rem;
}

.store-embed-shell {
  position: relative;
  min-height: 640px;
  padding: 42px clamp(18px, 4vw, 60px) 56px;
  background: #fffaf3;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.home-store {
  margin-top: 64px;
  scroll-margin-top: 100px;
}

.store-embed-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.store-embed-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.store-embed-heading p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

.store-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 280px;
  color: var(--muted);
  text-align: left;
}

.store-loader[hidden] {
  display: none;
}

.store-loader::before {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(80, 24, 22, 0.16);
  border-top-color: var(--wine);
  border-radius: 50%;
  content: "";
  animation: store-spin 800ms linear infinite;
}

.store-loader.is-slow::before {
  display: none;
}

.store-loader strong,
.store-loader span {
  display: block;
}

.store-loader strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 400;
}

.store-loader span {
  font-size: 0.78rem;
}

@keyframes store-spin {
  to { transform: rotate(360deg); }
}

.store-fallback {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.store-fallback a {
  color: var(--wine);
  font-weight: 800;
  text-decoration: underline;
}

.store-drawer {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr minmax(560px, min(760px, 92vw));
  visibility: hidden;
  pointer-events: none;
}

.store-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.store-drawer-backdrop {
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(12, 9, 8, 0.68);
  border: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity 240ms ease;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.store-drawer.is-open .store-drawer-backdrop {
  opacity: 1;
}

.store-drawer-panel {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding: 0 clamp(18px, 4vw, 52px) 54px;
  color: var(--ink);
  background: #fffaf3;
  box-shadow: -24px 0 70px rgba(12, 9, 8, 0.26);
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.store-drawer.is-open .store-drawer-panel {
  transform: translateX(0);
}

.store-drawer-header {
  position: sticky;
  z-index: 4;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 clamp(-52px, -4vw, -18px) 24px;
  padding: 21px clamp(18px, 4vw, 52px) 18px;
  background: rgba(255, 250, 243, 0.96);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.store-drawer-header p,
.store-drawer-header h2 {
  margin: 0;
}

.store-drawer-header p {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.store-drawer-header h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.store-drawer-close {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  padding: 0 0 4px;
  place-items: center;
  color: var(--cream);
  background: var(--wine);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.minimum-order-banner {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 28px;
  padding: 16px 18px;
  flex-direction: column;
  color: #fff5e6;
  background: var(--wine);
  border-left: 5px solid var(--gold);
}

.minimum-order-banner strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  font-weight: 400;
}

.minimum-order-banner span {
  color: rgba(255, 245, 230, 0.78);
  font-size: 0.78rem;
}

.minimum-order-banner.is-complete {
  background: #285d37;
  border-left-color: #91d59d;
}

.minimum-order-toast {
  position: fixed;
  z-index: 420;
  right: 22px;
  bottom: 22px;
  max-width: min(430px, calc(100vw - 44px));
  padding: 15px 18px;
  color: #fff;
  background: var(--wine);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 45px rgba(12, 9, 8, 0.3);
  font-size: 0.82rem;
  font-weight: 800;
}

.croquetiel-checkout-disabled {
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}

/* Keep the embedded catalog visually aligned with Croquetiel. */
.store-embed-shell .ec-size .ec-store .form-control__button,
.store-embed-shell .ec-size .ec-store .form-control__button:hover,
.store-drawer-panel .ec-size .ec-store .form-control__button,
.store-drawer-panel .ec-size .ec-store .form-control__button:hover {
  background-color: var(--wine) !important;
  border-radius: 2px !important;
}

.store-embed-shell .ec-size .ec-store .grid-product__title-inner,
.store-embed-shell .ec-size .ec-store .product-details__product-title,
.store-drawer-panel .ec-size .ec-store .grid-product__title-inner,
.store-drawer-panel .ec-size .ec-store .product-details__product-title {
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif !important;
}

.store-embed-shell .ec-size .ec-store .grid-product__price-amount,
.store-embed-shell .ec-size .ec-store .product-details__product-price,
.store-drawer-panel .ec-size .ec-store .grid-product__price-amount,
.store-drawer-panel .ec-size .ec-store .product-details__product-price {
  color: var(--wine) !important;
}

.croquetiel-tax-label,
.product-buy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
}

.store-embed-shell .ec-size .ec-store [class*="tax"],
.store-drawer-panel .ec-size .ec-store [class*="tax"] {
  font-size: 0.76rem !important;
  line-height: 1.35 !important;
}

/* Ecwid prints the VAT amount here; Croquetiel only shows the final-price notice. */
.store-embed-shell .ec-size .ec-store .product-details__product-price-taxes,
.store-embed-shell .ec-size .ec-store .details-product-price__tax,
.store-embed-shell .ec-size .ec-store [class*="product-price-taxes"],
.store-drawer-panel .ec-size .ec-store .product-details__product-price-taxes,
.store-drawer-panel .ec-size .ec-store .details-product-price__tax,
.store-drawer-panel .ec-size .ec-store [class*="product-price-taxes"] {
  font-size: 0 !important;
}

.store-embed-shell .ec-size .ec-store .product-details__product-price-taxes > *,
.store-embed-shell .ec-size .ec-store .details-product-price__tax > *,
.store-embed-shell .ec-size .ec-store [class*="product-price-taxes"] > *,
.store-drawer-panel .ec-size .ec-store .product-details__product-price-taxes > *,
.store-drawer-panel .ec-size .ec-store .details-product-price__tax > *,
.store-drawer-panel .ec-size .ec-store [class*="product-price-taxes"] > * {
  display: none !important;
}

.store-embed-shell .ec-size .ec-store .product-details__product-price-taxes::after,
.store-embed-shell .ec-size .ec-store .details-product-price__tax::after,
.store-embed-shell .ec-size .ec-store [class*="product-price-taxes"]::after,
.store-drawer-panel .ec-size .ec-store .product-details__product-price-taxes::after,
.store-drawer-panel .ec-size .ec-store .details-product-price__tax::after,
.store-drawer-panel .ec-size .ec-store [class*="product-price-taxes"]::after {
  content: "IVA incluido";
  font-size: 0.76rem;
  line-height: 1.35;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.cart-count {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--wine);
  background: #fffaf3;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  line-height: 1;
}

.cart-count.has-items {
  color: #fff;
  background: var(--wine);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.purchase-roadmap p > span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
  font-size: 0.76rem;
}

.shipping-detail {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-align: right;
}

.mobile-shop > span:first-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.mobile-shop small {
  font-size: 0.67rem;
  font-weight: 500;
  opacity: 0.78;
}

.mobile-cart-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.mobile-cart-action i {
  font-style: normal;
}

.store-embed-shell .ec-size .ec-store .ec-link {
  color: var(--wine);
}

.legal-main {
  padding: 90px 0 120px;
  background:
    radial-gradient(circle at 8% 6%, rgba(244, 169, 0, 0.12), transparent 18%),
    var(--paper);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.legal-aside {
  position: sticky;
  top: 110px;
}

.legal-aside .store-back {
  color: var(--muted);
  border-color: var(--line);
}

.legal-aside h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(3.3rem, 6vw, 5.8rem);
}

.legal-aside h1 em {
  color: var(--wine);
}

.legal-aside > p:last-child {
  color: var(--muted);
  font-size: 0.8rem;
}

.legal-copy {
  min-width: 0;
  padding: 45px clamp(24px, 5vw, 70px);
  background: #fffaf3;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-copy section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-copy section:first-child {
  padding-top: 0;
}

.legal-copy section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-copy h2 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.legal-copy h3 {
  margin: 25px 0 8px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 400;
}

.legal-copy p {
  margin-bottom: 16px;
  color: #65584f;
}

.legal-copy p:last-child {
  margin-bottom: 0;
}

.legal-copy a {
  color: var(--wine);
  font-weight: 750;
  text-decoration: underline;
}

.video-section {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(80, 24, 22, 0.72), transparent 46%),
    var(--charcoal);
}

.video-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
}

.video-glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: rgba(244, 169, 0, 0.11);
  filter: blur(70px);
}

.video-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: 110px;
}

.video-copy h2 {
  max-width: 790px;
}

.video-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 28px;
  color: rgba(255, 244, 228, 0.72);
  font-size: 1.08rem;
}

.reel-frame {
  overflow: hidden;
  width: 100%;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(255, 244, 228, 0.38);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  transform: rotate(1.1deg);
}

.reel-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 10px;
  color: #17100e;
  font-size: 0.8rem;
}

.reel-topbar > span:first-child {
  width: 25px;
  height: 25px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--wine);
}

.reel-frame iframe {
  display: block;
  width: 100%;
  height: 650px;
  border: 0;
  background: #f3f3f3;
}

.reel-frame > p {
  margin: 8px 8px 2px;
  color: #766e69;
  font-size: 0.71rem;
  text-align: center;
}

.reel-frame > p a {
  color: var(--wine);
  text-decoration: underline;
}

.story {
  background: var(--cream);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  align-items: center;
  gap: 100px;
}

.story-photo {
  position: relative;
  margin: 0;
  padding: 0 34px 34px 0;
}

.story-photo::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 34px;
  height: calc(100% - 34px);
  background: var(--gold);
  content: "";
}

.story-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1.03;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-photo.story-photo-pair {
  padding: 0 88px 88px 0;
}

.story-photo.story-photo-pair::before {
  left: 44px;
  height: calc(100% - 44px);
}

.story-photo .story-photo-secondary {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 1 / 1;
  border: 7px solid var(--cream);
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(47, 12, 10, 0.24);
}

.story-photo figcaption {
  position: absolute;
  z-index: 2;
  right: -3px;
  bottom: 72px;
  padding: 16px 18px;
  color: var(--cream);
  background: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.3;
  transform: rotate(-3deg);
}

.story-photo.story-photo-pair figcaption {
  right: auto;
  bottom: 35px;
  left: -12px;
}

.story-copy h2 {
  color: var(--ink);
}

.story-copy h2 em {
  color: var(--wine);
}

.story-lede {
  max-width: 660px;
  color: #5f5148;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.14rem, 1.7vw, 1.38rem);
  line-height: 1.65;
}

.story-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 31px;
  margin: 38px 0 29px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.story-columns p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.story-columns h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.2;
}

.story-columns p strong {
  color: var(--wine);
  font-weight: 850;
}

.contact-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 15%, rgba(244, 169, 0, 0.13), transparent 24%),
    var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.72fr);
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.contact-copy h2 {
  color: var(--ink);
}

.contact-copy h2 em {
  color: var(--wine);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--ink);
}

.contact-details a {
  display: flex;
  min-width: 0;
  gap: 3px;
  padding: 18px 18px 18px 0;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}

.contact-details a:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.contact-details span {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-details strong {
  overflow-wrap: anywhere;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
}

.contact-details a:hover strong {
  color: var(--wine);
}

.whatsapp-panel {
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: clamp(34px, 5vw, 56px);
  flex-direction: column;
  color: var(--cream);
  background:
    radial-gradient(circle at 86% 14%, rgba(244, 169, 0, 0.2), transparent 25%),
    var(--wine-dark);
  box-shadow: var(--shadow);
}

.whatsapp-panel::after {
  position: absolute;
  right: -58px;
  bottom: -72px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(244, 169, 0, 0.3);
  border-radius: 50%;
  content: "";
}

.whatsapp-panel > * {
  position: relative;
  z-index: 1;
}

.whatsapp-panel h3 {
  max-width: 460px;
  margin: 8px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 4.15rem);
  font-weight: 400;
  line-height: 0.98;
}

.whatsapp-panel > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 244, 228, 0.72);
}

.whatsapp-panel .button {
  margin-top: 30px;
}

.restaurant-cta {
  padding-top: 0;
  background: var(--cream);
}

.restaurant-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  padding: 62px 66px;
  color: var(--cream);
  background:
    radial-gradient(circle at 80% 20%, rgba(244, 169, 0, 0.18), transparent 22%),
    var(--wine-dark);
}

.restaurant-panel::after {
  position: absolute;
  top: -70px;
  right: 31%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(244, 169, 0, 0.3);
  border-radius: 50%;
  content: "";
}

.restaurant-panel h2 {
  margin-bottom: 15px;
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
}

.restaurant-panel p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 244, 228, 0.7);
}

.restaurant-panel .button {
  position: relative;
  z-index: 1;
}

.final-cta {
  position: relative;
  padding: 165px 0;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(9, 7, 6, 0.94) 0%, rgba(9, 7, 6, 0.78) 48%, rgba(9, 7, 6, 0.42) 100%),
    url("assets/croquetiel-hero.webp") center / cover no-repeat;
  text-align: center;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.final-cta h2 {
  max-width: 1020px;
}

.final-cta h2 em {
  color: var(--gold);
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta .button-dark {
  color: var(--ink);
  background: var(--gold);
}

.final-cta .button-dark:hover {
  background: var(--gold-bright);
}

.site-footer {
  overflow: hidden;
  padding: 74px 0 24px;
  color: rgba(255, 244, 228, 0.68);
  background: var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, 1fr);
  gap: 72px;
  padding-bottom: 60px;
  align-items: start;
}

.footer-grid > div {
  min-width: 0;
}

.footer-brand img {
  width: 300px;
  height: 255px;
  margin: -20px 0 12px;
  object-fit: cover;
  object-position: center;
}

.footer-brand p {
  max-width: 290px;
  margin-inline: 0;
  font-size: 0.86rem;
  text-align: left;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-grid a {
  margin: 4px 0;
  font-size: 0.86rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
  transition: color 150ms ease;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 244, 228, 0.13);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.mobile-shop {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 40px, 920px);
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a:nth-child(4) {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 6.7vw, 5.5rem);
  }

  .hero-video-wrap {
    width: 340px;
  }

  .hero-video-card {
    width: 320px;
  }

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

  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4) {
    grid-column: auto;
  }

  .product-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .google-reviews-heading {
    gap: 42px;
  }

  .google-review-card {
    padding-inline: 25px;
  }

  .video-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 60px;
  }

  .reel-frame iframe {
    height: 585px;
  }

  .story-layout {
    gap: 55px;
  }

  .restaurant-panel {
    padding: 52px 45px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 35px;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: calc(100% - 34px);
  }

  .section {
    padding: 85px 0;
  }

  .announcement {
    min-height: 32px;
    font-size: 0.66rem;
    letter-spacing: 0.055em;
  }

  .announcement span:nth-of-type(3),
  .announcement span:nth-of-type(4) {
    display: none;
  }

  .site-header,
  .site-header.is-sticky {
    position: absolute;
    top: 32px;
    height: 78px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 9px;
  }

  .brand {
    width: 162px;
  }

  .brand img {
    height: 61px;
  }

  .header-cta {
    display: none;
  }

  .language-switch {
    position: relative;
    z-index: 6;
    padding: 3px;
    background: rgba(33, 18, 14, 0.72);
  }

  .language-switch a {
    min-height: 27px;
    padding: 5px 7px;
  }

  .menu-toggle {
    position: relative;
    z-index: 5;
    display: grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    padding: 0;
    color: var(--cream);
    background: rgba(33, 18, 14, 0.58);
    border: 1px solid rgba(255, 244, 228, 0.25);
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

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

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

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    padding: 160px 32px 100px;
    flex-direction: column;
    color: var(--cream);
    background: rgba(33, 18, 14, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a,
  .main-nav a:nth-child(4) {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 244, 228, 0.18);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 400;
  }

  .hero {
    min-height: max(850px, calc(100svh - 32px));
  }

  .hero-layout {
    display: flex;
    min-height: max(850px, calc(100svh - 32px));
    align-items: stretch;
    justify-content: flex-end;
    flex-direction: column;
    padding-top: 150px;
    padding-bottom: 52px;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    max-width: 650px;
    margin-top: auto;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 10.5vw, 5.4rem);
  }

  .hero-lede {
    max-width: 520px;
    color: rgba(255, 244, 228, 0.84);
    font-size: 1rem;
  }

  .hero-facts {
    width: 100%;
    margin-top: 34px;
    background: rgba(9, 7, 6, 0.36);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  .hero-facts li {
    padding: 13px 10px;
  }

  .hero-facts li:first-child {
    padding-left: 10px;
  }

  .hero-facts strong {
    font-size: 1.05rem;
  }

  .hero-facts span {
    font-size: 0.6rem;
  }

  .hero-video-wrap {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
  }

  .hero-video-label,
  .hero-scroll {
    display: none;
  }

  .hero-video-card {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    margin: 0;
    border: 0;
    box-shadow: none;
  }

  .hero-video-card::before {
    display: none;
  }

  .hero-video-card video {
    object-position: center center;
  }

  .hero-video-scrim {
    background:
      linear-gradient(180deg, rgba(29, 16, 12, 0.68) 0%, rgba(29, 16, 12, 0.14) 29%, rgba(29, 16, 12, 0.34) 49%, rgba(29, 16, 12, 0.93) 78%, #1d100c 100%),
      linear-gradient(90deg, rgba(29, 16, 12, 0.35), transparent 70%);
  }

  .instagram-badge {
    top: 123px;
    left: 17px;
  }

  .hero-video-controls {
    top: 123px;
    right: 17px;
    bottom: auto;
  }

  .section-heading,
  .google-reviews-heading,
  .google-review-grid,
  .story-layout,
  .video-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .google-reviews-heading {
    gap: 30px;
    margin-bottom: 38px;
  }

  .google-rating-summary {
    width: min(100%, 390px);
  }

  .google-review-grid {
    gap: 16px;
  }

  .google-review-card {
    min-height: auto;
  }

  .section-heading {
    gap: 25px;
  }

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

  .product-image-wrap {
    aspect-ratio: 16 / 9;
  }

  .shop-note {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .shop-note .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .payment-promise,
  .store-intro-layout,
  .checkout-confidence,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .payment-promise p {
    min-height: 0;
  }

  .store-page .site-header,
  .store-page .site-header.is-sticky {
    position: relative;
    top: 0;
    background: var(--charcoal);
  }

  .store-intro {
    padding: 64px 0 70px;
  }

  .store-intro-layout {
    gap: 48px;
  }

  .checkout-confidence > div {
    padding-inline: 5px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .checkout-confidence > div:last-child {
    border-bottom: 0;
  }

  .store-embed-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-embed-heading p {
    text-align: left;
  }

  .legal-main {
    padding: 70px 0 90px;
  }

  .legal-layout {
    gap: 42px;
  }

  .legal-aside {
    position: static;
  }

  .video-layout {
    gap: 54px;
  }

  .reel-frame {
    width: min(100%, 410px);
    justify-self: center;
  }

  .story-layout {
    gap: 58px;
  }

  .story-photo {
    width: min(100%, 620px);
  }

  .story-copy {
    max-width: 670px;
  }

  .contact-layout {
    gap: 48px;
  }

  .whatsapp-panel {
    width: min(100%, 680px);
  }

  .store-drawer {
    display: block;
  }

  .store-drawer-backdrop {
    position: absolute;
    inset: 0;
  }

  .store-drawer-panel {
    margin-left: auto;
    width: min(100%, 680px);
  }

  .restaurant-panel {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .restaurant-panel .button {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    padding-bottom: 65px;
  }

  .announcement {
    gap: 6px;
    padding-inline: 10px;
  }

  .hero {
    min-height: max(810px, calc(100svh - 32px));
  }

  .hero-layout {
    min-height: max(810px, calc(100svh - 32px));
    padding-top: 135px;
    padding-bottom: 35px;
  }

  .hero h1 {
    margin-bottom: 19px;
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
  }

  .hero-lede {
    margin-bottom: 22px;
    font-size: 0.95rem;
    line-height: 1.48;
  }

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

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

  .hero-actions .text-link {
    display: none;
  }

  .hero-facts {
    margin-top: 24px;
  }

  .hero-facts strong {
    font-size: 0.97rem;
  }

  .hero-facts span {
    letter-spacing: 0.025em;
    text-transform: none;
  }

  .hero-video-card video {
    object-position: 50% center;
  }

  .instagram-badge {
    top: 112px;
    left: 14px;
    min-height: 34px;
    font-size: 0.66rem;
  }

  .hero-video-controls {
    top: 112px;
    right: 14px;
  }

  .hero-video-controls button {
    width: 38px;
    height: 34px;
    min-height: 34px;
    justify-content: center;
    padding: 6px;
  }

  .hero-video-controls button small {
    display: none;
  }

  .marquee-track {
    padding: 13px 0;
  }

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

  .product-grid {
    gap: 17px;
  }

  .product-info {
    grid-template-columns: 1fr;
    gap: 17px;
    min-height: 0;
    padding: 21px;
  }

  .product-buy {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .product-add {
    min-width: 148px;
    margin-top: 0;
    font-size: 0.66rem;
  }

  .shop-note {
    padding-inline: 5px;
  }

  .shop-note strong {
    font-size: 1.2rem;
  }

  .home-store {
    margin-top: 48px;
    scroll-margin-top: 20px;
  }

  .checkout-section {
    padding: 50px 0 85px;
  }

  .store-intro h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .store-embed-shell {
    min-height: 540px;
    padding: 28px 12px 42px;
  }

  .store-embed-heading {
    margin-inline: 8px;
  }

  .legal-main {
    padding: 52px 0 75px;
  }

  .legal-copy {
    padding: 32px 20px;
  }

  .legal-aside h1 {
    font-size: clamp(3rem, 14vw, 4.1rem);
    line-height: 1;
  }

  .reel-frame {
    padding: 8px;
  }

  .reel-frame iframe {
    height: 560px;
  }

  .story-photo {
    padding: 0 21px 21px 0;
  }

  .story-photo::before {
    left: 21px;
    height: calc(100% - 21px);
  }

  .story-photo figcaption {
    right: -2px;
    bottom: 50px;
  }

  .story-photo.story-photo-pair {
    padding: 0 58px 58px 0;
  }

  .story-photo.story-photo-pair::before {
    left: 25px;
    height: calc(100% - 29px);
  }

  .story-photo .story-photo-secondary {
    width: 51%;
    border-width: 5px;
  }

  .story-photo.story-photo-pair figcaption {
    right: auto;
    bottom: 19px;
    left: -4px;
  }

  .story-columns {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-details a,
  .contact-details a:nth-child(even) {
    padding: 16px 0;
    border-left: 0;
  }

  .whatsapp-panel {
    padding: 27px 21px;
  }

  .whatsapp-panel .button {
    width: 100%;
  }

  .store-drawer-panel {
    width: 100%;
    padding-inline: 14px;
  }

  .store-drawer-header {
    margin-inline: -14px;
    padding-inline: 16px;
  }

  .minimum-order-banner {
    margin-inline: 0;
  }

  .minimum-order-toast {
    right: 14px;
    bottom: 78px;
    max-width: calc(100vw - 28px);
  }

  .restaurant-panel {
    padding: 42px 25px;
  }

  .restaurant-panel .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-brand img {
    width: 270px;
    height: 230px;
    margin: 0 auto 12px;
    object-fit: cover;
    object-position: center;
  }

  .footer-brand p {
    margin-inline: auto;
    text-align: center;
  }

  .footer-grid > div:not(.footer-brand) {
    align-items: center;
  }

  .footer-bottom {
    align-items: center;
    gap: 8px;
    flex-direction: column;
    text-align: center;
  }

  .final-cta h2 {
    font-size: clamp(2.65rem, 12.5vw, 3.45rem);
    line-height: 1.02;
  }

  .mobile-shop {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 65px;
    padding: 9px 18px;
    color: #2f1a00;
    background: var(--gold);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.16);
    font-size: 0.89rem;
    font-weight: 900;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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