/* ============================================================
   THE FINGER FOOD CORPORATION · Stylesheet
   Palette: Black + Cream (B&W editorial)
   Type:    Space Grotesk (display) + Inter (body)
   ============================================================ */

/* --- Design Tokens --- */
:root {
  /* Palette */
  --c-bg:        #000000;
  --c-bg-soft:   #0d0d0d;
  --c-ink:       #f5f0e6;          /* warm cream text */
  --c-ink-dim:   rgba(245, 240, 230, 0.62);
  --c-line:      rgba(245, 240, 230, 0.12);
  --c-accent:    #f5f0e6;          /* no signature color — cream/white is the accent */
  --c-accent-2:  #ffffff;          /* hover/highlight — pure white */

  /* Type */
  --ff-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --ff-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;

  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);

  /* Layout */
  --maxw: 1280px;
  --pad:  clamp(20px, 4vw, 48px);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--c-accent-2); }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; margin: 0; padding: 0; }

::selection { background: var(--c-ink); color: var(--c-bg); }

/* --- Skip link (a11y) --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--c-ink);
  color: var(--c-bg);
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
  outline: 2px solid var(--c-accent-2);
  outline-offset: 2px;
  color: var(--c-bg);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
.eyebrow {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

/* --- Layout helpers --- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
section + section { border-top: 1px solid var(--c-line); }

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(0, 0, 0, 0.88);
  border-bottom-color: var(--c-line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
@media (min-width: 960px) {
  .nav__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    height: 96px;
  }
  .nav__brand    { justify-self: start; }
  .nav__menu     { justify-self: center; }
  .nav__actions  { justify-self: end; }
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--c-ink);
}
.nav__brand img { height: 48px; width: auto; display: block; }
@media (min-width: 960px) { .nav__brand img { height: 56px; } }
.nav__brand-text { display: none; }
@media (min-width: 720px) { .nav__brand-text { display: inline; } }

.nav__menu {
  display: none;
  gap: 34px;
  align-items: center;
}
.nav__menu a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-ink-dim);
  position: relative;
  padding: 8px 0;
}
.nav__menu a.is-active,
.nav__menu a:hover {
  color: var(--c-ink);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__menu a.is-active::after,
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 16px; }
.lang {
  display: inline-flex;
  gap: 6px;
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lang a {
  padding: 6px 9px;
  border-radius: 6px;
  color: var(--c-ink-dim);
}
.lang a.is-active {
  color: var(--c-ink);
  background: rgba(245, 240, 230, 0.08);
}

.nav__cta {
  display: none;
  padding: 10px 18px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all .25s var(--ease);
}
.nav__cta:hover {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-bg);
}

.nav__burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav__burger span {
  width: 22px; height: 1.5px;
  background: var(--c-ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 960px) {
  .nav__menu { display: inline-flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
}

/* Mobile menu drawer */
.nav__drawer {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--c-bg);
  padding: 40px var(--pad);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform .4s var(--ease), visibility .4s var(--ease), opacity .4s var(--ease);
  border-top: 1px solid var(--c-line);
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.nav.is-open .nav__drawer {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav__drawer a {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink);
}
.nav__drawer a:hover { color: var(--c-accent); }
@media (min-width: 960px) { .nav__drawer { display: none; } }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--c-ink);
  color: var(--c-bg);
}
.btn--primary:hover {
  background: var(--c-accent-2);
  color: var(--c-bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 240, 230, 0.18);
}
.btn--ghost {
  border: 1px solid var(--c-line);
  color: var(--c-ink);
}
.btn--ghost:hover {
  border-color: var(--c-ink);
  color: var(--c-ink);
  transform: translateY(-2px);
}
.btn__arrow { font-size: 18px; line-height: 1; transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* --- Hero --- */
.hero {
  min-height: 100svh;
  padding-top: 180px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow { margin-bottom: 32px; }
.hero__title {
  font-size: clamp(52px, 9.5vw, 156px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin-bottom: 28px;
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  color: var(--c-ink-dim);
  font-weight: 400;
}
.hero__subtitle {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--c-ink-dim);
  max-width: 52ch;
  line-height: 1.5;
  margin-bottom: 44px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__meta {
  position: absolute;
  right: var(--pad);
  bottom: 40px;
  display: none;
  flex-direction: column;
  gap: 6px;
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
  text-align: right;
}
.hero__meta strong { color: var(--c-ink); font-weight: 500; letter-spacing: 0.2em; }
@media (min-width: 900px) { .hero__meta { display: flex; } }

.hero__logo-mark {
  position: absolute;
  top: 50%; right: 4vw;
  width: min(38vw, 420px);
  height: auto;
  aspect-ratio: 1200 / 1078;
  transform: translateY(-50%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 1100px) {
  .hero__logo-mark { opacity: 0.10; right: 5vw; width: min(32vw, 460px); }
}

/* --- About / intro --- */
.intro { background: var(--c-bg-soft); }
.intro__grid {
  display: grid;
  gap: 60px;
  align-items: center;
}
@media (min-width: 960px) {
  .intro__grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.intro__title {
  font-size: clamp(36px, 5.5vw, 72px);
  margin-bottom: 28px;
  max-width: 16ch;
}
.intro__copy p {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--c-ink-dim);
  margin: 0 0 18px;
  max-width: 56ch;
}
.intro__copy p strong { color: var(--c-ink); font-weight: 500; }
.intro__image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #111;
}
.intro__image img { width: 100%; height: 100%; object-fit: cover; }
.intro__image::after {
  content: "2025";
  position: absolute;
  top: 18px; left: 20px;
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--c-ink-dim);
  background: rgba(0,0,0,0.4);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* --- Experiences grid --- */
.experiences__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.experiences__title {
  font-size: clamp(36px, 5.5vw, 76px);
  max-width: 14ch;
}
.experiences__lead {
  font-size: 17px;
  color: var(--c-ink-dim);
  max-width: 38ch;
}

.exp-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 220px;
}
@media (min-width: 640px)  { .exp-grid { grid-auto-rows: 260px; } }
@media (min-width: 960px)  {
  .exp-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
  }
}

.exp-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: var(--c-ink);
  isolation: isolate;
  transition: transform .5s var(--ease);
}
.exp-card:hover { transform: translateY(-4px); color: var(--c-ink); }
.exp-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1s var(--ease), filter .5s var(--ease);
}
.exp-card:hover .exp-card__img { transform: scale(1.06); filter: saturate(1.1); }
.exp-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
  z-index: -1;
  transition: opacity .4s var(--ease);
}
.exp-card__label {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.05;
  max-width: 14ch;
}
.exp-card--wide   { grid-column: span 2; }
.exp-card--tall   { grid-row: span 2; }
@media (max-width: 639px) {
  .exp-card--wide { grid-column: span 2; }
  .exp-card--tall { grid-row: auto; }
}

