/* =========================================================================
   Ale & Caluso · 14.11.26
   Ported from the Claude Design artboard to static CSS.
   Palette and type scale are held to the original exactly.
   ========================================================================= */

:root {
  --bg:          #EFEAE0;   /* hueso / crudo — fondo base */
  --bg-hover:    #E7E0D2;
  --bg-rsvp:     #E9E2D4;
  --bg-modal:    #F3EEE4;
  --dark:        #232319;   /* fondo del contador */
  --ink:         #2B2B28;   /* tinta principal */
  --olive:       #4A4A1F;   /* acento — encabezados y bordes */
  --olive-soft:  #7B7A5E;
  --sand:        #8A8A6B;
  --sand-light:  #9A9A80;
  --muted:       #55523F;
  --muted-dark:  #3D3B30;
  --cream:       #F2EDE1;

  --rule:        rgba(74, 74, 31, .22);
  --rule-strong: rgba(74, 74, 31, .35);
  --nav-bg:      rgba(190, 199, 168, .34);

  --serif:  "Italiana", serif;
  --body:   "Cormorant Garamond", serif;
  --script: "Pinyon Script", cursive;
  --sans:   "Jost", sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);

  /* the raised, faintly embossed look on the display headings */
  --emboss: 0 1px 0 rgba(255,255,255,.9), 0 -1px 1px rgba(74,74,31,.22), 0 2px 3px rgba(74,74,31,.1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--olive); text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: var(--olive); color: #F6F1E7; }

