/* ==========================================================================
   Components
   Geometry and colour are Figma's. States, focus and motion are added.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-lift: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  text-align: center;
  white-space: nowrap;
  transform: translateY(var(--btn-lift));
  transition:
    transform var(--t-fast) var(--ease-out),
    background-color var(--t-fast) linear,
    box-shadow var(--t-mid) var(--ease-out);
}

/* Nav / primary — gold pill, dark-olive ink. */
.btn--gold {
  background: var(--gold);
  color: var(--gold-ink);
  font-size: clamp(1rem, 0.86rem + 0.6vw, 1.5rem);
  padding: 12px 30px;
  box-shadow: 0 0 0 0 rgba(223,187,131,0);
}
.btn--gold:hover,
.btn--gold:focus-visible {
  --btn-lift: -2px;
  background: #ecd0a1;
  box-shadow: 0 10px 30px -12px rgba(223,187,131,0.65);
}
.btn--gold:active { --btn-lift: 0px; }

/* Pass card CTA — Bricolage Grotesque on gold, crimson ink. */
.btn--pass {
  background: var(--gold);
  color: var(--crimson-ink);
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 0.806rem;      /* 12.896px */
  letter-spacing: -0.2866px;
  padding: 7.164px 28.658px;
  border-radius: 28.658px;
}
.btn--pass:hover,
.btn--pass:focus-visible {
  --btn-lift: -2px;
  background: #f2d9ad;
  box-shadow: 0 8px 22px -10px rgba(223,187,131,0.7);
}

/* Stall form CTA — full width block. */
.btn--submit {
  width: 100%;
  background: var(--gold-deep);
  color: var(--gold-ink-alt);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.891rem;      /* 14.255px */
  padding: 0.95rem 11.879px;
  border-radius: var(--r-field);
}
.btn--submit:hover:not(:disabled),
.btn--submit:focus-visible { background: #e8c184; --btn-lift: -1px; }
.btn--submit:disabled { opacity: 0.55; cursor: progress; --btn-lift: 0; }

/* --------------------------------------------------------------------------
   Navigation
   Transparent over the hero, then a blurred oxblood bar once scrolled.
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--shell);
  margin-inline: auto;
  padding: 1rem var(--gutter);
  background: rgba(42, 3, 3, 0);
  backdrop-filter: blur(0px);
  transition:
    background-color var(--t-mid) var(--ease-soft),
    backdrop-filter var(--t-mid) var(--ease-soft),
    box-shadow var(--t-mid) var(--ease-soft),
    padding var(--t-mid) var(--ease-soft);
}
.nav.is-stuck {
  background: rgba(42, 3, 3, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 0 var(--gold-line), 0 18px 40px -30px rgba(0,0,0,0.9);
  padding-block: 0.6rem;
}

.nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.nav__brand img { width: clamp(120px, 12vw, 180px); height: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 80px;
  font-family: var(--font-display);
  font-size: var(--fs-nav);
  color: var(--gold);
}
.nav__links a { position: relative; padding-block: 0.25rem; }
/* The underline is the active-state signal, so it draws from the left. */
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease-out);
}
.nav__links a:hover::after,
.nav__links a:focus-visible::after,
.nav__links a[aria-current="true"]::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 0.75rem; }

/* Burger — three rules that fold into a cross. */
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  border-radius: 8px;
}
.nav__burger span {
  position: absolute;
  left: 11px;
  width: 22px; height: 1.5px;
  background: var(--gold);
  transition: transform var(--t-mid) var(--ease-out), opacity var(--t-fast) linear;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 21.5px; }
.nav__burger span:nth-child(3) { top: 27px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile sheet */
.menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  display: grid;
  place-content: center;
  gap: 2rem;
  background: rgba(30, 2, 2, 0.97);
  backdrop-filter: blur(18px);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-mid) var(--ease-soft), visibility var(--t-mid);
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 3vw, 3rem);
  color: var(--gold);
}
.menu__tel { font-family: var(--font-ui); font-size: 1rem; opacity: 0.8; }

