:root {
  color-scheme: light;
  --color-ink: #181614;
  --color-muted: #625b53;
  --color-line: #d8ccb8;
  --color-paper: #f5eedf;
  --color-paper-soft: #fbf6ec;
  --color-paper-deep: #eadfc9;
  --color-white: #ffffff;
  --color-orange: #ef6a2f;
  --color-orange-dark: #b9481f;
  --color-green: #537b32;
  --color-mint: #dce8b5;
  --color-yellow: #eab447;
  --surface-panel: rgba(251, 246, 236, 0.9);
  --surface-panel-strong: rgba(255, 248, 236, 0.94);
  --border-soft: 1px solid rgba(24, 22, 20, 0.13);
  --shadow-soft: 0 18px 54px rgba(47, 39, 31, 0.1);
  --shadow-lift: 0 24px 62px rgba(47, 39, 31, 0.14);
  --header-height: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    linear-gradient(rgba(24, 22, 20, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 22, 20, 0.018) 1px, transparent 1px),
    linear-gradient(135deg, rgba(239, 106, 47, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(83, 123, 50, 0.12), transparent 30%),
    linear-gradient(180deg, #fbf6ec 0%, #f5eedf 48%, #fbf6ec 100%);
  background-size: 16px 16px, 16px 16px, auto, auto, auto;
}

.site-header {
  animation: page-fade-in 420ms ease both;
}

main > * {
  animation: page-section-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

main > *:nth-child(2) {
  animation-delay: 60ms;
}

main > *:nth-child(3) {
  animation-delay: 100ms;
}

main > *:nth-child(4) {
  animation-delay: 140ms;
}

main > *:nth-child(5) {
  animation-delay: 180ms;
}

main > *:nth-child(6) {
  animation-delay: 220ms;
}

main > *:nth-child(7) {
  animation-delay: 260ms;
}

body::selection {
  background: var(--color-yellow);
  color: var(--color-ink);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 12px clamp(18px, 4vw, 64px);
  background:
    linear-gradient(rgba(24, 22, 20, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 22, 20, 0.02) 1px, transparent 1px),
    linear-gradient(105deg, rgba(239, 106, 47, 0.24), rgba(247, 210, 190, 0.94) 42%, rgba(220, 232, 181, 0.42));
  background-size: 16px 16px, 16px 16px, auto;
  border-bottom: 1px solid rgba(24, 22, 20, 0.14);
  box-shadow: 0 10px 34px rgba(47, 39, 31, 0.08);
  backdrop-filter: blur(14px);
}

.site-header::after {
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  bottom: -1px;
  left: clamp(18px, 4vw, 64px);
  height: 1px;
  background: linear-gradient(90deg, rgba(239, 106, 47, 0.58), rgba(234, 180, 71, 0.28), rgba(83, 123, 50, 0.45));
  content: "";
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  max-height: 90px;
  overflow: hidden;
  transition: opacity 220ms ease, transform 220ms ease, max-height 220ms ease;
}

.site-header[data-header]:not(.site-header--brand-visible) .brand {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.brand__mark {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(24, 22, 20, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(239, 106, 47, 0.12), rgba(220, 232, 181, 0.28)),
    var(--color-paper-soft);
  box-shadow:
    0 10px 24px rgba(47, 39, 31, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.brand__mark img {
  width: auto;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(24, 22, 20, 0.1));
  transform: translateX(3px);
  transition: transform 220ms ease;
}

.brand:hover .brand__mark,
.brand:focus-visible .brand__mark {
  background:
    linear-gradient(145deg, rgba(239, 106, 47, 0.2), rgba(220, 232, 181, 0.36)),
    var(--color-paper-soft);
  box-shadow:
    0 16px 32px rgba(47, 39, 31, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.68);
  transform: translateY(-3px) rotate(-2deg);
}

.brand:hover .brand__mark img,
.brand:focus-visible .brand__mark img {
  transform: translateX(3px) scale(1.045);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 16px);
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-orange-dark);
  border-color: rgba(197, 72, 31, 0.2);
  background: rgba(251, 246, 236, 0.46);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100svh - var(--header-height) - 32px);
  padding: clamp(34px, 6vw, 88px) clamp(18px, 6vw, 88px) 48px;
}

.hero__content {
  max-width: 720px;
}

.hero__title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: fit-content;
  margin-bottom: 18px;
}

.hero__title img {
  height: 138px;
  width: auto;
  flex: 0 0 auto;
  margin-top: 0;
  opacity: 0.92;
  transform: none;
  filter: drop-shadow(0 12px 18px rgba(47, 39, 31, 0.12));
  pointer-events: none;
}

.hero__title h1 {
  margin-bottom: 0;
}

.hero__title-line {
  display: block;
}

.hero__title-line--iris {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.92em;
  font-weight: 700;
  line-height: 0.92;
}

.hero__title-line--drinketeria {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.08em;
  font-weight: 700;
  line-height: 0.88;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 10.5ch;
  font-size: 5rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.35rem;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

p {
  color: var(--color-muted);
  line-height: 1.65;
}

.hero__text {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1.18rem;
}

.hero__actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__socials {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--color-ink);
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button--primary {
  color: var(--color-white);
  background: var(--color-orange);
  border-color: var(--color-orange);
  box-shadow: 0 12px 28px rgba(185, 72, 31, 0.18);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  box-shadow: 0 16px 34px rgba(185, 72, 31, 0.24);
}

.hero__cta {
  min-height: 82px;
  padding-inline: 54px;
  font-size: 1.92rem;
}

.button--ghost {
  color: var(--color-ink);
  background: var(--color-white);
}

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(24, 22, 20, 0.18);
  border-radius: 8px;
  background: rgba(251, 246, 236, 0.36);
  text-decoration: none;
  transition: transform 160ms ease, opacity 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  opacity: 0.78;
  transform: translateY(-2px);
  border-color: rgba(24, 22, 20, 0.32);
  background: rgba(255, 255, 255, 0.18);
}

.social-link img {
  width: 30px;
  height: 30px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero__meta li {
  padding: 9px 12px;
  color: #3c352f;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero__meta li:nth-child(1) {
  background: linear-gradient(135deg, rgba(239, 106, 47, 0.18), rgba(234, 180, 71, 0.16));
  border-color: rgba(185, 72, 31, 0.24);
}

.hero__meta li:nth-child(2) {
  background: linear-gradient(135deg, rgba(83, 123, 50, 0.18), rgba(220, 232, 181, 0.45));
  border-color: rgba(83, 123, 50, 0.24);
}

.hero__meta li:nth-child(3) {
  background: linear-gradient(135deg, rgba(234, 180, 71, 0.18), rgba(83, 123, 50, 0.16));
  border-color: rgba(24, 22, 20, 0.16);
}

.hero__visual {
  position: relative;
  isolation: isolate;
  width: min(100%, 620px);
  padding: clamp(8px, 1.4vw, 14px);
  margin: 0 auto;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(245, 238, 223, 0.52)),
    var(--surface-panel);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.hero__visual--mobile {
  display: none;
}

.hero__visual::before {
  position: absolute;
  inset: 9% -6% -8% 12%;
  z-index: -2;
  content: "";
  background:
    linear-gradient(135deg, rgba(191, 212, 106, 0.58), rgba(83, 123, 50, 0.26)),
    #dce8b5;
  border-radius: 8px;
  transform: rotate(-2.5deg);
  box-shadow: 0 24px 70px rgba(92, 158, 72, 0.14);
}

.hero__visual::after {
  position: absolute;
  inset: -2% 16% 16% -5%;
  z-index: -3;
  content: "";
  background: linear-gradient(135deg, rgba(239, 106, 47, 0.34), rgba(234, 180, 71, 0.28));
  border-radius: 8px;
  transform: rotate(2deg);
}

.hero__image {
  display: block;
  object-fit: cover;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.hero__image--main {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border-radius: 8px;
  object-position: center 48%;
  box-shadow:
    0 30px 76px rgba(50, 34, 20, 0.18),
    0 0 0 1px rgba(47, 39, 31, 0.04);
}

.hero__image--main:hover {
  filter: saturate(1.06);
  transform: translateY(-4px);
  box-shadow:
    0 36px 84px rgba(50, 34, 20, 0.22),
    0 0 0 1px rgba(47, 39, 31, 0.06);
}

.hero__image--accent {
  position: absolute;
  bottom: -9%;
  left: -11%;
  z-index: 2;
  width: min(38%, 230px);
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-position: center 52%;
  box-shadow:
    0 22px 48px rgba(24, 39, 34, 0.2),
    0 0 0 1px rgba(47, 39, 31, 0.04);
  transform: rotate(-7deg);
}

.hero__image--accent:hover {
  filter: saturate(1.08);
  transform: translateY(-5px) rotate(-10deg);
  box-shadow:
    0 28px 56px rgba(24, 39, 34, 0.24),
    0 0 0 1px rgba(47, 39, 31, 0.06);
}

.hero__image--detail {
  position: absolute;
  top: -9%;
  right: -11%;
  z-index: 2;
  width: min(35%, 215px);
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  object-position: center 45%;
  box-shadow:
    0 22px 48px rgba(50, 34, 20, 0.18),
    0 0 0 1px rgba(47, 39, 31, 0.04);
  transform: rotate(6deg);
}

.hero__image--detail:hover {
  filter: saturate(1.08);
  transform: translateY(-5px) rotate(9deg);
  box-shadow:
    0 28px 56px rgba(50, 34, 20, 0.22),
    0 0 0 1px rgba(47, 39, 31, 0.06);
}

.thanks-visual {
  position: relative;
  isolation: isolate;
  width: min(100%, 520px);
  margin: 0 auto;
}

.thanks-visual::before {
  position: absolute;
  inset: 8% -8% -7% 10%;
  z-index: -1;
  content: "";
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(239, 106, 47, 0.32), rgba(234, 180, 71, 0.2));
  transform: rotate(3deg);
  box-shadow: 0 22px 56px rgba(185, 72, 31, 0.14);
}

.thanks-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  box-shadow:
    0 24px 62px rgba(47, 39, 31, 0.18),
    0 0 0 1px rgba(24, 22, 20, 0.08);
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
}

.thanks-visual img:hover {
  filter: saturate(1.06);
  transform: translateY(-4px) rotate(-1deg);
  box-shadow:
    0 30px 72px rgba(47, 39, 31, 0.22),
    0 0 0 1px rgba(24, 22, 20, 0.1);
}

.section,
.services,
.menu-section,
.faq-section,
.quote-section {
  padding: clamp(66px, 8vw, 104px) clamp(18px, 6vw, 88px);
}

.section--compact {
  padding-top: 50px;
}

.section__intro {
  max-width: 820px;
  margin-bottom: 34px;
}

.service-item,
.quote-form,
.quote-card {
  border: var(--border-soft);
  border-radius: 8px;
  background: var(--surface-panel);
  box-shadow: var(--shadow-soft);
}

.service-item p {
  margin-bottom: 0;
}

.services {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 12% 18%, rgba(239, 106, 47, 0.12), transparent 28%),
    radial-gradient(circle at 88% 88%, rgba(83, 123, 50, 0.14), transparent 34%),
    var(--color-ink);
  background-size: 16px 16px, 16px 16px, auto, auto, auto;
}

