:root {
  --ink: #221d1a;
  --muted: #6f625b;
  --paper: #fffaf3;
  --linen: #efe3d2;
  --linen-soft: #f5ecdf;
  --wine: #6e1f32;
  --wine-deep: #3d101d;
  --gold: #c99345;
  --sage: #7c8a6d;
  --charcoal: #171311;
  --line: rgba(34, 29, 26, 0.14);
  --shadow: 0 20px 70px rgba(40, 18, 10, 0.14);
  --display: "Minion Variable Concept", "Minion Pro", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --text: "Minion Variable Concept", "Minion Pro", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --content: 1160px;
  --page-gutter: clamp(18px, 6vw, 86px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--text);
  font-optical-sizing: auto;
  font-size: 12px;
  line-height: 1.55;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px max(var(--page-gutter), calc((100vw - var(--content)) / 2));
  background: #100c0b;
  box-shadow: 0 10px 34px rgba(23, 19, 17, 0.18);
  color: #fffaf3;
  text-align: center;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: #100c0b;
  box-shadow: 0 10px 34px rgba(23, 19, 17, 0.26);
  color: #fffaf3;
}

.header-social {
  position: absolute;
  top: 24px;
  left: max(var(--page-gutter), calc((100vw - var(--content)) / 2));
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-social a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 250, 243, 0.34);
  border-radius: 50%;
  background: rgba(23, 19, 17, 0.16);
  color: #fffaf3;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 250, 243, 0.7);
  background: rgba(255, 250, 243, 0.12);
}

.header-social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-social a[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.header-social a[aria-label="Google Business"] svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}

.header-social a[aria-label="Tripadvisor"] svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.5;
}

.header-social a[aria-label="Tripadvisor"] circle {
  fill: currentColor;
  stroke: none;
}

.header-language {
  position: absolute;
  top: 24px;
  right: max(var(--page-gutter), calc((100vw - var(--content)) / 2));
  z-index: 3;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 243, 0.34);
  border-radius: 999px;
  background: rgba(23, 19, 17, 0.16);
}

.header-language a {
  display: grid;
  min-width: 34px;
  height: 30px;
  place-items: center;
  color: #fffaf3;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease;
}

.header-language a + a {
  border-left: 1px solid rgba(255, 250, 243, 0.24);
}

.header-language a:hover {
  background: rgba(255, 250, 243, 0.14);
}

.header-language a.is-active {
  background: rgba(255, 250, 243, 0.92);
  color: #171311;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-inline: auto;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(210px, 22vw, 280px);
  height: auto;
  background: transparent;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

.primary-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2.2vw, 30px);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav a {
  opacity: 0.88;
}

.primary-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  touch-action: manipulation;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 72vh;
  padding: 118px max(var(--page-gutter), calc((100vw - var(--content)) / 2)) 30px;
  overflow: hidden;
  color: #fffaf3;
  text-align: center;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 9, 7, 0.86) 0%, rgba(20, 9, 7, 0.62) 44%, rgba(20, 9, 7, 0.24) 100%),
    linear-gradient(0deg, rgba(23, 19, 17, 0.62) 0%, rgba(23, 19, 17, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: center;
  width: min(620px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin: 14px 0 0;
}

.section-head .eyebrow,
.feature-copy .eyebrow,
.gift .eyebrow,
.contact-copy .eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  font-family: var(--display);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  font-size: clamp(38px, 7.4vw, 86px);
  font-weight: 500;
}

h2 {
  font-size: clamp(26px, 4.2vw, 52px);
}

.hero-lead {
  width: min(520px, 100%);
  margin: 14px auto 0;
  font-size: clamp(12px, 1.35vw, 16px);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 250, 243, 0.82);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 15px;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: #21140e;
}

.button.secondary {
  border: 1px solid rgba(255, 250, 243, 0.58);
  color: #fffaf3;
}

.button.secondary.dark {
  border-color: rgba(255, 250, 243, 0.28);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(560px, 100%);
  margin: 28px auto 0;
}

.hero-stats div {
  border-top: 1px solid rgba(255, 250, 243, 0.4);
  padding-top: 9px;
}

.hero-stats dt {
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 700;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 250, 243, 0.75);
  font-size: 10px;
}

section {
  padding: clamp(34px, 4.5vw, 66px) max(var(--page-gutter), calc((100vw - var(--content)) / 2));
  text-align: center;
}

.band {
  border-block: 1px solid rgba(34, 29, 26, 0.08);
  background: linear-gradient(180deg, var(--linen-soft) 0%, var(--linen) 100%);
  color: var(--ink);
}

