/* ============================================================
   FREEDOM CHENNAI — DESIGN SYSTEM
   Theme: "Daybreak" — light breaking over the horizon, freedom in motion.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,500&family=Public+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root{
  /* ---- Color tokens ---- */
  --indigo-dusk:   #1C2141;   /* deep base — header, hero overlay, footer   */
  --indigo-dusk-80:rgba(28,33,65,.82);
  --sunrise-gold:  #F5A93F;   /* primary accent — CTAs, underlines          */
  --coral-ember:   #E85A45;   /* secondary accent — urgent CTAs, tags       */
  --linen:         #FBF7F0;   /* light section background                  */
  --ink:           #23232B;   /* body text                                  */
  --mist-teal:     #7FA6A1;   /* tertiary — dividers, muted labels          */
  --white:         #FFFFFF;

  --gradient-daybreak: linear-gradient(120deg, #1C2141 0%, #3A2E55 45%, #E85A45 78%, #F5A93F 100%);
  --gradient-overlay:  linear-gradient(180deg, rgba(28,33,65,.15) 0%, rgba(28,33,65,.75) 100%);

  /* ---- Type ---- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* ---- Scale ---- */
  --step-eyebrow: .75rem;
  --step-body:    1rem;
  --step-lg:      1.25rem;
  --step-h3:      1.75rem;
  --step-h2:      2.5rem;
  --step-h1:      clamp(2.75rem, 5vw + 1rem, 5rem);

  /* ---- Layout ---- */
  --max-width: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-sm: 6px;
  --radius-md: 14px;
  --header-h: 84px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }

.container{
  max-width: var(--max-width);
  margin-inline:auto;
  padding-inline: var(--gutter);
}

.eyebrow{
  font-family: var(--font-mono);
  font-size: var(--step-eyebrow);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-ember);
  display:inline-flex;
  align-items:center;
  gap:.5rem;
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background: var(--coral-ember);
  display:inline-block;
}