.services h2,
.services h3,
.services .eyebrow {
  color: var(--color-white);
}

.services p {
  color: #d7cec3;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-item {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: #211e1b;
  border-color: rgba(234, 180, 71, 0.26);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-item::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: linear-gradient(180deg, var(--color-orange), var(--color-mint));
  opacity: 0.85;
}

.service-item:hover {
  border-color: rgba(234, 180, 71, 0.38);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.menu-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  background:
    linear-gradient(rgba(24, 22, 20, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 22, 20, 0.018) 1px, transparent 1px),
    linear-gradient(118deg, rgba(239, 106, 47, 0.14), transparent 34%),
    linear-gradient(286deg, rgba(83, 123, 50, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(245, 238, 223, 0), rgba(234, 223, 201, 0.78)),
    var(--color-paper);
  background-size: 18px 18px, 18px 18px, auto, auto, auto, auto;
}

.menu-section::before,
.menu-section::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.menu-section::before {
  top: 58px;
  right: -86px;
  width: min(48vw, 640px);
  height: 72%;
  border: 1px solid rgba(24, 22, 20, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(239, 106, 47, 0.16), rgba(234, 180, 71, 0.1) 42%, rgba(83, 123, 50, 0.12)),
    rgba(251, 246, 236, 0.38);
  box-shadow: 0 30px 80px rgba(47, 39, 31, 0.08);
  opacity: 0.76;
  transform: rotate(-2.5deg);
}

.menu-section::after {
  bottom: 48px;
  left: clamp(18px, 5vw, 72px);
  width: min(33vw, 430px);
  height: 155px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(83, 123, 50, 0.11) 0 14px,
      rgba(220, 232, 181, 0.1) 14px 28px
    );
  clip-path: polygon(0 15%, 88% 0, 100% 72%, 13% 100%);
  opacity: 0.5;
  transform: rotate(3deg);
}