.gallery-section {
  padding-top: clamp(38px, 4.5vw, 62px);
  padding-bottom: clamp(38px, 4.5vw, 62px);
  background: #100c0b;
  color: #fffaf3;
}

.gallery-head {
  width: min(760px, 100%);
  margin: 0 auto clamp(18px, 2.8vw, 30px);
  text-align: center;
}

.gallery-head h2 {
  color: #fffaf3;
  font-size: clamp(24px, 3.6vw, 42px);
  font-weight: 400;
  line-height: 1.04;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(120px, 13vw, 190px);
  gap: 8px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 243, 0.08);
  border-radius: 8px;
  background: #171311;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-row: span 2;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5),
.gallery-item:nth-child(9) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
  transition: filter 180ms ease, transform 220ms ease;
}

.gallery-item:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.02);
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(240px, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  justify-items: center;
}

.intro,
.classes,
.gift {
  border-block: 1px solid rgba(34, 29, 26, 0.08);
  background: linear-gradient(180deg, var(--linen-soft) 0%, var(--linen) 100%);
  color: var(--ink);
}

.intro p:last-child,
.feature-copy p,
.class-layout p,
.contact-copy p,
.gift p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(13px, 1.45vw, 16px);
}

.section-head {
  width: min(820px, 100%);
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  color: var(--wine-deep);
}

.intro .section-head h2,
.feature-copy h2,
.menu-section .section-head h2,
.classes .section-head h2,
.events .section-head h2,
.gift h2,
.contact h2 {
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.12;
}

.intro .section-head h2,
.feature-copy h2,
.classes .section-head h2,
.gift h2 {
  color: #171311;
}

.experience {
  padding-top: clamp(48px, 6vw, 72px);
  background: var(--charcoal);
  color: #fffaf3;
}

.experience .section-head h2 {
  color: #fffaf3;
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 300;
  line-height: 1.08;
}

.experience .section-head::after {
  display: block;
  width: 58px;
  height: 1px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, rgba(201, 147, 69, 0.86), transparent);
  content: "";
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.steps article {
  flex: 1 1 168px;
  max-width: 180px;
  min-height: 182px;
  padding: 16px 14px 18px;
  border: 1px solid rgba(255, 250, 243, 0.11);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.07), rgba(255, 250, 243, 0.035));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
  text-align: center;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.steps article:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 147, 69, 0.36);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.085), rgba(255, 250, 243, 0.045));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.2);
}

.step-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.step-icon {
  display: grid;
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(201, 147, 69, 0.26);
  border-radius: 8px;
  background: radial-gradient(circle at 50% 30%, rgba(255, 250, 243, 0.09), rgba(110, 31, 50, 0.2) 68%);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 243, 0.05);
}

.step-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.step-icon img[src*="gabriel-card-insert"] {
  width: 54px;
  height: 54px;
}

.step-icon img[src*="cartinsert"] {
  width: 64px;
  height: 64px;
}

.step-icon img[src*="icon-card-insert-clear"] {
  width: 56px;
  height: 56px;
}

.step-icon img[src*="gabriel-wine-glass"] {
  width: 58px;
  height: 52px;
}

.step-icon img[src*="icon-wine-bottle-elegant"] {
  width: 56px;
  height: 56px;
}

.step-icon img[src*="gabriel-glass-set"] {
  width: 60px;
  height: 48px;
}

.step-icon img[src*="gabriel-glass-single"] {
  width: 44px;
  height: 60px;
}

.step-icon img[src*="gabriel-press-button"] {
  width: 54px;
  height: 54px;
}

h3 {
  margin: 14px 0 6px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.15;
}

.steps h3 {
  margin-bottom: 7px;
  color: #fffaf3;
  font-size: 15px;
  font-weight: 600;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.steps p,
.menu-grid p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
}

.steps p {
  color: rgba(255, 250, 243, 0.72);
  font-size: clamp(12px, 1.25vw, 14px);
  line-height: 1.28;
}

.feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 0.85fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  justify-items: center;
  border-block: 1px solid rgba(34, 29, 26, 0.08);
  background: linear-gradient(180deg, var(--linen-soft) 0%, var(--linen) 100%);
  color: var(--ink);
}

.feature-copy {
  max-width: 560px;
}

.feature-list {
  display: grid;
  gap: 0;
  width: min(380px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 250, 243, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.08), rgba(255, 250, 243, 0.025)),
    #171311;
  box-shadow: 0 16px 38px rgba(23, 19, 17, 0.18);
}