/* --------------------------------------------------------------------------
   Hero
   Four depth planes: skyline → mandala → badge logos → type.
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100svh, 860px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(7rem, 5rem + 9vw, 10rem) clamp(2rem, 1rem + 4vw, 4rem);
  overflow: hidden;
  text-align: center;
}

.hero__layers { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero__mandala {
  position: absolute;
  top: 2.5%;
  left: 0; right: 0;
  margin-inline: auto;
  width: min(46%, 660px);
  opacity: 0.5;
}

.hero__skyline {
  position: absolute;
  top: 8%;
  left: 0; right: 0;
  margin-inline: auto;
  width: min(1464px, 102%);
  max-width: none;
  opacity: 0.5;
}
/* Figma's two overlays: lift the horizon, then sink the base into the page. */
.hero__skyline::after,
.hero__scrim {
  content: "";
  position: absolute;
  inset: 0;
}
.hero__scrim {
  z-index: 1;
  background:
    linear-gradient(0deg,   rgb(50,6,5) 17.91%, rgba(57,1,2,0) 81.76%),
    linear-gradient(180deg, rgba(0,0,0,0) 38.71%, rgb(51,1,0) 100%);
}

.hero__content { position: relative; z-index: 2; width: 100%; }

.hero__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, -0.5rem + 4vw, 3rem);
  margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.75rem);
}
.hero__logos img { height: auto; }
.hero__badge { width: clamp(120px, 15vw, 222px); }
.hero__mark  { width: clamp(150px, 19vw, 282px); }

.hero__title { margin-inline: auto; max-width: 736px; }
.hero__sub   { margin-inline: auto; margin-top: 1.25rem; max-width: 845px; }
.hero__copy  { margin-inline: auto; margin-top: 1.25rem; max-width: 777px; text-align: center; }

.hero__cta { margin-top: clamp(1.75rem, 1.2rem + 2vw, 2.5rem); }

/* --------------------------------------------------------------------------
   Memories — a reel feed
   Native horizontal scrolling does the real work; JS only weights whichever
   reel is nearest the middle and leans the strip with scroll velocity.
   -------------------------------------------------------------------------- */
.reels__viewport {
  --reel-w: clamp(200px, 25vw, 320px);
  position: relative;
  margin-top: clamp(2rem, 1.4rem + 2.5vw, 3.125rem);
}

.reels {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 28px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  /* Leading and trailing space so the first and last reel can reach the
     centre, which is what makes this read as a feed rather than a row. */
  padding-inline: calc(50% - var(--reel-w) / 2);
  padding-block: clamp(1rem, 2vw, 2rem);
}
.reels::-webkit-scrollbar { display: none; }
.reels.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.reels.is-dragging .reel { pointer-events: none; }

.reel {
  flex: 0 0 var(--reel-w);
  margin: 0;
  scroll-snap-align: center;
}

/* The transform lives on the inner element so the entrance tween (which owns
   .reel's transform) and the centre weighting never fight over one property. */
.reel__media {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-reel);
  overflow: hidden;
  background: var(--ink-deepest);
  transform:
    skewY(var(--reel-lean, 0deg))
    scale(calc(0.88 + 0.12 * var(--reel-focus, 1)));
  opacity: calc(0.42 + 0.58 * var(--reel-focus, 1));
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, calc(0.9 * var(--reel-focus, 1)));
  transition: opacity 240ms var(--ease-out);
  will-change: transform;
}
.reel__media img,
.reel__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* A thin gold edge on the reel that currently holds the centre. */
.reel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(223, 187, 131, 0);
  transition: border-color 240ms var(--ease-out);
  pointer-events: none;
}
.reel.is-centred .reel__media::after { border-color: rgba(223, 187, 131, 0.45); }

/* Edge fades, matching the gallery. */
.reels__viewport::before,
.reels__viewport::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 12%, 200px);
  pointer-events: none;
  z-index: 3;
}
.reels__viewport::before { left: 0;  background: linear-gradient(90deg, var(--ink-deepest), rgba(42,3,3,0)); }
.reels__viewport::after  { right: 0; background: linear-gradient(270deg, var(--ink-deepest), rgba(42,3,3,0)); }