img, svg { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- paper grain ------------------------------------------------------- */

.grain {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* ---- pétalos ------------------------------------------------------------ */
/*
   Fourteen petals in three depth layers — far ones small and sharp, near ones
   large and soft — drifting behind the page. Each petal is two nested divs
   because both halves of the motion animate `transform` and one element can
   only hold one: the outer falls and rotates, the inner wobbles side to side.

   The per-petal numbers live in site.js. A scattered table beats anything
   generated evenly — it is what stops the field from reading as a grid.
*/

.petals {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.petal {
  position: absolute;
  top: 0;
  left: var(--l);
  filter: var(--blur, none);
  will-change: transform;
  animation: petalFall var(--fall) linear var(--delay) infinite;
}

.petal__inner {
  width: var(--size);
  height: calc(var(--size) * 1.35);
  background: linear-gradient(140deg, var(--tone), rgba(255, 255, 255, .12));
  /* the whole petal shape is this one asymmetric radius — no SVG involved */
  border-radius: 62% 38% 55% 45% / 55% 45% 62% 38%;
  animation: petalSway var(--sway) ease-in-out var(--sway-delay) infinite;
}

@keyframes petalFall {
  0%   { transform: translate3d(0, -14vh, 0) rotate(0deg); }
  100% { transform: translate3d(9vw, 114vh, 0) rotate(330deg); }
}
@keyframes petalSway {
  0%, 100% { transform: translateX(-16px) rotate(-14deg); }
  50%      { transform: translateX(16px) rotate(10deg); }
}

/* The petal layer is z-index 0, which paints over anything unpositioned. Every
   band of the page has to be lifted above it. .hero and .countdown were already
   relative for their own backgrounds; the rest are relative only for this. */
.hero,
.strip,
.countdown,
.detalles,
.rsvp,
.footer {
  position: relative;
  z-index: 1;
}

/* ---- keyframes --------------------------------------------------------- */

@keyframes rise    { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes fade    { from { opacity: 0; } to { opacity: 1; } }
@keyframes grow    { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes breathe { 0%, 100% { opacity: .25; } 50% { opacity: .9; } }
@keyframes draw    { to { stroke-dashoffset: 0; } }
@keyframes inkin   { to { fill: #2B2B28; stroke: rgba(43,43,40,0); } }

/* ---- nav --------------------------------------------------------------- */

.nav {
  position: fixed;
  top: clamp(14px, 2.2vw, 26px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 5vw, 52px);
  width: calc(100% - clamp(28px, 5vw, 88px));
  max-width: 1240px;
  padding: clamp(8px, 1vw, 12px) clamp(22px, 3vw, 40px);
  border-radius: 999px;
  background: var(--nav-bg);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 8px 26px rgba(74, 74, 31, .1);
}

.nav__mark { display: flex; align-items: center; transition: opacity .4s; }
.nav__mark:hover { opacity: .6; }
.nav__mark img { width: 66px; height: auto; }

.nav__links {
  display: flex;
  gap: clamp(24px, 3.4vw, 46px);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav__links a {
  color: var(--olive);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color .4s, color .4s;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a[aria-current="true"] {
  border-bottom-color: var(--olive);
  color: var(--ink);
}

/* ---- hero -------------------------------------------------------------- */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 130px 28px 90px;
  position: relative;
}

.hero__thread {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 88px;
  background: linear-gradient(var(--olive), rgba(74, 74, 31, 0));
  transform-origin: top;
  animation: grow 1.6s .2s var(--ease) backwards;
}

.hero__inner {
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.hero__mark {
  display: grid;
  place-items: center;
  position: relative;
  animation: fade 1.6s .3s backwards;
}
.hero__mark svg {
  width: clamp(210px, 34vw, 340px);
  height: auto;
}
/* the monogram inks itself in: the stroke draws first, then the fill arrives */
.hero__mark path {
  fill: transparent;
  stroke: #2B2B28;
  stroke-width: .55;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 2.3s var(--draw-delay, 0s) cubic-bezier(.55, .05, .3, 1) forwards,
             inkin 1.1s var(--ink-delay, 2.18s) ease forwards;
}
.hero__mark path:nth-of-type(1) { --draw-delay: 0s;    --ink-delay: 2.18s; }
.hero__mark path:nth-of-type(2) { --draw-delay: .34s;  --ink-delay: 2.36s; }
.hero__mark path:nth-of-type(3) { --draw-delay: .68s;  --ink-delay: 2.54s; }
.hero__mark path:nth-of-type(4) { --draw-delay: 1.02s; --ink-delay: 2.72s; }

.hero__kicker {
  font-size: 10.5px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--olive);
  animation: rise 1.2s .5s var(--ease) backwards;
}

.hero__lede {
  margin: 0;
  max-width: 470px;
  font-family: var(--body);
  font-weight: 300;
  font-style: italic;
  font-size: 19px;
  line-height: 1.75;
  color: var(--muted);
  text-wrap: pretty;
  animation: rise 1.2s .65s var(--ease) backwards;
}

.hero__names {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 11vw, 132px);
  line-height: .95;
  letter-spacing: .04em;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 8px;
  animation: rise 1.4s .8s var(--ease) backwards;
}
.hero__amp {
  font-family: var(--script);
  font-size: clamp(48px, 10vw, 116px);
  color: var(--olive);
  letter-spacing: 0;
  padding: 0 6px;
  transform: translateY(6px);
}

.hero__when {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: rise 1.2s 1s var(--ease) backwards;
}
.hero__rule { width: 54px; height: 1px; background: rgba(74, 74, 31, .4); }
.hero__date { font-size: 13px; letter-spacing: .48em; color: var(--ink); font-weight: 300; }
.hero__place { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--olive-soft); }

/* ---- photo strip ------------------------------------------------------- */

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 0 3px;
}
.strip__cell {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.strip__cell img { width: 100%; height: 100%; object-fit: cover; }

/* ---- countdown --------------------------------------------------------- */

.countdown {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--dark);
}
.countdown__bg {
  position: absolute;
  inset: -8% 0;
  filter: grayscale(1) contrast(1.1) brightness(.62);
}
.countdown__bg img { width: 100%; height: 100%; object-fit: cover; }
.countdown__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(35, 35, 25, .5), rgba(35, 35, 25, .68));
  pointer-events: none;
}
.countdown__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: opacity .9s ease;
}
.countdown__inner {
  position: relative;
  text-align: center;
  padding: 90px 26px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  pointer-events: none;
}
.countdown__lede {
  margin: 0;
  max-width: 440px;
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(242, 237, 225, .86);
}
.clock { display: flex; align-items: flex-start; gap: clamp(16px, 5vw, 54px); }
.clock__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 74px;
}
.clock__num {
  font-family: var(--serif);
  font-size: clamp(44px, 8vw, 86px);
  line-height: 1;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}
.clock__label {
  font-size: 9.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(242, 237, 225, .6);
}
.clock__sep {
  font-family: var(--serif);
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.1;
  color: rgba(242, 237, 225, .4);
  animation: breathe 2.6s infinite;
}
/* shown instead of the clock once the day itself arrives */
.countdown__arrived {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 6vw, 64px);
  letter-spacing: .08em;
  color: var(--cream);
}
.countdown__arrived[hidden], .clock[hidden] { display: none; }