.menu-copy {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  z-index: 1;
}

.menu-copy::after {
  position: absolute;
  top: 118px;
  left: -10px;
  z-index: -1;
  color: rgba(197, 72, 31, 0.08);
  content: "MENU";
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(7rem, 16vw, 15rem);
  line-height: 0.8;
  pointer-events: none;
  transform: rotate(-4deg);
  white-space: nowrap;
}

.menu-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.drink-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 8px;
  border: var(--border-soft);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.92), rgba(245, 238, 223, 0.74)),
    var(--surface-panel);
  box-shadow: var(--shadow-soft);
}

.drink-option {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--color-ink);
  background: transparent;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.drink-option:hover,
.drink-option:focus-visible {
  background: rgba(239, 106, 47, 0.12);
  border-color: rgba(239, 106, 47, 0.28);
  transform: translateY(-1px);
}

.drink-option.is-active {
  color: var(--color-white);
  background: var(--color-orange);
  border-color: var(--color-orange);
  box-shadow: 0 8px 18px rgba(201, 79, 36, 0.24);
}

.drink-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  padding: clamp(16px, 3vw, 28px);
  border: var(--border-soft);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.92), rgba(245, 238, 223, 0.78)),
    var(--surface-panel);
  box-shadow: var(--shadow-soft);
}