/* --------------------------------------------------------------------------
   Panel — shared by Passes and Gallery
   -------------------------------------------------------------------------- */
.panel {
  position: relative;
  border: 4px solid var(--gold);
  border-radius: var(--r-panel);
  background: linear-gradient(180deg, var(--ink-card) 6.267%, rgba(40,0,0,0) 67.137%);
  padding: 40px clamp(1rem, -1.6rem + 7vw, 110px);
  text-align: center;
}
.panel > * { position: relative; }
.panel__title { margin-bottom: 40px; }

/* --------------------------------------------------------------------------
   Pass cards — the temple arch is an exported SVG, stretched to the card box
   -------------------------------------------------------------------------- */
.passes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 228px));
  justify-content: center;
  gap: 27px;
}

.pass {
  position: relative;
  container-type: inline-size;
  aspect-ratio: 228.278 / 428.552;
  background-image: url("../assets/decorations/pass-arch.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: transform var(--t-mid) var(--ease-out), filter var(--t-mid) var(--ease-out);
  will-change: transform;
}
.pass:hover, .pass:focus-within {
  transform: translateY(-8px);
  filter: drop-shadow(0 22px 34px rgba(0,0,0,0.55));
}

/* Children sit at Figma's proportional offsets inside the arch. */
.pass__mark  { position: absolute; top: 18.74%; left: 50%; width: 53.41%; translate: -50% 0; }
.pass__name  { position: absolute; top: 38.55%; left: 50%; width: 88%; translate: -50% 0;
               font-family: var(--font-display);
               font-size: clamp(0.95rem, 8.79cqw, 1.4rem);
               letter-spacing: -0.2866px; line-height: 1.1; }
.pass__price { position: absolute; top: 42.73%; left: 50%; width: 92%; translate: -50% 0;
               font-family: var(--font-numeral); color: var(--gold);
               display: flex; align-items: flex-start; justify-content: center; }
.pass__rupee { font-size: clamp(0.95rem, 8.79cqw, 1.4rem); letter-spacing: -0.2866px; padding-top: 0.55em; }
.pass__amount{ font-size: clamp(3rem, 30.87cqw, 4.9rem); line-height: 1; }
.pass__unit  { font-size: clamp(0.5rem, 3.77cqw, 0.7rem); letter-spacing: -0.2866px;
               align-self: flex-end; padding-bottom: 0.9em; }
.pass__foot  { position: absolute; top: 73.05%; left: 50%; width: 71.54%; translate: -50% 0;
               display: flex; flex-direction: column; align-items: center; gap: 10.747px; }
.pass__note  { font-family: var(--font-numeral); font-size: clamp(0.75rem, 5.65cqw, 0.95rem);
               letter-spacing: -0.2866px; line-height: 1.25; }
.pass .btn--pass { font-size: clamp(0.72rem, 5.65cqw, 0.9rem);
                   padding: 3.14cqw 12.55cqw; border-radius: 99px; }

/* --------------------------------------------------------------------------
   Experience — same arch language, shorter and gradient-filled
   -------------------------------------------------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 231px));
  justify-content: center;
  gap: clamp(1rem, -1rem + 5vw, 72px);
  margin-top: clamp(2.5rem, 1.8rem + 3vw, 4rem);
}
/* The arch is a stretched background, and the copy flows inside it. Pinning
   the text to Figma's percentages collides as soon as a line wraps, so the
   silhouette gives instead — the shape is preserved, the reading is not. */
.feature {
  position: relative;
  container-type: inline-size;
  min-height: clamp(280px, 26vw, 316px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 21% 9% 17%;
  background-image: url("../assets/decorations/feature-arch.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-align: center;
  transition: transform var(--t-mid) var(--ease-out);
}
.feature:hover { transform: translateY(-6px); }
.feature__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 10.41cqw, 1.6rem);
  line-height: 1.02;
  text-wrap: balance;
}
.feature__body {
  font-size: clamp(0.85rem, 6.51cqw, 1rem);
  line-height: 1.3;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Marquee — a festival banner, seamless
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--ink-band);
  padding-block: 0.4rem;
  min-height: 58.6px;
  display: flex;
  align-items: center;
}
.marquee__track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
  will-change: transform;
}
.marquee__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 192.47px;
  flex-shrink: 0;
  padding-inline: 0.5rem;
}
.marquee__item img { width: 35px; height: 35px; flex-shrink: 0; }
.marquee__item span {
  font-family: var(--font-gujarati);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 46px;
  color: var(--gold);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Gallery — a drag-scrollable strip, masked at both edges
   -------------------------------------------------------------------------- */
.gallery__viewport {
  position: relative;
  overflow: hidden;
}
.gallery__strip {
  display: flex;
  gap: 40px;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: 2px;
}
.gallery__strip::-webkit-scrollbar { display: none; }
.gallery__strip.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery__strip.is-dragging .gallery__fig { pointer-events: none; }

.gallery__fig {
  flex: 0 0 auto;
  width: clamp(240px, 33vw, 480px);
  aspect-ratio: 1122 / 1402;
  border-radius: var(--r-photo);
  overflow: hidden;
  scroll-snap-align: center;
}
.gallery__fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.gallery__fig:hover img { transform: scale(1.045); }

/* Edge fades — Figma masks 287px on each side. */
.gallery__viewport::before,
.gallery__viewport::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(48px, 18%, 287px);
  pointer-events: none;
  z-index: 3;
}
.gallery__viewport::before { left: 0;  background: linear-gradient(90deg, var(--ink-deepest), rgba(42,3,3,0)); }
.gallery__viewport::after  { right: 0; background: linear-gradient(270deg, var(--ink-deepest), rgba(42,3,3,0)); }