h1,h2,h3,h4{ font-family: var(--font-display); font-weight:600; color: var(--indigo-dusk); margin:0 0 .5em; line-height:1.12; }
h1{ font-size: var(--step-h1); font-weight:600; }
h2{ font-size: var(--step-h2); }
h3{ font-size: var(--step-h3); }
p{ margin:0 0 1em; }
.lede{ font-size: var(--step-lg); color:#4A4A57; max-width:60ch; }

/* ---- Buttons ---- */
.btn{
  display:inline-flex; align-items:center; gap:.6rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight:700; font-size:.95rem;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn-primary{ background: var(--sunrise-gold); color: var(--indigo-dusk); }
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 10px 24px rgba(245,169,63,.35); }
.btn-outline{ background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline:hover{ background: rgba(255,255,255,.12); }
.btn-dark{ background: var(--indigo-dusk); color:var(--white); }
.btn-dark:hover{ transform: translateY(-2px); box-shadow: 0 10px 24px rgba(28,33,65,.3); }
.btn-ghost{ background:transparent; color:var(--indigo-dusk); border-color: rgba(28,33,65,.2); }
.btn-ghost:hover{ border-color: var(--indigo-dusk); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header{
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display:flex; align-items:center;
  background: transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled{
  background: var(--indigo-dusk-80);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; width:100%; }

.brand{ display:flex; align-items:center; gap:.65rem; }
.brand-mark{ width:38px; height:38px; object-fit:contain; }
.brand-word{ font-family:var(--font-display); font-weight:700; font-size:1.15rem; color:var(--white); letter-spacing:.01em; }
.brand-word span{ display:block; font-family:var(--font-mono); font-size:.62rem; letter-spacing:.24em; color: var(--sunrise-gold); font-weight:500; }
.brand-logo{ height:49px; width:auto; object-fit:contain; }
.brand-location{ font-family:var(--font-mono); font-size:.65rem; letter-spacing:.22em; color: var(--sunrise-gold); font-weight:500; padding-left:.65rem; border-left:1px solid rgba(255,255,255,.3); }

.nav-primary{ display:flex; align-items:center; gap:2.1rem; }
.nav-primary > ul{ display:flex; align-items:center; gap:1.9rem; }
.nav-primary a{
  color: var(--white); font-weight:600; font-size:.92rem;
  position:relative; padding:.3rem 0;
}
.nav-primary a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px;
  background: var(--sunrise-gold); transition: right .3s var(--ease);
}
.nav-primary a:hover::after, .nav-primary li.open > a::after{ right:0; }

.has-dropdown{ position:relative; }
.dropdown{
  position:absolute; top:calc(100% + 18px); left:50%; transform:translateX(-50%);
  min-width:220px; background: var(--white); border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(20,20,40,.2);
  padding:.6rem; opacity:0; visibility:hidden; translate: 0 8px;
  transition: opacity .2s var(--ease), translate .2s var(--ease), visibility .2s;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown{
  opacity:1; visibility:visible; translate:0 0;
}
.dropdown a{ color: var(--ink); display:block; padding:.55rem .75rem; border-radius:8px; font-weight:500; font-size:.88rem; }
.dropdown a::after{ display:none; }
.dropdown a:hover{ background: var(--linen); color: var(--coral-ember); }

.nav-actions{ display:flex; align-items:center; gap:.7rem; }
.nav-actions .btn{ font-size:.65rem; padding:.75rem 1.5rem; width:130px; line-height:1; text-align:center; justify-content:center; }
.nav-toggle{
  display:none; background:none; border:none; width:38px; height:38px;
  position:relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; position:absolute; left:8px; right:8px; height:2px; background:var(--white); transition:.3s var(--ease);
}
.nav-toggle span{ top:18px; }
.nav-toggle span::before{ top:-8px; }
.nav-toggle span::after{ top:8px; }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero{ position:relative; height:100svh; min-height:560px; overflow:hidden; background:var(--indigo-dusk); }
.hero-slides{ position:absolute; inset:0; }
.hero-slide{
  position:absolute; inset:0;
  opacity:0; visibility:hidden;
  transition: opacity 1.1s var(--ease), visibility 1.1s;
}
.hero-slide.is-active{ opacity:1; visibility:visible; z-index:1; }
.hero-slide img, .hero-slide video{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover; object-position: center 20%;
}
.hero-slide::after{ content:""; position:absolute; inset:0; background: var(--gradient-overlay); }
.hero.has-video .mute-toggle{ display:inline-flex; }

.hero-content{
  position:relative; z-index:5; height:100%;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding-bottom: clamp(3rem, 8vh, 6rem);
}
.hero-copy{ max-width:760px; }
.hero-copy .eyebrow{ color: var(--sunrise-gold); }
.hero-copy .eyebrow::before{ background: var(--sunrise-gold); }
.hero-copy h1, .hero-copy h2{ color: var(--white); margin-top:.4rem; font-size: var(--step-h1); font-weight:600; }
.hero-copy p{ color: rgba(255,255,255,.85); font-size:var(--step-lg); max-width:52ch; }
.hero-cta{ display:flex; gap:1rem; flex-wrap:wrap; margin-top:1.4rem; }

.hero-controls{
  position:absolute; right: var(--gutter); bottom: clamp(3rem, 8vh, 6rem);
  z-index:6; display:flex; align-items:center; gap:.9rem;
}
.hero-dots{ display:flex; gap:.5rem; }
.hero-dots button{
  width:9px; height:9px; border-radius:50%; border:1px solid rgba(255,255,255,.6);
  background:transparent; padding:0; transition: background .25s, width .25s;
}
.hero-dots button.is-active{ background: var(--sunrise-gold); border-color:var(--sunrise-gold); width:26px; border-radius:5px; }
.hero-arrow, .mute-toggle{
  width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.08); color:var(--white); display:inline-flex; align-items:center; justify-content:center;
  backdrop-filter: blur(6px); transition: background .25s;
}
.hero-arrow:hover, .mute-toggle:hover{ background: rgba(255,255,255,.22); }
.mute-toggle{ display:none; }
.mute-toggle .icon-unmuted{ display:none; }
.mute-toggle.is-unmuted .icon-muted{ display:none; }
.mute-toggle.is-unmuted .icon-unmuted{ display:inline-flex; }

.scroll-cue{
  position:absolute; left:50%; bottom:1.6rem; transform:translateX(-50%); z-index:6;
  color:rgba(255,255,255,.75); font-family:var(--font-mono); font-size:.7rem; letter-spacing:.18em; text-transform:uppercase;
  display:flex; flex-direction:column; align-items:center; gap:.5rem;
}
.scroll-cue .line{ width:1px; height:34px; background:linear-gradient(var(--sunrise-gold), transparent); animation: pulse-line 2.2s infinite; }
@keyframes pulse-line{ 0%,100%{ opacity:.3 } 50%{ opacity:1 } }

/* Horizon signature motif — thin daybreak arc used across section dividers */
.horizon-divider{ position:relative; height:3px; background: var(--gradient-daybreak); background-size:200% 100%; }

/* ============================================================
   SECTIONS — shared rhythm
   ============================================================ */
section{ padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section-head{ max-width:640px; margin-bottom: 2.75rem; }
.section-head.center{ margin-inline:auto; text-align:center; }

.bg-dark{ background: var(--indigo-dusk); color: rgba(255,255,255,.88); }
.bg-dark h2, .bg-dark h3{ color: var(--white); }
.bg-dark .lede{ color: rgba(255,255,255,.72); }
.bg-white{ background: var(--white); }
.bg-linen{ background: var(--linen); }

/* Service strip */
.service-strip{
  background: var(--indigo-dusk);
  color:var(--white);
  padding: 1.1rem 0;
}
.service-strip .container{ display:flex; flex-wrap:wrap; gap:1.5rem 2.5rem; align-items:center; justify-content:space-between; }
.service-strip .item{ display:flex; align-items:center; gap:.6rem; font-size:.92rem; }
.service-strip .item strong{ color: var(--sunrise-gold); font-family:var(--font-mono); font-weight:500; letter-spacing:.03em; }

/* Welcome / intro */
.intro-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,5vw,4rem); align-items:center; }
.intro-media{ position:relative; border-radius: var(--radius-md); overflow:hidden; aspect-ratio: 4/5; }
.intro-media img{ width:100%; height:100%; object-fit:cover; object-position: center 15%; }
.intro-media::before{
  content:""; position:absolute; inset:auto -20px -20px auto; width:65%; height:65%;
  border: 1.5px solid var(--sunrise-gold); border-radius: var(--radius-md); z-index:-1;
}

/* Card grid (Ministries / Connect teasers) */
.card-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.card{
  background: var(--white); border-radius: var(--radius-md); overflow:hidden;
  box-shadow: 0 1px 0 rgba(28,33,65,.06);
  border:1px solid rgba(28,33,65,.08);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display:flex; flex-direction:column;
}
.card:hover{ transform: translateY(-6px); box-shadow: 0 22px 40px rgba(28,33,65,.14); }
.card-media{ aspect-ratio: 16/10; overflow:hidden; background: var(--mist-teal); position:relative;}
.card-media img{ width:100%; height:100%; object-fit:cover; object-position: center 20%; transition: transform .5s var(--ease); }
.card:hover .card-media img{ transform: scale(1.06); }
.card-tag{
  position:absolute; top:.8rem; left:.8rem; background: var(--indigo-dusk); color:var(--white);
  font-family:var(--font-mono); font-size:.65rem; letter-spacing:.08em; text-transform:uppercase;
  padding:.3rem .6rem; border-radius:999px;
}
.card-body{ padding: 1.4rem 1.5rem 1.6rem; display:flex; flex-direction:column; gap:.5rem; flex:1; }
.card-body h3{ font-size:1.25rem; margin-bottom:.15rem; }
.card-body p{ color:#5b5b66; font-size:.94rem; margin-bottom:.3rem; }
.card-link{ margin-top:auto; font-weight:700; font-size:.86rem; color: var(--coral-ember); display:inline-flex; align-items:center; gap:.4rem; }
.card-link svg{ transition: transform .25s var(--ease); }
.card-link:hover svg{ transform: translateX(4px); }

/* Watch / video teaser */
.watch-panel{
  position:relative; border-radius: var(--radius-md); overflow:hidden; aspect-ratio: 16/8;
  display:flex; align-items:center; justify-content:center; background:var(--indigo-dusk);
}
.watch-panel img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position: center 20%; opacity:.55; }
.play-btn{
  position:relative; z-index:2; width:84px; height:84px; border-radius:50%;
  background: var(--sunrise-gold); display:flex; align-items:center; justify-content:center;
  box-shadow: 0 0 0 0 rgba(245,169,63,.5); animation: ring 2.4s infinite;
}
@keyframes ring{ 0%{ box-shadow:0 0 0 0 rgba(245,169,63,.45)} 70%{ box-shadow:0 0 0 24px rgba(245,169,63,0)} 100%{ box-shadow:0 0 0 0 rgba(245,169,63,0)} }
.watch-live-badge{
  position:absolute; top:1.2rem; left:1.2rem; z-index:3; background: var(--coral-ember); color:#fff;
  font-family:var(--font-mono); font-size:.68rem; letter-spacing:.1em; padding:.4rem .7rem; border-radius:999px;
  display:flex; align-items:center; gap:.4rem;
}
.watch-live-badge .dot{ width:7px; height:7px; border-radius:50%; background:#fff; animation: pulse-line 1.4s infinite; }

/* Give band */
.give-band{
  background: var(--gradient-daybreak);
  color:var(--white); border-radius: var(--radius-md);
  padding: clamp(2.2rem,5vw,3.5rem);
  display:grid; grid-template-columns: 1.2fr .8fr; gap:2rem; align-items:center;
}
.give-band h2{ color:var(--white); }
.give-methods{ display:flex; gap:1rem; flex-wrap:wrap; }
.give-methods .btn-outline{ border-color: rgba(255,255,255,.6); }

/* Ministries locations strip */
.locations-strip{ display:flex; gap:1.5rem; flex-wrap:wrap; }
.location-pill{
  flex:1 1 200px; background: var(--white); border:1px solid rgba(28,33,65,.1);
  border-radius: var(--radius-md); padding:1.4rem; display:flex; flex-direction:column; gap:.4rem;
}
.location-pill .eyebrow{ color: var(--mist-teal); }
.location-pill .eyebrow::before{ background: var(--mist-teal); }

/* Members / CRM login band */
.members-band{
  background: var(--indigo-dusk); color:#fff; position:relative; overflow:hidden;
}
.members-band .horizon-divider{ position:absolute; top:0; left:0; right:0; }
.members-inner{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:2rem;
  padding: 3rem 0;
}
.members-copy h2{ color:#fff; margin-bottom:.4rem; }
.members-copy p{ color: rgba(255,255,255,.72); margin:0; max-width:46ch; }
.members-actions{ display:flex; gap:1rem; flex-wrap:wrap; }
.members-icon{
  width:56px; height:56px; border-radius:14px; background: rgba(245,169,63,.15);
  border:1px solid rgba(245,169,63,.4); display:flex; align-items:center; justify-content:center; margin-bottom:1rem;
}

/* Newsletter / Fish Mag style callout */
.callout{
  display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap;
  background: var(--linen); border:1px dashed rgba(28,33,65,.25); border-radius: var(--radius-md);
  padding: 2rem 2.2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background: #14162B; color: rgba(255,255,255,.75); padding-top: 4.5rem; }
.footer-grid{
  display:grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 2.5rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer .brand-logo{ height:98px; }
.site-footer .brand-location{ font-size:.78rem; padding-left:.9rem; }
.footer-brand p{ color: rgba(255,255,255,.6); font-size:.92rem; max-width:32ch; margin-top:.3rem; }
.footer-col h4{ color:#fff; font-family:var(--font-mono); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; font-weight:500; margin-bottom:1.1rem; }
.footer-col a{ display:block; color: rgba(255,255,255,.65); font-size:.9rem; padding:.32rem 0; transition:color .2s; }
.footer-col a:hover{ color: var(--sunrise-gold); }
.footer-social{ display:flex; gap:.8rem; margin-top:1.2rem; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center;
}
.footer-social a:hover{ border-color: var(--sunrise-gold); color: var(--sunrise-gold); }
.footer-bottom{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem;
  padding: 1.6rem 0; font-size:.82rem; color: rgba(255,255,255,.5);
}
.footer-bottom a{ color: rgba(255,255,255,.5); }
.footer-bottom a:hover{ color:#fff; }
.footer-legal{ display:flex; gap:1.4rem; flex-wrap:wrap; }

/* ============================================================
   INNER-PAGE TEMPLATE PIECES
   ============================================================ */
.page-hero{
  position:relative; margin-top:0; padding-top: calc(var(--header-h) + 4.5rem); padding-bottom:4rem;
  background: var(--indigo-dusk); color:#fff; overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0; background: var(--gradient-overlay); mix-blend-mode:multiply; opacity:.6;
}
.page-hero img.bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position: center 15%; opacity:.35; }
.page-hero .container{ position:relative; z-index:2; }
.breadcrumb{ font-family:var(--font-mono); font-size:.75rem; letter-spacing:.06em; color: rgba(255,255,255,.6); margin-bottom:1rem; }
.breadcrumb a{ color: rgba(255,255,255,.6); }
.breadcrumb a:hover{ color: var(--sunrise-gold); }
.page-hero h1{ color:#fff; max-width:18ch; }

.page-body{ display:grid; grid-template-columns: 220px 1fr; gap: 3rem; padding-block: 4rem; }
.page-body main section{ padding: 0; }
.subnav{ position:sticky; top: calc(var(--header-h) + 24px); align-self:start; }
.subnav h4{ font-family:var(--font-mono); font-size:.7rem; letter-spacing:.12em; text-transform:uppercase; color: var(--mist-teal); margin-bottom:1rem; }
.subnav a{ display:block; padding:.5rem 0; font-weight:600; font-size:.92rem; border-left:2px solid transparent; padding-left:.9rem; color:#3f3f49; }
.subnav a.is-active, .subnav a:hover{ border-color: var(--coral-ember); color: var(--coral-ember); }
.content-placeholder{
  border: 1.5px dashed rgba(28,33,65,.25); border-radius: var(--radius-md);
  padding: 2.5rem; color:#6b6b76; background: rgba(28,33,65,.02);
}
.content-placeholder h3{ color: var(--indigo-dusk); font-size:1.1rem; }

/* ============================================================
   UTILITIES / RESPONSIVE
   ============================================================ */
.hidden-mobile{ display:initial; }

@media (max-width: 1080px){
  .card-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1.2fr repeat(2,1fr); }
}

@media (max-width: 860px){
  .nav-primary{
    position:fixed; inset: var(--header-h) 0 0 0; background: var(--indigo-dusk);
    flex-direction:column; align-items:stretch; padding: 2rem var(--gutter);
    transform: translateX(100%); transition: transform .4s var(--ease);
    overflow-y:auto;
  }
  body.nav-open .nav-primary{ transform: translateX(0); }
  .nav-primary > ul{ flex-direction:column; align-items:flex-start; gap:0; width:100%; }
  .nav-primary > ul > li{ width:100%; border-bottom:1px solid rgba(255,255,255,.08); }
  .nav-primary a{ display:block; padding:1rem 0; }
  .dropdown{
    position:static; transform:none; opacity:1; visibility:visible; box-shadow:none;
    background:transparent; display:none; padding-left:1rem; translate:0;
  }
  .has-dropdown.open .dropdown{ display:block; }
  .dropdown a{ color: var(--white); padding:.7rem .75rem; }
  .dropdown a:hover{ background: rgba(255,255,255,.08); color: var(--sunrise-gold); }
  .nav-toggle{ display:block; }
  .nav-actions .btn{ display:none; }
  body.nav-open .nav-actions .btn.show-mobile{ display:inline-flex; margin-top:1.5rem; }

  .intro-grid{ grid-template-columns:1fr; }
  .card-grid{ grid-template-columns: 1fr; }
  .give-band{ grid-template-columns:1fr; }
  .page-body{ grid-template-columns:1fr; }
  .subnav{ position:relative; top:0; display:flex; flex-wrap:wrap; gap:.5rem 1.2rem; }
  .members-inner{ flex-direction:column; align-items:flex-start; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px){
  .footer-grid{ grid-template-columns: 1fr; }
  .hero-controls{ right: var(--gutter); bottom: 1.6rem; }
  .hero-copy h1, .hero-copy h2{ font-size: clamp(1.9rem, 8vw, 2.75rem); }
  .hero-content{ padding-bottom: clamp(4.5rem, 15vh, 6rem); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* Visible keyboard focus */
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--sunrise-gold); outline-offset:3px; border-radius:4px;
}
