/* ==========================================================================
   Aho Gurudev 2026 — FAQ page (/faq)

   Load order:
     1. /_next/static/css/a08135ad37969fff.css   (homepage base: reset, Tailwind, colour vars, .btn-brand)
     2. /_next/static/css/0205620857ab2c3b.css   (homepage page CSS)
     3. this file                                (fonts + globals that live inside index.html, header, and this page)

   Self-contained and independent of every other page's stylesheet.
   All classes are prefixed `info-`.
   ========================================================================== */

/* ---- Homepage fonts (mirrors the @font-face blocks injected in index.html) ---- */
@font-face{font-family:"Cormorant Garamond";src:url("/Cormorant%20Garamond/CormorantGaramond-Light.woff2") format("woff2");font-weight:300;font-style:normal;font-display:swap}
@font-face{font-family:"Cormorant Garamond";src:url("/Cormorant%20Garamond/CormorantGaramond-Regular.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Cormorant Garamond";src:url("/Cormorant%20Garamond/CormorantGaramond-Italic.woff2") format("woff2");font-weight:400;font-style:italic;font-display:swap}
@font-face{font-family:"Cormorant Garamond";src:url("/Cormorant%20Garamond/CormorantGaramond-SemiBold.woff2") format("woff2");font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:"Cormorant Garamond";src:url("/Cormorant%20Garamond/CormorantGaramond-Bold.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:"The Seasons";src:url("/Cormorant%20Garamond/CormorantGaramond-Regular.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"The Seasons";src:url("/Cormorant%20Garamond/CormorantGaramond-Italic.woff2") format("woff2");font-weight:400;font-style:italic;font-display:swap}
@font-face{font-family:"Montserrat";src:url("/Lato/Lato-Light.woff2") format("woff2");font-weight:300;font-style:normal;font-display:swap}
@font-face{font-family:"Montserrat";src:url("/Lato/Lato-Regular.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Montserrat";src:url("/Lato/Lato-Italic.woff2") format("woff2");font-weight:400;font-style:italic;font-display:swap}
@font-face{font-family:"Montserrat";src:url("/Lato/Lato-Bold.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:"Lato";src:url("/Lato/Lato-Regular.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Lato";src:url("/Lato/Lato-Bold.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap}

:root{
  --font-seasons:"Cormorant Garamond";
  --info-burgundy-deep:var(--color-burgundy-deep,#331418);
  --info-rust:var(--color-rust,#8a432f);
  --info-amber:var(--color-amber,#a76228);
  --info-cream:var(--color-cream,#f8f1e5);
  --info-gold:var(--color-gold,#c9a257);
  --info-gold-light:var(--color-gold-light,#e8d5a0);
  --info-ink:rgba(42,17,16,.85);
  --info-title:#331418;      /* dark burgundy for titles */
  --info-label:#735714;      /* deep gold for small labels (readable on cream and tan) */
  --info-border:rgba(201,162,87,.6);
  --info-gutter:clamp(20px,4.167vw,80px);
  --info-bg-1:linear-gradient(180deg,#fbf7ee 0%,#f4ecd9 100%); /* the darker beige (homepage section gradient): every second section */
  --info-bg-2:#fbf8ee; /* light cream */
}

/* Sub-menu and "at a glance" links glide down to their section instead of snapping to it.
   The stop position is set by .info-section's scroll-margin-top, which clears the sticky sub-menu. */
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}

/* ---- Page base (mirrors the body rule injected in index.html) ---- */
body.info-page{
  font-family:"Montserrat",sans-serif;font-size:clamp(14px,1.05vw,16px);line-height:1.7;
  color:var(--info-ink);background-color:#f3f2dd;margin:0;
}
/* Zero-specificity reset, so the class rules below (margins etc.) always win */
:where(.info-page) :is(h1,h2,h3,p,ul,dl,dd,figure){margin:0;padding:0}
:where(.info-page) ul{list-style:none}
.info-page strong{color:var(--info-burgundy-deep);font-weight:700}

/* ==========================================================================
   Hero
   ========================================================================== */
/* Same design as the homepage "Aho Gurudev" section: dark-red "Aho", italic gold "Gurudev",
   a thin fading gold rule, and the spaced tagline, on the light beige gradient. */
.info-hero{
  position:relative;text-align:center;
  padding:clamp(26px,3.2vw,40px) var(--info-gutter) clamp(22px,2.6vw,32px);
  overflow:hidden;
  background:
    radial-gradient(65% 95% at 50% 0%,rgba(201,162,87,.30),transparent 70%),
    linear-gradient(180deg,#7a3a36 0%,#5f2b2a 100%);
}
.info-hero::after{ /* fine film grain, as on the homepage */
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.05;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.info-hero__inner{position:relative;z-index:1;max-width:1080px;margin:0 auto}
.info-hero__title{
  font-family:"Cormorant Garamond","The Seasons",Georgia,serif;font-weight:400;
  font-size:clamp(48px,14vw,64px);line-height:1;letter-spacing:.03em;color:#f5e6cb;margin:0;
}
.info-hero__title em{font-style:italic;color:#e2c27f;font-weight:400}
.info-hero__rule{width:clamp(110px,30vw,170px);height:1px;margin:12px auto;background:linear-gradient(90deg,transparent,#e2c27f 20%,#e2c27f 80%,transparent)}
.info-hero__tagline{
  font-family:"Lato","Montserrat",sans-serif;font-size:clamp(9px,2.6vw,12px);font-weight:700;letter-spacing:.2em;
  text-transform:uppercase;color:#f5e6cb;margin:0;white-space:nowrap;
}
.info-hero__tagline em{color:#e2c27f;font-style:normal}
@media (min-width:600px){
  .info-hero__title{font-size:clamp(64px,7vw,96px);letter-spacing:.04em}
  .info-hero__rule{width:clamp(120px,12vw,180px);margin:14px auto}
  .info-hero__tagline{font-size:clamp(12px,1vw,14px);letter-spacing:.34em}
}

/* ==========================================================================
   Sections
   ========================================================================== */
/* Two shades, alternating: --info-bg-1 (darker beige gradient) and --info-bg-2 (light cream), separated by the two shades. */
.info-section{
  position:relative;padding:clamp(30px,3.4vw,46px) var(--info-gutter);
  scroll-margin-top:76px; /* clears the sticky sub-menu */
  background:var(--info-bg-1);
}
.info-section--cream{background:var(--info-bg-2)}
.info-wrap{max-width:1080px;margin:0 auto}
.info-wrap--narrow{max-width:740px}
.info-center{text-align:center}

/* ---- Compact section header ---- */
.info-head{margin-bottom:12px}
.info-title{
  font-family:"Cormorant Garamond","The Seasons",Georgia,serif;font-weight:600;
  font-size:clamp(29px,3vw,38px);line-height:1.1;letter-spacing:.01em;color:var(--info-title);margin:0;
  font-variant-numeric:lining-nums;font-feature-settings:"lnum" 1;
}
.info-title em{font-style:italic;color:var(--info-rust)}
.info-lead{font-size:clamp(14px,1.05vw,15.5px);line-height:1.65;color:var(--info-ink)}
.info-lead + .info-lead{margin-top:6px}

/* ---- Sub-menu under the hero: one line of text links separated by "|" ----
   Sticks below the header while scrolling. Hover / active links change colour.
   On phones it scrolls sideways and the scrollbar is always visible. */
.info-jump{
  position:sticky;top:0;z-index:30;
  background:#5e2a29;
  border-top:1px solid rgba(201,162,87,.6);border-bottom:1px solid rgba(201,162,87,.6);
  box-shadow:0 8px 20px -14px rgba(51,20,24,.55);
  padding:0 var(--info-gutter);
}
.info-jump__list{
  display:flex;flex-wrap:nowrap;align-items:center;
  width:max-content;max-width:100%;margin:0 auto;padding:9px 0 11px;
  overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;
  scrollbar-width:thin;scrollbar-color:#c9a257 rgba(243,237,217,.22);
}
.info-jump__list::-webkit-scrollbar{height:6px}
.info-jump__list::-webkit-scrollbar-track{background:rgba(243,237,217,.22);border-radius:3px}
.info-jump__list::-webkit-scrollbar-thumb{background:#c9a257;border-radius:3px}
.info-jump__link{
  flex:none;position:relative;padding:11px clamp(14px,1.6vw,26px);
  font-family:"Lato",sans-serif;font-size:15px;font-weight:700;letter-spacing:.04em;text-transform:capitalize;line-height:1.2;
  text-decoration:none;white-space:nowrap;color:#f3edd9;transition:color .2s ease;
}
.info-jump__link + .info-jump__link::before{ /* the "|" separator */
  content:"|";position:absolute;left:0;top:50%;transform:translateY(-50%);
  font-weight:400;color:rgba(243,237,217,.35);pointer-events:none;
}
.info-jump__link:hover{color:#e8d5a0}
.info-jump__link.is-active{color:#e8c56b;box-shadow:inset 0 -2px 0 #c9a257}
.info-jump__link:focus-visible{outline:2px solid var(--info-gold);outline-offset:-2px}
@media (max-width:900px){
  .info-jump__list{overflow-x:scroll;margin:0 auto}  /* always-visible scrollbar; centred when it fits, scrolls when it does not */
  .info-jump__link{font-size:13px}
  .info-jump__link.is-active{box-shadow:none} /* no underline on phones: the colour change alone marks the active link */
}

/* ---- Cards ---- */
.info-grid{display:grid;gap:clamp(10px,1.2vw,16px);margin-top:clamp(14px,1.8vw,22px)}
.info-grid--2{grid-template-columns:repeat(2,minmax(0,1fr))}
.info-grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}
.info-card{
  position:relative;background:#fff;border:1px solid var(--info-border);border-radius:4px;
  padding:clamp(14px,1.6vw,20px);
  box-shadow:0 1px 2px rgba(51,20,24,.08),0 10px 22px -16px rgba(51,20,24,.35);
}
.info-card::before{content:"";position:absolute;left:0;right:0;top:0;height:2px;background:linear-gradient(90deg,transparent,var(--info-gold),transparent);opacity:.7}
.info-card__label{
  font-family:"Lato",sans-serif;font-size:11px;letter-spacing:.2em;text-transform:uppercase;color:var(--info-rust);margin-bottom:6px;
}
.info-card__value{
  font-family:"Cormorant Garamond","The Seasons",Georgia,serif;font-size:clamp(20px,1.7vw,26px);font-weight:600;line-height:1.2;
  color:var(--info-rust);font-variant-numeric:lining-nums;font-feature-settings:"lnum" 1;
}
.info-card__text{font-size:14px;line-height:1.6;color:var(--info-ink);margin-top:4px}
.info-card--center{text-align:center}
.info-address{font-size:clamp(14px,1.05vw,16px);line-height:1.6;color:var(--info-ink)}
.info-address strong{color:var(--info-rust);font-family:"Cormorant Garamond",Georgia,serif;font-size:clamp(20px,1.7vw,26px);font-weight:600;display:block;line-height:1.2;margin-bottom:2px}
.info-tbd{font-style:italic;color:rgba(42,17,16,.72);font-weight:400;font-family:"Montserrat",sans-serif;font-size:.62em;letter-spacing:.06em}

/* ---- Callout ---- */
.info-note{margin-top:10px;font-size:13.5px;line-height:1.55;color:var(--info-ink);padding:0}
.info-note > svg{color:#b8862c;vertical-align:-4px;margin-right:7px}
.info-note--warn > svg{vertical-align:-5px}
.info-note--warn{
  margin-top:12px;padding:10px 12px;border-radius:4px;background:rgba(201,162,87,.14);border-left:3px solid #b8862c;
}

/* ---- Table ---- */
.info-table-wrap{margin-top:clamp(14px,1.8vw,20px);background:#fff;border:1px solid var(--info-border);border-radius:4px;overflow-x:auto;box-shadow:0 1px 2px rgba(51,20,24,.06),0 10px 22px -16px rgba(51,20,24,.3)}
.info-table{width:100%;border-collapse:collapse}
/* Header row = deep red banner (same red as the homepage footer), so every table stands out */
.info-table th{
  font-family:"Lato",sans-serif;font-size:11px;letter-spacing:.2em;text-transform:uppercase;color:#f3edd9;
  text-align:left;font-weight:700;padding:11px clamp(14px,2vw,24px);background:#5e2a29;border-bottom:0;
}
.info-table td{padding:9px clamp(14px,2vw,24px);border-bottom:1px solid rgba(201,162,87,.2);font-size:14px}
.info-table tr:last-child td{border-bottom:0}
.info-table td:first-child,.info-table td:last-child{font-weight:700;color:var(--info-burgundy-deep)}

/* ---- Buttons ---- */
.info-actions{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;margin-top:14px}
.info-btn{
  display:inline-flex;align-items:center;gap:10px;padding:13px 30px;border-radius:9999px;font-family:"Montserrat",sans-serif;
  font-size:.8rem;font-weight:700;letter-spacing:.04em;text-decoration:none;cursor:pointer;background:var(--info-amber);color:#fff;border:none;
  transition:filter .2s,transform .2s;
}
.info-btn:hover{filter:brightness(1.1);transform:translateY(-1px)}
.info-btn:focus-visible{outline:2px solid var(--info-gold);outline-offset:3px}
/* centres a single .info-btn under a section's content (e.g. "Detailed Programme" below the schedule) */
.info-btn-wrap{display:flex;justify-content:center;margin:clamp(18px,2.4vw,28px) 0 0}

/* ---- Sub-headings inside a section (Entry, Parking, Exit ...) ---- */
.info-sub{
  font-family:"Cormorant Garamond","The Seasons",Georgia,serif;font-size:clamp(19px,1.6vw,23px);font-weight:600;color:var(--info-title);
  margin:clamp(16px,2vw,24px) 0 0;text-align:center;
}

/* Placeholders inside running text / lists keep the surrounding size */
.info-list .info-tbd,.info-card__text .info-tbd{font-size:1em;letter-spacing:0;font-family:inherit}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1000px){
  .info-grid--3{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:599px){
  .info-table th,.info-table td{padding-left:10px;padding-right:10px}
  /* the small section label sits well under the title on a phone */
  .info-grid--2,.info-grid--3{grid-template-columns:minmax(0,1fr)}
  .info-btn{width:100%;justify-content:center}
}
@media (prefers-reduced-motion:reduce){
  .info-jump__link,.info-btn{transition:none}
}

/* ---- Links inside cards (Google Maps) and a wider single card ---- */
.info-card__link{
  display:inline-block;margin-top:8px;padding-bottom:2px;font-family:"Lato",sans-serif;font-size:11px;font-weight:700;
  letter-spacing:.16em;text-transform:uppercase;color:var(--info-rust);text-decoration:none;
  border-bottom:1px solid rgba(138,67,47,.35);transition:color .2s ease,border-color .2s ease;
}
.info-card__link::after{content:" \2192"}
.info-card__link:hover{color:#b8862c;border-color:#b8862c}
.info-card--wide{max-width:820px;margin:10px auto 0}
.info-acc__panel .info-card--wide{max-width:none;margin:14px 0 0}

/* ---- Inline download link next to a sentence ---- */

/* ---- Shuttle stops on phones: one compact row per stop (letter | name | Directions) ---- */
@media (max-width:599px){
  .info-grid--stops{gap:8px}
  .info-grid--stops .info-card{
    display:grid;grid-template-columns:auto minmax(0,1fr) auto;column-gap:12px;align-items:center;
    text-align:left;padding:10px 14px;
  }
  .info-grid--stops .info-card__label{grid-column:1;grid-row:1 / span 2;margin:0;font-size:12px;letter-spacing:.06em}
  .info-grid--stops .info-card__value{grid-column:2;grid-row:1;font-size:18px;line-height:1.2}
  .info-grid--stops .info-card__text{grid-column:2;grid-row:2;margin:0;font-size:12.5px;line-height:1.35}
  .info-grid--stops .info-card__link{grid-column:3;grid-row:1 / span 2;margin:0;white-space:nowrap;font-size:10.5px}
}

/* ==========================================================================
   Icons: small line icons inside the white boxes (gold)
   ========================================================================== */
.info-card__icon{display:block;margin:0 0 6px;color:#b8862c;line-height:0}
.info-card--center .info-card__icon{margin-left:auto;margin-right:auto}
.info-card__svg{display:inline-block}

/* ---- Icon-left boxes: icon on the left, text next to it, left-aligned (timings, venue, Android / iOS) ---- */
.info-grid--iconleft .info-card,.info-card--iconleft{
  display:grid;grid-template-columns:auto minmax(0,1fr);column-gap:14px;align-items:center;text-align:left;
}
.info-grid--iconleft .info-card > *,.info-card--iconleft > *{grid-column:2}
.info-grid--iconleft .info-card > .info-card__icon,.info-card--iconleft > .info-card__icon{grid-column:1;grid-row:1 / span 5;margin:0}
.info-grid--iconleft .info-card__label,.info-card--iconleft .info-card__label{margin:0 0 2px}
.info-grid--iconleft .info-card__link,.info-card--iconleft .info-card__link{justify-self:start}

/* ---- Entry / Parking / Exit boxes: icon on the left, label, value and text stacked next to it, left-aligned ---- */
.info-grid--iconstack .info-card{display:grid;grid-template-columns:auto minmax(0,1fr);column-gap:14px;align-content:start;align-items:start;text-align:left}
.info-grid--iconstack .info-card > *{grid-column:2}
.info-grid--iconstack .info-card > .info-card__icon{grid-column:1;grid-row:1 / span 4;margin:2px 0 0}
.info-grid--iconstack .info-card__link{justify-self:start}

/* ---- Note box (Security Advisory): icon left, label + text left-aligned, accent bar on the left edge ---- */
.info-card--note{margin-top:clamp(14px,1.8vw,20px);border-left:4px solid #b8862c}
.info-card--iconleft .info-card__text{margin:0}
/* notes sitting inside a card grid */
.info-grid .info-card--note{margin-top:0}

/* Two or more sections sharing one continuous background (Registration + Meals) */
.info-band{background:linear-gradient(180deg,#fbf7ee 0%,#f4ecd9 100%);padding:clamp(16px,2.2vw,30px) 0} /* the darker beige, with space at each background change */
.info-band > .info-section{background:transparent}
/* sections that stand on their own background get the same breathing room */
.info-section:not(.info-band .info-section){padding-top:clamp(40px,4.6vw,64px);padding-bottom:clamp(40px,4.6vw,64px)}

/* ---- Dress Code: the key line is large and easy to read, the courtesy line is small and subtle ---- */
.info-dress{margin:0}
.info-dress__lead{display:block;font-size:clamp(15px,1.3vw,18px);color:var(--info-ink)}
.info-dress__key{
  display:block;margin-top:4px;font-family:"Lato","Montserrat",sans-serif;font-weight:700;
  font-size:clamp(17px,1.6vw,21px);line-height:1.3;letter-spacing:.01em;color:var(--info-title);
}
.info-dress__sub{margin:8px 0 0;font-size:13px;font-style:italic;line-height:1.5;color:rgba(42,17,16,.65)}

/* ---- Two numbered steps joined by an arrow (QR code -> entry band) ---- */
.info-steps{display:grid;grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);gap:clamp(8px,1.4vw,16px);align-items:stretch;margin-top:clamp(18px,2.2vw,26px)}
.info-steps .info-card{padding-top:clamp(20px,2vw,26px)}
.info-step__num{
  position:absolute;top:-13px;left:16px;width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:#5e2a29;color:#f3edd9;font-family:"Lato",sans-serif;font-weight:700;font-size:14px;box-shadow:0 2px 6px rgba(51,20,24,.3);
}
.info-steps__arrow{align-self:center;flex:none;width:42px;height:42px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#5e2a29;color:#f3edd9;box-shadow:0 4px 10px -4px rgba(51,20,24,.5)}
@media (max-width:599px){
  .info-steps{grid-template-columns:minmax(0,1fr);row-gap:6px}
  .info-steps__arrow{justify-self:center;width:36px;height:36px}
  .info-steps__arrow svg{transform:rotate(90deg)}
}

/* Venue box: narrower on desktop so it does not stretch across the page */
.info-card--venue{margin-top:12px}
@media (min-width:600px){.info-card--venue{width:-moz-fit-content;width:fit-content;max-width:620px;margin-right:auto}}
.info-note__svg{display:inline-block}

/* ==========================================================================
   At a glance: the four facts most people need, right under the sub-menu.
   Light card so it does not stack another block of red under the banner.
   ========================================================================== */
.info-glance{background:var(--info-bg-2);padding:clamp(14px,2vw,22px) var(--info-gutter)}
.info-glance__grid{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));
  max-width:1080px;margin:0 auto;background:#fff;
  border:1px solid var(--info-border);border-radius:4px;overflow:hidden;
  box-shadow:0 1px 2px rgba(51,20,24,.08),0 10px 22px -16px rgba(51,20,24,.35);
}
.info-glance__item{
  display:flex;flex-direction:column;align-items:center;gap:2px;text-align:center;
  padding:12px clamp(8px,1.2vw,16px);border-left:1px solid rgba(201,162,87,.32);
}
.info-glance__item:first-child{border-left:0}
.info-glance__icon{color:#b8862c;line-height:0}
.info-glance__label{
  font-family:"Lato",sans-serif;font-size:9.5px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--info-rust);
}
.info-glance__value{
  font-family:"Lato","Montserrat",sans-serif;font-size:clamp(12px,1.05vw,14.5px);font-weight:700;line-height:1.3;color:var(--info-title);
}
@media (max-width:599px){
  .info-glance__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .info-glance__item:nth-child(odd){border-left:0}
  .info-glance__item:nth-child(n+3){border-top:1px solid rgba(201,162,87,.32)}
}

/* ==========================================================================
   Compact rows: one white card, one line per fact — quick to scan on a phone
   ========================================================================== */
.info-rows{
  margin-top:12px;background:#fff;border:1px solid var(--info-border);border-radius:4px;overflow:hidden;
  box-shadow:0 1px 2px rgba(51,20,24,.08),0 10px 22px -16px rgba(51,20,24,.35);
}
.info-rows__title{
  margin-top:14px;font-family:"Lato",sans-serif;font-size:11px;font-weight:700;letter-spacing:.2em;
  text-transform:uppercase;color:var(--info-rust);
}
.info-rows__title + .info-rows{margin-top:6px}
.info-row{
  display:flex;align-items:center;gap:12px;padding:11px clamp(12px,1.4vw,18px);
  border-top:1px solid rgba(201,162,87,.28);
}
.info-row:first-child{border-top:0}
.info-row__icon{flex:none;color:#b8862c;line-height:0}
.info-row__text{display:flex;flex-direction:column;min-width:0;flex:1}
.info-row__label{
  font-family:"Lato",sans-serif;font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--info-rust);line-height:1.4;
}
.info-row__value{font-size:14px;line-height:1.5;color:var(--info-ink)}
.info-row__value:empty{display:none}
.info-row__link{
  flex:none;align-self:center;font-family:"Lato",sans-serif;font-size:10.5px;font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;color:var(--info-rust);text-decoration:none;white-space:nowrap;
  border-bottom:1px solid rgba(138,67,47,.35);padding-bottom:2px;transition:color .2s ease,border-color .2s ease;
}
.info-row__link::after{content:" \2192"}
.info-row__link:hover{color:#b8862c;border-color:#b8862c}
/* numbered steps use the same row, with a red badge in place of a bullet */
.info-row__step{
  flex:none;width:22px;height:22px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:#5e2a29;color:#f3edd9;font-family:"Lato",sans-serif;font-weight:700;font-size:12px;
}
.info-rows--steps .info-row{gap:10px}

/* ---- App download block: says which app, with a button per platform ---- */
.info-app{
  margin-top:12px;background:#fff;border:1px solid var(--info-border);border-radius:4px;
  padding:clamp(14px,1.6vw,18px);box-shadow:0 1px 2px rgba(51,20,24,.08),0 10px 22px -16px rgba(51,20,24,.35);
}
.info-app__label{
  font-family:"Lato",sans-serif;font-size:10.5px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--info-rust);
}
.info-app__name{
  font-family:"Cormorant Garamond","The Seasons",Georgia,serif;font-size:clamp(20px,1.8vw,25px);font-weight:600;
  line-height:1.2;color:var(--info-title);margin-top:1px;
}
.info-app__buttons{display:flex;flex-wrap:wrap;gap:12px;margin-top:14px}
.info-app__badge{
  display:inline-block;line-height:0;border-radius:8px;
  transition:transform .2s ease,filter .2s ease;
}
.info-app__badge img{display:block;width:154px;max-width:100%;height:auto}
.info-app__badge:hover{transform:translateY(-1px);filter:brightness(1.06)}
.info-app__badge:focus-visible{outline:2px solid var(--info-gold);outline-offset:3px}

/* ---- Download button: a PDF sheet and a download arrow, so it reads as a file ---- */
.info-dl{
  display:inline-flex;align-items:center;gap:9px;margin-top:10px;padding:9px 14px;border-radius:6px;
  background:#fff;border:1px solid var(--info-border);text-decoration:none;color:var(--info-title);
  box-shadow:0 1px 2px rgba(51,20,24,.08);transition:border-color .2s ease,transform .2s ease,box-shadow .2s ease;
}
.info-dl:hover{border-color:#b8862c;transform:translateY(-1px);box-shadow:0 4px 12px -6px rgba(51,20,24,.4)}
.info-dl:focus-visible{outline:2px solid var(--info-gold);outline-offset:2px}
.info-dl__file{flex:none;color:#b8862c}
.info-dl__text{font-family:"Lato",sans-serif;font-size:13.5px;font-weight:700;letter-spacing:.02em}
.info-dl__arrow{flex:none;color:var(--info-rust)}

/* Quick-fact tiles that open Google Maps: shown as links with a small arrow */
.info-glance__item--link{text-decoration:none;color:inherit;transition:background-color .2s ease}
.info-glance__item--link:hover{background-color:rgba(201,162,87,.12)}
.info-glance__item--link:focus-visible{outline:2px solid var(--info-gold);outline-offset:-2px}
.info-glance__go{
  display:inline-flex;align-items:center;gap:3px;margin-top:3px;font-family:"Lato",sans-serif;font-size:9.5px;
  font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--info-rust);
  border-bottom:1px solid rgba(138,67,47,.4);padding-bottom:1px;
}
.info-glance__go::after{content:"\2197"}
.info-glance__item--link:hover .info-glance__go{color:#b8862c;border-color:#b8862c}

/* ==========================================================================
   Desktop and tablet only (phones keep the compact left-aligned layout above):
   centred headings, larger type, and less space between sections.
   ========================================================================== */
@media (min-width:600px){
  /* tighter gaps between sections */
  .info-section{padding-top:26px;padding-bottom:26px}
  .info-band{padding:14px 0}
  .info-section:not(.info-band .info-section){padding-top:34px;padding-bottom:34px}

  /* centred section headings, with the gold rule above as on the homepage */
  .info-head{text-align:center;margin-bottom:16px}
  .info-title{text-align:center;font-size:clamp(34px,3.4vw,44px)}

  /* centred running text and single elements */
  .info-lead{text-align:center;font-size:17px;line-height:1.75}
  .info-note{text-align:center;font-size:15px}
  .info-rows__title{text-align:center;font-size:12px}
  .info-dress{text-align:center}
  .info-dress__lead{font-size:19px}
  .info-dress__key{font-size:26px}
  .info-dress__sub{text-align:center;font-size:14.5px}
  .info-dl{display:flex;width:-moz-fit-content;width:fit-content;margin-left:auto;margin-right:auto;padding:11px 18px}
  .info-dl__text{font-size:15px}
  .info-card--venue{margin-left:auto;margin-right:auto;text-align:center;padding:24px 56px 22px}
  .info-card--venue .info-card__link{display:inline-block}

  /* larger type inside the cards and tables */
  .info-row{padding:14px clamp(16px,1.6vw,22px)}
  .info-row__label{font-size:12px;letter-spacing:.16em}
  .info-row__value{font-size:15.5px}
  .info-row__link{font-size:11.5px}
  .info-table th{font-size:12px;padding-top:12px;padding-bottom:12px}
  .info-table td{font-size:15.5px;padding-top:12px;padding-bottom:12px}
  .info-glance__label{font-size:10.5px}
  .info-glance__value{font-size:15.5px}
  .info-glance__go{font-size:10.5px}
  .info-app{text-align:center}
  .info-app__label{font-size:11.5px}
  .info-app__name{font-size:27px}
  .info-app__buttons{justify-content:center}
  .info-note--warn{text-align:left}
}

/* A note people must not skip: bigger, with a gold band behind it */
.info-note--key{
  display:flex;align-items:center;gap:10px;margin-top:14px;padding:12px 14px;border-radius:4px;
  background:rgba(201,162,87,.18);border-left:3px solid #b8862c;
  font-size:15.5px;font-weight:700;color:var(--info-title);
}
.info-note--key > svg{flex:none;color:#b8862c;vertical-align:0;margin-right:0}
@media (min-width:600px){
  .info-note--key{justify-content:center;font-size:17px;text-align:left}
}

/* A confirmed time reads as a fact, not a placeholder */
.info-row__value--time{font-family:"Lato","Montserrat",sans-serif;font-size:16px;font-weight:700;color:var(--info-title)}
@media (min-width:600px){.info-row__value--time{font-size:18px}}

/* Key detail inside a row (gate numbers, parking zones): bold coloured text so it cannot be missed,
   without a solid box behind it (which read as one more cramped "dabba" in tight layouts, e.g. the
   3-column Kids' Corner table) — at every width. */
.info-key{
  display:inline;background:none;color:var(--info-burgundy-deep);padding:0;margin:0;
  font-family:"Lato","Montserrat",sans-serif;font-size:15.5px;font-weight:800;letter-spacing:.04em;line-height:1.35;white-space:nowrap;
}
@media (min-width:600px){.info-key{font-size:18px}}

/* ---- Footer bar: copyright and legal links, as at the bottom of the homepage footer ---- */
.info-footer{background:#5e2a29;padding:0 var(--info-gutter)}
.info-footer__inner{
  max-width:1240px;margin:0 auto;padding:22px 0;border-top:1px solid rgba(243,242,221,.15);
  display:flex;flex-direction:column;align-items:flex-start;gap:12px;
}
.info-footer__copy{margin:0;font-family:"Lato",sans-serif;font-size:12px;letter-spacing:.02em;line-height:1.5;color:rgba(243,242,221,.7)}
.info-footer__links{display:flex;align-items:center;gap:24px}
.info-footer__links a{font-family:"Lato",sans-serif;font-size:12px;color:rgba(243,242,221,.7);text-decoration:none;transition:color .2s ease}
.info-footer__links a:hover{color:#c9a96a}
.info-footer__links a:focus-visible{outline:2px solid #c9a96a;outline-offset:3px}
@media (min-width:600px){
  .info-footer__inner{flex-direction:row;align-items:center;justify-content:space-between}
  .info-footer__copy,.info-footer__links a{font-size:13px}
}

/* Cells that jump to a section on this page show a down arrow instead of the opens-a-map arrow */
.info-glance__go--down::after{content:"\2193"}