/* ---- detalles ---------------------------------------------------------- */

.detalles {
  padding: clamp(88px, 12vw, 160px) 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 78px;
}
.section-head__kicker {
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--olive);
}
.section-head__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 64px);
  letter-spacing: .1em;
  color: var(--olive);
  text-transform: uppercase;
  text-shadow: var(--emboss);
}
.section-head__lede {
  margin: 0;
  max-width: 420px;
  font-family: var(--body);
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.moments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(74, 74, 31, .2);
}
.moment {
  background: var(--bg);
  padding: 54px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: background .6s ease;
}
.moment:hover { background: var(--bg-hover); }
.moment__label {
  font-size: 10px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--olive);
}
.moment__time {
  font-family: var(--serif);
  font-size: 42px;
  letter-spacing: .04em;
  color: var(--ink);
  text-shadow: var(--emboss);
}
.moment__rule { width: 30px; height: 1px; background: var(--rule-strong); }
.moment__place {
  font-family: var(--body);
  font-size: 18px;
  color: var(--muted);
  letter-spacing: .04em;
}

.notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(48px, 7vw, 96px);
  margin-top: clamp(72px, 10vw, 128px);
}
.note { display: flex; flex-direction: column; gap: 18px; }
.note__label {
  font-size: 10px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--olive);
}
.note__rule { width: 100%; height: 1px; background: var(--rule); }
.note__sub {
  font-family: var(--body);
  font-style: italic;
  font-size: 18px;
  color: var(--olive-soft);
}
.note p {
  margin: 0;
  font-family: var(--body);
  font-size: 20px;
  line-height: 1.75;
  color: var(--muted-dark);
  text-wrap: pretty;
}
.swatches { display: flex; gap: 10px; margin-top: 4px; }
.swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(74, 74, 31, .25);
}
.swatch--white { background: #FFFFFF; }
.swatch--ivory { background: #F7F1E4; }
.swatch--beige { background: #EDE4D0; }
.swatch--cream { background: #EFE3CD; }

/* ---- rsvp band --------------------------------------------------------- */

.rsvp {
  padding: clamp(80px, 11vw, 150px) 28px;
  background: var(--bg-rsvp);
  border-top: 1px solid rgba(74, 74, 31, .16);
  border-bottom: 1px solid rgba(74, 74, 31, .16);
}
.rsvp__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.rsvp__amp {
  font-family: var(--script);
  font-size: 44px;
  color: var(--olive);
  line-height: 1;
}
.rsvp__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 58px);
  letter-spacing: .06em;
  color: var(--ink);
  text-shadow: var(--emboss);
}
.rsvp__lede {
  margin: 0;
  max-width: 440px;
  font-family: var(--body);
  font-size: 20px;
  line-height: 1.75;
  color: var(--muted);
  text-wrap: pretty;
}
.rsvp__thanks {
  font-family: var(--body);
  font-style: italic;
  font-size: 17px;
  color: var(--olive);
}
.rsvp__thanks[hidden] { display: none; }

/* ---- buttons ----------------------------------------------------------- */

.btn {
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  border: 1px solid var(--olive);
  transition: background .5s var(--ease), color .5s, letter-spacing .5s;
}
.btn--ghost {
  margin-top: 10px;
  background: transparent;
  color: var(--olive);
  padding: 19px 46px;
}
.btn--ghost:hover { background: var(--olive); color: var(--cream); letter-spacing: .4em; }

.btn--solid {
  margin-top: 8px;
  background: var(--olive);
  color: var(--cream);
  padding: 17px 30px;
  letter-spacing: .32em;
  transition: background .5s, color .5s;
}
.btn--solid:hover { background: transparent; color: var(--olive); }
.btn[disabled] { opacity: .55; cursor: progress; }

/* ---- footer ------------------------------------------------------------ */

.footer {
  padding: clamp(84px, 12vw, 150px) 28px clamp(50px, 7vw, 80px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.footer__thanks {
  margin: 0;
  max-width: 470px;
  font-family: var(--body);
  font-size: 21px;
  line-height: 1.8;
  color: var(--muted-dark);
  text-wrap: pretty;
}
.footer__sign { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer__with {
  font-size: 10px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--olive-soft);
}
.footer__names {
  font-family: var(--script);
  font-size: clamp(40px, 7vw, 66px);
  color: var(--olive);
  line-height: 1.2;
}
.footer__thread {
  width: 1px;
  height: 56px;
  background: linear-gradient(rgba(74, 74, 31, .4), rgba(74, 74, 31, 0));
}
.footer__tagline {
  font-family: var(--body);
  font-style: italic;
  font-size: 15px;
  letter-spacing: .06em;
  color: var(--olive-soft);
}

/* ---- modal ------------------------------------------------------------- */

.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(35, 35, 25, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fade .4s;
}
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 470px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--bg-modal);
  border: 1px solid rgba(74, 74, 31, .3);
  padding: clamp(32px, 5vw, 52px);
  animation: rise .6s var(--ease);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: var(--olive-soft);
  padding: 6px;
  transition: color .3s;
}
.modal__close:hover { color: var(--ink); }
.modal__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}
.modal__mark img { width: 52px; height: auto; }
.modal__title {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: .05em;
  color: var(--ink);
}
.modal__deadline {
  font-size: 9.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ---- form -------------------------------------------------------------- */

.form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field[hidden] { display: none; }
.field__label {
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--olive-soft);
}
.field__label .opt { text-transform: none; letter-spacing: .04em; }

.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule-strong);
  border-radius: 0;
  padding: 9px 2px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  letter-spacing: .03em;
  transition: border-color .4s;
  width: 100%;
}
.field textarea { resize: none; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--olive);
}
.field input::placeholder { color: var(--sand-light); }

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--olive-soft) 50%),
                    linear-gradient(135deg, var(--olive-soft) 50%, transparent 50%);
  background-position: calc(100% - 11px) calc(50% + 1px), calc(100% - 6px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 26px;
}