.feature-list div {
  display: grid;
  grid-template-columns: minmax(84px, auto) minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  gap: 14px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 250, 243, 0.12);
  background: transparent;
  color: #fffaf3;
  text-align: left;
}

.feature-list div:last-child {
  border-bottom: 0;
}

.feature-list strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.feature-list span {
  color: rgba(255, 250, 243, 0.72);
  font-size: clamp(10px, 1.1vw, 12px);
  line-height: 1.2;
  text-align: left;
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(16, 12, 11, 0.86), rgba(16, 12, 11, 0.9)),
    url("assets/gallery/gallery-08.webp") center / cover;
  color: #fffaf3;
}

.menu-section .section-head h2 {
  color: #fffaf3;
}

.menu-grid {
  display: grid;
  width: min(620px, 100%);
  margin: 16px auto 0;
  gap: 0;
  border-block: 1px solid rgba(255, 250, 243, 0.18);
}

.menu-grid article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  min-height: 0;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 250, 243, 0.2);
  background: transparent;
  text-align: left;
}

.menu-grid article:last-child {
  border-bottom: 0;
}

.menu-grid h3 {
  margin: 0;
  color: #fffaf3;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.menu-grid strong {
  margin-top: 0;
  color: #fffaf3;
  font-family: var(--display);
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500;
  line-height: 1;
}

.menu-grid p {
  margin-top: 3px;
  color: rgba(255, 250, 243, 0.82);
  font-size: clamp(11px, 1.25vw, 14px);
  line-height: 1.22;
}

.events {
  background:
    linear-gradient(180deg, #100c0b 0%, #171311 100%);
  color: #fffaf3;
}

.events .section-head h2 {
  color: #fffaf3;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.96fr) minmax(280px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  width: min(920px, 100%);
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 243, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.12), rgba(255, 250, 243, 0.035)),
    rgba(255, 250, 243, 0.06);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  text-align: left;
}

.event-media {
  display: grid;
  min-width: 0;
  place-items: center;
  background: rgba(0, 0, 0, 0.2);
}

.event-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.event-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 3vw, 30px);
}

.event-card h3 {
  margin: 8px 0 12px;
  color: #fffaf3;
  font-size: clamp(17px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.12;
}

.event-card .event-date {
  color: var(--gold);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-card p {
  margin: 0;
  color: rgba(255, 250, 243, 0.74);
  font-size: clamp(12px, 1.25vw, 15px);
  line-height: 1.42;
}

.event-details {
  display: grid;
  gap: 0;
  margin: 16px 0 18px;
  border-block: 1px solid rgba(255, 250, 243, 0.16);
}

.event-details div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 250, 243, 0.12);
}

.event-details div:last-child {
  border-bottom: 0;
}

.event-details dt,
.event-details dd {
  margin: 0;
  font-size: clamp(11px, 1.2vw, 13px);
  line-height: 1.25;
}

.event-details dt {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

.event-details dd {
  color: rgba(255, 250, 243, 0.8);
}

.event-card .button {
  align-self: center;
  width: max-content;
  white-space: nowrap;
}

.classes {
  display: grid;
  gap: 18px;
}

.class-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(220px, 0.65fr);
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
  justify-items: center;
}

.class-layout ul {
  display: grid;
  gap: 7px;
  width: min(420px, 100%);
  margin: 0;
  padding: 0;
  list-style: none;
}

.class-layout li {
  border-bottom: 1px solid rgba(34, 29, 26, 0.12);
  padding: 0 0 7px;
  color: var(--wine-deep);
  font-weight: 700;
}

.classes .button {
  width: max-content;
  justify-self: center;
}

.gift {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(220px, 0.62fr);
  gap: clamp(16px, 4vw, 50px);
  align-items: center;
  justify-items: center;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 0.72fr);
  gap: clamp(18px, 4vw, 45px);
  justify-items: center;
  border-top: 1px solid rgba(255, 250, 243, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(110, 31, 50, 0.22), transparent 42%),
    linear-gradient(180deg, #171311 0%, #100c0b 100%);
  color: #fffaf3;
  overflow: hidden;
}

.contact::before {
  position: absolute;
  inset: 14% 8% auto auto;
  width: min(320px, 48vw);
  height: min(320px, 48vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 147, 69, 0.18), transparent 68%);
  content: "";
  filter: blur(6px);
  pointer-events: none;
  animation: contactGlow 7s ease-in-out infinite;
}

.contact-copy,
.contact-panel {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
}

.contact h2 {
  color: #fffaf3;
}

.contact-copy p {
  color: rgba(255, 250, 243, 0.74);
}