.drink-detail img,
.drink-info {
  transition: opacity 220ms ease, transform 220ms ease;
}

.drink-detail.is-changing img,
.drink-detail.is-changing .drink-info {
  opacity: 0;
  transform: translateY(8px) scale(0.985);
}

.drink-art {
  margin: 0;
  position: relative;
  isolation: isolate;
}

.drink-art::before {
  position: absolute;
  inset: 7% 2% -4% -5%;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, rgba(239, 106, 47, 0.2), rgba(234, 180, 71, 0.18));
  border-radius: 8px;
  transform: rotate(2deg);
}

.drink-art img {
  width: min(100%, 330px);
  margin-inline: auto;
  border: 7px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(47, 39, 31, 0.16);
}

.drink-info {
  padding: 0;
}

.drink-info h3 {
  margin-bottom: 12px;
  font-size: 2.2rem;
  line-height: 1;
}

.drink-info strong {
  display: block;
  margin-top: 18px;
  color: var(--color-orange-dark);
  font-size: 1rem;
}

.button--ifood {
  width: fit-content;
  min-height: 44px;
  margin-top: 22px;
  color: var(--color-orange-dark);
  background:
    linear-gradient(135deg, rgba(239, 106, 47, 0.16), rgba(234, 180, 71, 0.2)),
    rgba(251, 246, 236, 0.88);
  border-color: rgba(185, 72, 31, 0.28);
  box-shadow: 0 10px 24px rgba(185, 72, 31, 0.12);
}