.field--invalid input,
.field--invalid select { border-color: #8C3A2B; }
.field__error {
  font-size: 11px;
  letter-spacing: .04em;
  color: #8C3A2B;
  font-family: var(--body);
  font-style: italic;
}
.field__error[hidden] { display: none; }

/* honeypot — parked off-screen, never seen by a human, only bots fill it */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__hint {
  text-align: center;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--sand-light);
}
.form__hint--error { color: #8C3A2B; letter-spacing: .04em; font-size: 12px; }

/* ---- scroll reveal ----------------------------------------------------- */

[data-reveal] {
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].is-hidden {
  opacity: 0;
  transform: translateY(30px);
}

/* ---- responsive -------------------------------------------------------- */

@media (max-width: 620px) {
  .nav { gap: 14px; padding: 8px 18px; }
  .nav__mark img { width: 52px; }
  .nav__links { gap: 18px; font-size: 10px; letter-spacing: .2em; }
  .strip { grid-template-columns: 1fr 1fr; }
  .strip__cell:nth-child(3) { display: none; }
  /* `cover` fills the height first, so a tall band on a narrow screen blows a
     16:9 photo up until only its middle third is left. A shorter band keeps
     the composition — at 78vh a phone was showing 33% of the image, here 61%. */
  .countdown { min-height: 360px; }
  .clock { gap: 10px; }
  .clock__unit { min-width: 56px; }
  .note { align-items: center; text-align: center; }
  .swatches { justify-content: center; }
}

@media (hover: none) {
  /* touch keyboards zoom the whole page in on any field under 16px */
  .field input, .field select, .field textarea { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .petals { display: none; }
  [data-reveal].is-hidden { opacity: 1; transform: none; }
  .hero__mark path { fill: #2B2B28; stroke: none; }
}

/* ---- cómo llegar -------------------------------------------------------- */

.venue {
  margin-top: clamp(52px, 7vw, 84px);
  padding: clamp(38px, 5vw, 56px) clamp(24px, 4vw, 44px);
  border: 1px solid var(--rule);
  background: rgba(233, 226, 212, .45);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.venue__label {
  font-size: 10px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--olive);
}
.venue__name {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: .05em;
  color: var(--ink);
  text-shadow: var(--emboss);
}
.venue__note {
  margin: 0;
  font-family: var(--body);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
}
.venue__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.btn--map {
  margin-top: 0;
  padding: 15px 30px;
  font-size: 10px;
  letter-spacing: .26em;
}