.contact .button {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.contact .button.primary {
  animation: contactButtonPulse 4.8s ease-in-out infinite;
}

.contact-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 243, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.13), rgba(255, 250, 243, 0.045)),
    rgba(255, 250, 243, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  animation: contactPanelFloat 6s ease-in-out infinite;
}

.contact-panel > div {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.06), rgba(255, 250, 243, 0.025));
  text-align: center;
}

.contact-panel h3 {
  margin-top: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-panel p {
  color: rgba(255, 250, 243, 0.72);
  font-size: clamp(12px, 1.25vw, 14px);
}

.hours p {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  gap: 18px;
  border-top: 1px solid rgba(255, 250, 243, 0.14);
  padding-top: 8px;
}

@keyframes contactPanelFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes contactButtonPulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), 0 0 0 rgba(201, 147, 69, 0);
  }

  50% {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 22px rgba(201, 147, 69, 0.18);
  }
}

@keyframes contactGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate3d(-18px, 12px, 0) scale(1.08);
    opacity: 1;
  }
}

.map-section {
  padding: 0;
  border-top: 1px solid rgba(255, 250, 243, 0.08);
  background: #100c0b;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: min(38vh, 320px);
  min-height: 220px;
  border: 0;
  filter: grayscale(0.2) contrast(0.95);
}

.whatsapp-widget {
  position: fixed;
  z-index: 45;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  display: grid;
  gap: 8px;
  justify-items: end;
  pointer-events: none;
}

.whatsapp-widget a {
  display: inline-flex;
  min-height: 40px;
  max-width: min(280px, calc(100vw - 32px));
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 250, 243, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.12), rgba(255, 250, 243, 0.04)),
    rgba(16, 12, 11, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
  color: #fffaf3;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  pointer-events: auto;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.whatsapp-widget a:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 211, 102, 0.72);
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(255, 250, 243, 0.04)),
    rgba(16, 12, 11, 0.96);
}

.whatsapp-widget a::before {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #100c0b;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  content: "WA";
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px max(var(--page-gutter), calc((100vw - var(--content)) / 2));
  border-top: 1px solid rgba(255, 250, 243, 0.08);
  background: #100c0b;
  color: rgba(255, 250, 243, 0.7);
  font-size: 10px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.site-footer a {
  color: #fffaf3;
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav-toggle {
    position: absolute;
    top: 18px;
    right: 18px;
    display: block;
  }

  .primary-nav {
    position: absolute;
    z-index: 5;
    top: calc(100% + 4px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
    background: #fffaf3;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 11px 14px;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    border: 0;
    border-radius: 0;
    background: var(--wine);
    color: #fffaf3;
  }

  .intro,
  .feature,
  .event-card,
  .class-layout,
  .gift,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .event-card {
    text-align: center;
  }

  .event-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .event-card .button {
    justify-self: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(150px, 28vw, 240px);
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(9),
  .gallery-item:nth-child(10) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(6) {
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 8px;
    padding: 52px 16px 10px;
  }

  .header-social {
    top: 14px;
    left: 12px;
    gap: 3px;
  }

  .header-social a {
    width: 22px;
    height: 22px;
  }

  .header-social svg {
    width: 13px;
    height: 13px;
  }

  .header-social a[aria-label="Google Business"] svg {
    width: 14px;
    height: 14px;
  }

  .header-social a[aria-label="Tripadvisor"] svg {
    width: 14px;
    height: 14px;
  }

  .header-language {
    top: 12px;
    right: 60px;
    left: auto;
    transform: none;
  }

  .header-language a {
    min-width: 27px;
    height: 26px;
    font-size: 9px;
  }

  .nav-toggle {
    top: 8px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .primary-nav {
    right: 12px;
    left: 12px;
  }

  .brand-logo {
    width: clamp(146px, 46vw, 164px);
    height: auto;
  }

  .hero {
    min-height: 70vh;
    padding: 92px 18px 24px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .whatsapp-widget {
    right: 12px;
    bottom: 12px;
    gap: 7px;
  }

  .whatsapp-widget a {
    min-height: 36px;
    padding: 8px 11px;
    font-size: 10px;
  }

  .whatsapp-widget a::before {
    width: 21px;
    height: 21px;
    font-size: 8px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  section {
    padding: 34px 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(9) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  h2 {
    font-size: 26px;
  }

  .steps {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .steps article {
    min-height: 160px;
  }

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

  .menu-grid article {
    gap: 10px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hours p {
    align-items: center;
    flex-direction: column;
    gap: 3px;
  }

  .feature-list span {
    text-align: left;
  }
}