/* --- Experiences list (detail page rows) --- */
.exp-list { padding: 40px 0 80px; }

.exp-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--c-line);
}
.exp-row:first-child { border-top: 0; }
.exp-row--reverse .exp-row__media { order: 2; }
.exp-row__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: #111;
}
.exp-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.exp-row:hover .exp-row__media img { transform: scale(1.03); }
.exp-row__body .eyebrow { margin-bottom: 14px; }
.exp-row__body h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 18px;
  max-width: 18ch;
}
.exp-row__body p {
  color: var(--c-ink-dim);
  font-size: 17px;
  line-height: 1.65;
  max-width: 52ch;
}

@media (max-width: 820px) {
  .exp-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  .exp-row--reverse .exp-row__media { order: 0; }
  .exp-row__media { aspect-ratio: 16 / 10; }
}

/* --- Brands --- */
.brands__head { text-align: center; margin-bottom: 56px; }
.brands__title {
  font-size: clamp(40px, 6vw, 88px);
  margin-bottom: 18px;
}
.brands__lead {
  color: var(--c-ink-dim);
  max-width: 54ch;
  margin: 0 auto;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--c-line);
  border-left: 1px solid var(--c-line);
}
@media (min-width: 720px)  { .brands-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1100px) { .brands-grid { grid-template-columns: repeat(5, 1fr); } }

.brand-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  transition: background .4s var(--ease);
  overflow: hidden;
}
.brand-cell img {
  max-height: 123%;
  max-width: 123%;
  object-fit: contain;
  filter: brightness(1.05) contrast(1);
}

.brand-cell--text {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: clamp(22px, 2.8vw, 34px);
  text-transform: uppercase;
}

/* Buen Rollo: keep at its prior size so it doesn't overpower neighbors */
.brand-cell--buenrollo img { max-height: 92%; max-width: 92%; }

/* Pandó: the source PNG is a solid cream card, let it sit a bit inset */
.brand-cell--pando img { max-height: 76%; max-width: 88%; }

.brand-cell__badge {
  position: absolute;
  top: 14px; right: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  background: var(--c-accent);
  color: var(--c-ink);
  font-size: 10px;
  opacity: 0.85;
}
.brand-cell[href] .brand-cell__badge { display: inline-flex; }