.button--ifood:hover,
.button--ifood:focus-visible {
  color: var(--color-white);
  background: var(--color-orange);
  border-color: var(--color-orange);
  box-shadow: 0 14px 28px rgba(185, 72, 31, 0.2);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  isolation: isolate;
  padding: clamp(18px, 3vw, 28px);
  border: var(--border-soft);
  border-radius: 8px;
  background:
    linear-gradient(rgba(24, 22, 20, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 22, 20, 0.025) 1px, transparent 1px),
    var(--surface-panel);
  background-size: 16px 16px, 16px 16px, auto;
  box-shadow: var(--shadow-soft);
}

.faq-copy::before {
  position: absolute;
  inset: -10px auto auto -10px;
  z-index: -1;
  width: 84px;
  height: 84px;
  content: "";
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(239, 106, 47, 0.34), rgba(234, 180, 71, 0.2));
  transform: rotate(-4deg);
}

.faq-copy h2 {
  margin-bottom: 14px;
}

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

.faq-item {
  overflow: hidden;
  border: var(--border-soft);
  border-radius: 8px;
  background: var(--surface-panel);
  box-shadow: 0 10px 28px rgba(47, 39, 31, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.faq-item:nth-child(3n + 1) {
  background:
    linear-gradient(135deg, rgba(239, 106, 47, 0.08), transparent 42%),
    rgba(251, 246, 236, 0.9);
}

.faq-item:nth-child(3n + 2) {
  background:
    linear-gradient(135deg, rgba(83, 123, 50, 0.09), transparent 42%),
    rgba(251, 246, 236, 0.9);
}

.faq-item:nth-child(3n) {
  background:
    linear-gradient(135deg, rgba(234, 180, 71, 0.12), transparent 42%),
    rgba(251, 246, 236, 0.9);
}

.faq-item summary {
  position: relative;
  padding: 20px 54px 20px 20px;
  color: var(--color-ink);
  font-weight: 900;
  list-style: none;
  cursor: pointer;
  transition: color 160ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0;
  content: "+";
  border: 1px solid rgba(24, 22, 20, 0.16);
  border-radius: 999px;
  color: var(--color-orange-dark);
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-item[open] summary::after {
  content: "-";
  color: var(--color-white);
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.faq-item[open] summary {
  color: var(--color-orange-dark);
}

.faq-item:hover {
  border-color: rgba(185, 72, 31, 0.22);
  transform: translateY(-2px) scale(1.006);
  box-shadow: 0 16px 34px rgba(47, 39, 31, 0.11);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  animation: faq-reveal 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.event-card {
  position: relative;
  overflow: hidden;
  min-height: 308px;
  padding: 0;
  border: var(--border-soft);
  border-radius: 8px;
  background: var(--surface-panel);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.event-card::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 50%;
  content: "";
  background: linear-gradient(180deg, rgba(24, 22, 20, 0), rgba(24, 22, 20, 0.82));
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--color-mint);
  transition: transform 220ms ease, filter 220ms ease;
}

.event-card span {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  z-index: 2;
  color: var(--color-white);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  text-transform: uppercase;
}

.event-card:hover img,
.event-card:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.event-card:hover,
.event-card:focus-visible {
  border-color: rgba(185, 72, 31, 0.24);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.event-dialog {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(24, 22, 20, 0.72);
  backdrop-filter: blur(3px);
  animation: event-backdrop-in 240ms ease both;
}

.event-dialog[hidden] {
  display: none;
}

.event-dialog__panel {
  position: relative;
  width: min(620px, 100%);
  border-radius: 8px;
  border: var(--border-soft);
  background:
    linear-gradient(rgba(24, 22, 20, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 22, 20, 0.025) 1px, transparent 1px),
    var(--color-paper-soft);
  background-size: 16px 16px, 16px 16px, auto;
  box-shadow: 0 28px 90px rgba(24, 22, 20, 0.28);
  animation: event-panel-in 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.event-dialog__content {
  padding: clamp(18px, 3vw, 26px);
}

.event-dialog__heading {
  display: flex;
  align-items: center;
}

.event-dialog__content h3 {
  margin-bottom: 8px;
  font-size: 1.9rem;
}

.event-dialog__description {
  max-width: 540px;
  margin-bottom: 18px;
}

.event-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  width: 38px;
  height: 38px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 22, 20, 0.16);
  border-radius: 999px;
  color: var(--color-ink);
  background: rgba(251, 246, 236, 0.92);
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.event-dialog__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.event-dialog__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(190px, 0.72fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: 330px;
}

.event-dialog__gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 38px rgba(24, 22, 20, 0.16);
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
  animation: event-image-in 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.event-dialog__gallery img.is-featured {
  grid-row: 1 / span 2;
  min-height: 0;
}

.event-dialog__gallery img:nth-child(2) {
  animation-delay: 40ms;
}

.event-dialog__gallery img:nth-child(3) {
  animation-delay: 80ms;
}

.event-dialog__gallery img:hover {
  filter: saturate(1.08);
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 22px 46px rgba(24, 22, 20, 0.22);
}

@keyframes event-backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes event-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes event-image-in {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes page-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes page-section-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 1.04fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  min-width: 0;
}

.quote-copy {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.quote-card {
  padding: 18px;
  margin-top: 24px;
}

.quote-card--form {
  margin-top: 22px;
}

.quote-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.quote-card strong {
  display: block;
  overflow-wrap: anywhere;
}

.quote-visual {
  position: relative;
  isolation: isolate;
  width: min(100%, 410px);
  padding: 10px;
  margin: 24px 0 0;
  border: var(--border-soft);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(239, 106, 47, 0.14), rgba(234, 180, 71, 0.18)),
    var(--surface-panel);
  box-shadow: var(--shadow-soft);
}

.quote-visual::before {
  position: absolute;
  inset: 7% -4% -5% 12%;
  z-index: -1;
  content: "";
  background: #eadfc9;
  border-radius: 8px;
  transform: rotate(-2deg);
}

.quote-image {
  width: auto;
  max-width: 100%;
  max-height: min(54vh, 520px);
  margin: 0 auto;
  border: 6px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  background: rgba(24, 22, 20, 0.92);
  box-shadow: 0 18px 42px rgba(47, 39, 31, 0.14);
  object-fit: contain;
  object-position: center;
}

.quote-form {
  min-width: 0;
  padding: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.94), rgba(245, 238, 223, 0.82)),
    var(--surface-panel);
}

.quote-form-column {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.form-note {
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(24, 22, 20, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-weight: 600;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(92, 158, 72, 0.22);
  border-color: var(--color-green);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(83, 123, 50, 0.08);
}

textarea {
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-actions {
  margin-top: 22px;
}

.recaptcha-message {
  margin: 12px 0 0;
  color: #b3261e;
  font-size: 0.9rem;
  font-weight: 800;
  animation: faq-reveal 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.form-consent {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.form-consent a {
  color: var(--color-ink);
  font-weight: 800;
  text-decoration-color: rgba(197, 72, 31, 0.45);
  text-underline-offset: 3px;
}

.form-return-time {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 6vw, 88px);
  color: var(--color-white);
  background: var(--color-ink);
}

.site-footer p {
  margin: 0;
  color: #d7cec3;
}

.site-footer__legal {
  margin-top: 8px;
  color: rgba(215, 206, 195, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
}

.site-footer__credit {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: rgba(215, 206, 195, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}

.site-footer__social {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--color-ink);
  background: #d7cec3;
  border-radius: 50%;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-footer__social svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.site-footer__social:hover,
.site-footer__social:focus-visible {
  color: var(--color-white);
  background: var(--color-orange);
  transform: translateY(-2px) scale(1.06);
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer a {
  font-weight: 900;
}

.site-footer strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
}

.privacy-page {
  padding: calc(var(--header-height) + 72px) clamp(20px, 6vw, 96px) 72px;
}

.privacy-document {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(24, 22, 20, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.94), rgba(246, 226, 206, 0.72)),
    var(--color-paper);
  box-shadow: 0 22px 70px rgba(47, 39, 31, 0.11);
}

.privacy-document h1 {
  max-width: 720px;
  margin: 10px 0 20px;
  font-size: clamp(3rem, 9vw, 6.6rem);
}

.privacy-document h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.privacy-document p,
.privacy-document li {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.privacy-document ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.privacy-document a {
  color: var(--color-ink);
  font-weight: 800;
  text-decoration-color: rgba(197, 72, 31, 0.45);
  text-underline-offset: 3px;
}

.privacy-date {
  margin-top: 34px;
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 2.9rem;
  }

  .hero,
  .services,
  .menu-section,
  .faq-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__visual {
    order: -1;
  }

  .hero__image--main {
    max-height: 390px;
  }

  .hero__image--accent {
    bottom: 4%;
    left: 4%;
    width: min(29%, 150px);
  }

  .hero__image--detail {
    top: 4%;
    right: 4%;
    width: min(27%, 140px);
  }

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

  .menu-copy {
    position: static;
  }

  .menu-copy::after {
    top: 72px;
    left: auto;
    right: 0;
    font-size: 8rem;
  }

  .menu-section::before {
    top: 18%;
    right: -42%;
    width: 82vw;
    height: 42%;
  }

  .menu-section::after {
    bottom: 32px;
    left: -18%;
    width: 58vw;
    height: 110px;
  }

  .faq-copy {
    position: static;
  }

  .drink-detail {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    align-items: center;
    gap: 0;
    flex-direction: column;
    padding: 12px 18px 14px;
  }

  .site-header--brand-visible {
    gap: 12px;
  }

  .site-header[data-header]:not(.site-header--brand-visible) .brand {
    max-height: 0;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 6px;
    padding: 4px 2px 8px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    padding: 9px 12px;
    background: rgba(251, 246, 236, 0.42);
    border-color: rgba(24, 22, 20, 0.08);
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .brand__mark {
    width: 60px;
    height: 60px;
  }

  .brand__mark img {
    width: auto;
    height: 50px;
  }

  h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.25rem);
  }

  .hero__title img {
    height: 70px;
    width: auto;
    margin-top: 2px;
    opacity: 0.86;
  }

  .hero__title {
    align-items: center;
    gap: 10px;
    max-width: min(100%, 340px);
    margin-inline: auto;
    text-align: left;
  }

  .hero__title h1 {
    max-width: none;
    min-width: 0;
    text-align: left;
  }

  .menu-copy::after {
    top: 86px;
    right: -10px;
    font-size: 6rem;
  }

  .menu-section::before {
    top: 12%;
    right: -58%;
    width: 105vw;
  }

  .menu-section::after {
    opacity: 0.36;
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 2.6rem);
  }

  .hero__text {
    max-width: 34rem;
    margin-inline: auto;
    margin-bottom: 20px;
    font-size: 1.02rem;
    line-height: 1.55;
    text-align: center;
  }

  .hero {
    gap: 20px;
    padding: 42px 18px 34px;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .eyebrow {
    margin-bottom: 34px;
    font-size: 0.72rem;
    text-align: center;
  }

  .hero__visual {
    display: none;
    width: min(70vw, 255px);
    padding: 6px;
  }

  .hero__visual--mobile {
    display: block;
    margin: 30px auto 42px;
  }

  .hero__visual--desktop {
    display: none;
  }

  .hero__visual::before {
    inset: 10% -3% -6% 10%;
  }

  .hero__visual::after {
    inset: -1% 18% 18% -3%;
  }

  .hero__image--accent {
    display: none;
    bottom: 7%;
    left: 6%;
    width: min(24%, 70px);
  }

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

  .event-card {
    min-height: 240px;
  }

  .section,
  .services,
  .menu-section,
  .faq-section,
  .quote-section {
    padding: 56px 18px;
  }

  .section__intro {
    margin-bottom: 22px;
  }

  .services {
    gap: 14px;
  }

  .service-item {
    padding: 20px;
  }

  .menu-section {
    gap: 26px;
  }

  .menu-copy,
  .faq-copy,
  .quote-copy {
    text-align: center;
  }

  .menu-showcase {
    gap: 14px;
  }

  .drink-selector {
    width: 100%;
    justify-content: center;
    padding: 6px;
  }

  .drink-option {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .drink-detail {
    gap: 18px;
    padding: 16px;
    text-align: center;
  }

  .drink-art img {
    width: min(100%, 280px);
    border-width: 6px;
  }

  .drink-info h3 {
    font-size: 2rem;
  }

  .button--ifood {
    width: 100%;
  }

  .faq-copy {
    padding: 20px;
  }

  .faq-item summary {
    padding: 18px 50px 18px 18px;
    text-align: left;
  }

  .faq-item p {
    padding: 0 18px 18px;
    text-align: left;
  }

  .event-dialog__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    overflow: visible;
  }

  .event-dialog__gallery img {
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .event-dialog__gallery img.is-featured {
    grid-row: auto;
    min-height: 0;
  }

  .event-dialog {
    place-items: start center;
    padding: 10px;
    overflow-y: auto;
  }

  .event-dialog__panel {
    margin-block: 8px;
  }

  .hero__image--detail {
    display: none;
    top: 7%;
    right: 6%;
    width: min(23%, 66px);
  }

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

  .drink-option {
    flex: 1 1 calc(50% - 8px);
  }

  .button {
    width: 100%;
  }

  .hero__actions,
  .form-actions {
    align-items: stretch;
  }

  .hero__socials,
  .hero__meta {
    justify-content: center;
  }

  .hero__socials {
    margin-top: 18px;
  }

  .hero__meta {
    gap: 8px;
    margin-top: 18px;
  }

  .hero__meta li {
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .hero__cta {
    min-height: 58px;
    padding-inline: 20px;
    font-size: 1.36rem;
  }

  .quote-section {
    gap: 38px;
  }

  .quote-visual {
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .quote-image {
    max-height: 420px;
  }

  .quote-form {
    padding: 18px 14px;
  }

  input,
  select,
  textarea {
    padding: 12px 10px;
    font-size: 0.95rem;
  }

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

  .site-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .site-nav {
    overflow-x: visible;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    padding-bottom: 4px;
  }

  .site-nav a {
    padding: 8px 8px;
    font-size: 0.68rem;
  }

  .hero__title {
    justify-content: flex-start;
    width: fit-content;
  }

  .hero__title img {
    height: 72px;
  }

  .hero__title h1 {
    font-size: clamp(3.2rem, 16vw, 4.25rem);
  }

  .hero__title-line--iris {
    font-size: 0.86em;
  }

  .hero__title-line--drinketeria {
    font-size: 0.94em;
  }

  .hero__visual {
    width: min(64vw, 210px);
  }

  .hero__image--accent,
  .hero__image--detail {
    width: min(22%, 52px);
  }

  .hero__meta li {
    flex: 1 1 100%;
  }

  .drink-option {
    flex-basis: calc(50% - 6px);
  }

  .event-card {
    min-height: 220px;
  }

  .event-dialog__content {
    padding: 16px;
  }

  .event-dialog__close {
    top: 10px;
    right: 10px;
  }
}

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

  .button,
  .drink-option,
  .drink-detail img,
  .drink-info,
  .hero__image,
  .site-header,
  main > *,
  .faq-item p,
  .event-dialog,
  .event-dialog__panel,
  .event-dialog__gallery img {
    transition: none;
    animation: none;
  }
}