/* --------------------------------------------------------------------------
   Stall booking form
   Figma ships placeholder-only fields; real labels are added above each
   input so the field keeps its name once it has a value.
   -------------------------------------------------------------------------- */
.stall {
  max-width: 856px;
  margin-inline: auto;
  margin-top: clamp(2rem, 1.4rem + 2.5vw, 3.34rem);
  background: var(--ink-form);
  border: 1.782px dashed var(--gold-hair);
  border-radius: var(--r-form);
  padding: clamp(1.25rem, 0.7rem + 2.4vw, 29.305px);
}
.stall__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}
.field { display: flex; flex-direction: column; gap: 5.94px; min-width: 0; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 0.687rem;              /* 10.989px */
  font-weight: 500;
  color: var(--on-dark-mute);
  letter-spacing: 0.01em;
}
.field input,
.field select {
  width: 100%;
  background: var(--ink-field);
  border: 1px solid transparent;
  border-radius: var(--r-field);
  padding: 11.879px;
  font-size: var(--fs-field);
  font-weight: 500;
  color: var(--gold);
  transition: border-color var(--t-fast) linear, background-color var(--t-fast) linear;
}
.field input::placeholder { color: var(--on-dark-mute); }
.field input:hover, .field select:hover { background: #4a1516; }
.field input:focus-visible,
.field select:focus-visible { border-color: var(--gold); outline-offset: 1px; }

.field select {
  appearance: none;
  color: var(--on-dark-mute);
  background-image: url("../assets/icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 11.879px center;
  background-size: 10.4px auto;
  padding-right: 32px;
}
.field select.has-value { color: var(--gold); }

/* Error + success */
.field.is-invalid input,
.field.is-invalid select { border-color: #e8836f; }
.field__error {
  font-size: 0.687rem;
  color: #f0a08e;
  min-height: 0;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity var(--t-fast) linear, transform var(--t-fast) var(--ease-out);
}
.field.is-invalid .field__error { opacity: 1; transform: none; }

.stall__status {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gold);
  min-height: 1.25rem;
}
.stall__status[data-state="error"] { color: #f0a08e; }

/* --------------------------------------------------------------------------
   Checkout return pages (success / failure)
   -------------------------------------------------------------------------- */
.checkout[data-state="error"] { border-color: #f0a08e; }
.checkout[data-state="error"] .display { color: #f0a08e; }

.checkout__summary {
  margin: 1.75rem 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.25rem;
  text-align: left;
  font-family: var(--font-ui);
  font-size: var(--fs-body);
}
.checkout__summary dt { color: var(--on-dark-mute); }
.checkout__summary dd { margin: 0; color: var(--gold); font-weight: 600; }

/* --------------------------------------------------------------------------
   Checkout modal — native <dialog>, opened by a pass card's CTA
   -------------------------------------------------------------------------- */
.checkout-modal {
  max-width: 480px;
  width: calc(100% - 2rem);
  border: none;
  padding: 0;
  background: transparent;
  color: var(--gold);
}
.checkout-modal::backdrop { background: rgba(10, 1, 1, 0.72); }

.checkout-modal__form {
  position: relative;
  background: var(--ink-form);
  border: 1.782px solid var(--gold-hair);
  border-radius: var(--r-form);
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
}
.checkout-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-modal__close:hover,
.checkout-modal__close:focus-visible { background: rgba(223, 187, 131, 0.12); }

.checkout-modal__price {
  font-family: var(--font-numeral);
  color: var(--rose);
  margin: 0.25rem 0 1.5rem;
}
.checkout-modal__total {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
}

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.faq {
  max-width: var(--col-narrow);
  margin-inline: auto;
  margin-top: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  background: var(--ink-faq);
  border-radius: var(--r-faq);
  padding: clamp(1.25rem, 0.8rem + 2vw, 27.582px);
}
.faq__item + .faq__item { border-top: 1.38px solid var(--gold-line); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  padding-block: 13.791px;
  font-size: var(--fs-faq);
  line-height: 1.364;
  color: var(--gold);
  transition: color var(--t-fast) linear;
}
.faq__q:hover { color: #f0d6ae; }
.faq__q img {
  width: 9.81px;
  flex-shrink: 0;
  transform: rotate(180deg);
  transition: transform var(--t-mid) var(--ease-out);
}
.faq__q[aria-expanded="true"] img { transform: rotate(0deg); }

.faq__a { overflow: hidden; height: 0; }
.faq__a p {
  padding: 0 13.791px 13.791px;
  font-size: var(--fs-faq);
  line-height: 1.364;
  color: var(--gold);
  max-width: 62ch;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
}
.contact__list { display: flex; flex-direction: column; gap: 11px; margin-top: 1.5rem; }
.contact__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-contact);
  color: var(--gold);
  width: fit-content;
}
.contact__row img { width: 18px; height: 18px; flex-shrink: 0; }
a.contact__row { transition: opacity var(--t-fast) linear; }
a.contact__row:hover { opacity: 0.75; text-decoration: underline; text-underline-offset: 3px; }

.contact__social { display: flex; gap: 10px; margin-top: 1.5rem; }
.contact__social a { transition: transform var(--t-fast) var(--ease-out), opacity var(--t-fast) linear; }
.contact__social a:hover { transform: translateY(-2px); opacity: 0.8; }
.contact__social img { width: 30px; height: 30px; }

.contact__map {
  position: relative;
  border-radius: 25.575px;
  overflow: hidden;
  aspect-ratio: 647 / 357;
}
.contact__map img { width: 100%; height: 100%; object-fit: cover; }
.contact__maplink {
  position: absolute;
  top: 29px; left: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #4375ff;
  font-weight: 600;
  font-size: clamp(0.95rem, 0.8rem + 0.6vw, 1.38rem);
  padding: 12px 18px;
  border-radius: 3.836px;
  box-shadow: 5.115px 5.115px 17.903px rgba(0,0,0,0.2);
  transition: transform var(--t-fast) var(--ease-out);
}
.contact__maplink:hover { transform: translateY(-2px); }
.contact__maplink img { width: 26.854px; height: 26.854px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  padding-block: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  text-align: center;
  font-size: 0.875rem;
  color: var(--gold);
  opacity: 0.75;
}