/* --- Partners strip --- */
.partners { background: var(--c-bg-soft); padding: clamp(56px, 8vw, 96px) 0; }
.partners__head { text-align: center; margin-bottom: 36px; }
.partners__title {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
  font-weight: 500;
}
.partners-strip {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 72px);
  justify-content: center;
  align-items: center;
}
.partners-strip img {
  height: 174px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(1) brightness(1.8) contrast(1.1);
}
@media (min-width: 720px)  { .partners-strip img { height: 222px; } }
@media (min-width: 1100px) { .partners-strip img { height: 252px; } }
/* Wide wordmarks (Primavera, Vampire) — constrain by width so they sit visually in line with the square logos */
.partners-strip img.partners-strip__wide { height: auto; width: 160px; max-width: 160px; }
@media (min-width: 720px)  { .partners-strip img.partners-strip__wide { width: 190px; max-width: 190px; } }
@media (min-width: 1100px) { .partners-strip img.partners-strip__wide { width: 210px; max-width: 210px; } }

/* Midó, Hostelgrup, L'Artesanna — 10% smaller and horizontally aligned on their own row */
.partners-strip img.partners-strip__sm { height: 157px; align-self: center; }
@media (min-width: 720px)  { .partners-strip img.partners-strip__sm { height: 200px; } }
@media (min-width: 1100px) { .partners-strip img.partners-strip__sm { height: 227px; } }

/* Per-logo perceptual centering nudges (content weight sits below geometric center) */
/* nudge-up class retained as no-op for backwards compat; tight-cropped PNGs no longer need it */

/* --- CTA block --- */
.cta-block {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
  text-align: center;
}
.cta-block__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.78)), url('../img/gallery/stage-orange.jpg') center/cover no-repeat;
  z-index: 0;
  transform: scale(1.05);
  filter: saturate(0.9);
}
.cta-block__inner { position: relative; z-index: 1; }
.cta-block__title {
  font-size: clamp(44px, 6.2vw, 96px);
  line-height: 1;
  margin-bottom: 28px;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.03em;
}
.cta-block__title em { color: var(--c-accent); font-style: normal; }
.cta-block__sub {
  color: var(--c-ink-dim);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 48ch;
  margin: 0 auto 36px;
}

/* --- Footer --- */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--c-line);
}
.footer__grid {
  display: grid;
  gap: 48px;
  margin-bottom: 60px;
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer__brand img {
  display: block;
  height: 96px;
  width: auto;
  margin-bottom: 24px;
}
@media (min-width: 960px) {
  .footer__brand img { height: 116px; }
}
.footer__tagline { color: var(--c-ink-dim); max-width: 34ch; font-size: 15px; }
.footer__col-title {
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
  font-size: 13px;
  color: var(--c-ink-dim);
}

/* --- Page hero (smaller for inner pages) --- */
.page-hero {
  padding: 160px 0 60px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
}
.page-hero__title {
  font-size: clamp(44px, 7vw, 112px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: 20px;
  max-width: 16ch;
}
.page-hero__title em { color: var(--c-accent); font-style: normal; }
.page-hero__lead {
  color: var(--c-ink-dim);
  font-size: clamp(16px, 1.3vw, 19px);
  max-width: 60ch;
}

/* --- Service list (experiences / catering inner pages) --- */
.services-list { display: grid; gap: 14px; }
@media (min-width: 720px)  { .services-list { grid-template-columns: repeat(2, 1fr); } }

.service-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  isolation: isolate;
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: transform .5s var(--ease);
}
.service-item:hover { transform: translateY(-4px); }
.service-item__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1s var(--ease);
}
.service-item:hover .service-item__img { transform: scale(1.06); }
.service-item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.9) 100%);
  z-index: -1;
}
.service-item__name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.service-item__desc {
  color: var(--c-ink-dim);
  font-size: 14px;
  max-width: 46ch;
}

/* --- Contact form --- */
.contact-grid {
  display: grid;
  gap: 56px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 72px; }
}
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-info__block h3 {
  font-family: var(--ff-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
  margin: 0 0 10px;
  font-weight: 500;
}
.contact-info__block p { font-size: 18px; line-height: 1.5; margin: 0; }
.contact-info__block a { color: var(--c-ink); border-bottom: 1px solid transparent; transition: border-color .3s var(--ease); }
.contact-info__block a:hover { border-bottom-color: var(--c-accent); color: var(--c-accent-2); }

.form {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  display: grid;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
  font-weight: 500;
}
.field input, .field textarea {
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--c-ink);
  font: inherit;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  background: rgba(245, 240, 230, 0.04);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__submit { justify-self: start; margin-top: 6px; }
.form__feedback {
  font-size: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  display: none;
}
.form__feedback.is-success { display: block; background: rgba(38, 168, 104, 0.12); color: #6bdba1; border: 1px solid rgba(38, 168, 104, 0.25); }
.form__feedback.is-error   { display: block; background: rgba(245, 240, 230, 0.08); color: var(--c-ink); border: 1px solid rgba(245, 240, 230, 0.25); }

/* --- Gallery (inner catering/experiences) --- */
.gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px)  { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

/* --- Reveal animation --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

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