:root{
  --font-heading:'Montserrat', sans-serif;
  --font-body:'Source Sans 3', sans-serif;

  --color-terracotta:#C1592E;
  --color-terracotta-dark:#96431F;
  --color-plum:#5B2A5C;
  --color-plum-dark:#3C1B3E;
  --color-amber:#E8A33D;
  --color-amber-light:#F5C877;

  --bg-base:#FBF7F1;
  --bg-alt:#F2E8DA;
  --bg-card:#FFFFFF;

  --text-dark:#2B2420;
  --text-muted:#6B5F54;
  --text-on-dark:#FBF7F1;

  --gradient-primary: linear-gradient(135deg, var(--color-plum) 0%, var(--color-terracotta) 55%, var(--color-amber) 100%);
  --gradient-soft: linear-gradient(160deg, #FBF0DD 0%, #F5DCC4 45%, #ECD3E0 100%);
  --gradient-cta: linear-gradient(120deg, var(--color-plum-dark), var(--color-terracotta-dark));

  --radius-sm:8px;
  --radius-md:16px;
  --radius-lg:24px;
  --radius-xl:32px;
  --radius-pill:999px;

  --shadow-sm:0 2px 8px rgba(43,36,32,.08);
  --shadow-md:0 8px 24px rgba(43,36,32,.12), 0 2px 6px rgba(43,36,32,.08);
  --shadow-lg:0 20px 48px rgba(91,42,92,.16), 0 8px 16px rgba(43,36,32,.1);
  --shadow-glow:0 0 0 1px rgba(232,163,61,.2), 0 12px 32px rgba(193,89,46,.25);

  --space-xs:.5rem;
  --space-sm:1rem;
  --space-md:2rem;
  --space-lg:4rem;
  --space-xl:6rem;
  --space-2xl:9rem;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ margin:0; font-family:var(--font-body); background:var(--bg-base); color:var(--text-dark); line-height:1.65; -webkit-font-smoothing:antialiased; overflow-x:hidden; font-size:clamp(1rem,.3vw + .95rem,1.0625rem);}
img{ max-width:100%; display:block; height:auto; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; background:none; border:none; }
h1,h2,h3,h4{ font-family:var(--font-heading); margin:0 0 .6em; line-height:1.15; color:var(--text-dark); font-weight:700; }
h1{ font-size:clamp(2.4rem,3vw + 1.6rem,4.4rem); }
h2{ font-size:clamp(1.9rem,1.6vw + 1.4rem,2.75rem); }
h3{ font-size:clamp(1.3rem,1vw + 1rem,1.75rem); }
p{ margin:0 0 1em; color:inherit; }
body.scroll-locked{ overflow:hidden; }

.layout-container{ width:100%; max-width:1220px; margin-inline:auto; padding-inline:clamp(1.25rem,4vw,2.5rem); }

.gradient-text{ background:var(--gradient-primary); -webkit-background-clip:text; background-clip:text; color:transparent; }
.highlight-text{ color:var(--color-terracotta-dark); font-weight:700; }


.header-flip-wrap{ position:relative; perspective:1800px; background:var(--bg-base); z-index:500; }
.header-flip-wrap.menu-open{ position:fixed; inset:0; height:100vh; z-index:1000; }
.site-header{ position:relative; width:100%; transform-style:preserve-3d; transition:transform .7s cubic-bezier(.4,0,.2,1); }
.header-flip-wrap.menu-open .site-header{ transform:rotateX(180deg); height:100vh; }
.header-face{ width:100%; backface-visibility:hidden; }
.header-front{ position:relative; background:var(--bg-base); border-bottom:1px solid rgba(43,36,32,.06); }
.header-flip-wrap.menu-open .header-front{ height:100vh; }
.header-back{ position:absolute; inset:0; background:var(--gradient-primary); transform:rotateX(180deg); display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity .3s; }
.header-flip-wrap.menu-open .header-back{ opacity:1; pointer-events:auto; }

.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1rem clamp(1.25rem,4vw,2.5rem); max-width:1220px; margin-inline:auto; }
.brand-mark{ display:flex; align-items:center; gap:.6rem; }
.brand-logo{ width:38px; height:38px; }
.brand-name{ font-family:var(--font-heading); font-weight:800; font-size:1.15rem; color:var(--color-plum-dark); letter-spacing:-.01em; }

.primary-nav ul{ display:flex; gap:1.8rem; }
.primary-nav a{ font-weight:600; font-size:.95rem; color:var(--text-dark); position:relative; padding:.3rem 0; transition:color .3s; }
.primary-nav a::after{ content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--gradient-primary); transition:width .3s; }
.primary-nav a:hover{ color:var(--color-terracotta-dark); }
.primary-nav a:hover::after{ width:100%; }
.primary-nav a.is-active{ color:var(--color-plum-dark); }
.primary-nav a.is-active::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:1rem; }
.menu-toggle{ display:none; width:44px; height:44px; border-radius:var(--radius-sm); flex-direction:column; align-items:center; justify-content:center; gap:5px; }
.menu-toggle span{ width:24px; height:2px; background:var(--color-plum-dark); border-radius:2px; transition:all .3s; }

@media(max-width:999px){
  .primary-nav, .nav-cta{ display:none; }
  .menu-toggle{ display:flex; }
}
@media(min-width:1000px){
  .header-back, .close-menu{ display:none !important; }
}

.mobile-nav{ display:flex; flex-direction:column; align-items:center; gap:1.6rem; color:var(--text-on-dark); padding:2rem; }
.mobile-nav ul{ display:flex; flex-direction:column; align-items:center; gap:1.4rem; }
.mobile-nav a{ font-family:var(--font-heading); font-size:1.5rem; font-weight:700; color:var(--text-on-dark); transition:opacity .25s; }
.mobile-nav a:hover{ opacity:.75; }
.close-menu{ margin-top:1rem; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.4); color:var(--text-on-dark); padding:.7rem 1.4rem; border-radius:var(--radius-pill); font-weight:600; display:inline-flex; gap:.5rem; align-items:center; min-height:44px; transition:background .25s; }
.close-menu:hover{ background:rgba(255,255,255,.28); }


.primary-action{ display:inline-flex; align-items:center; justify-content:center; gap:.5rem; padding:.9rem 1.8rem; border-radius:var(--radius-pill); background:var(--gradient-primary); color:#fff; font-weight:600; font-size:.98rem; box-shadow:var(--shadow-glow); transition:transform .25s ease, box-shadow .25s ease, filter .25s ease; min-height:48px; }
.primary-action:hover{ transform:translateY(-2px) scale(1.015); filter:brightness(1.06); box-shadow:0 16px 36px rgba(91,42,92,.35); }
.primary-action:active{ transform:translateY(0) scale(.97); }

.secondary-action{ display:inline-flex; align-items:center; justify-content:center; gap:.5rem; padding:.85rem 1.7rem; border-radius:var(--radius-pill); background:#fff; color:var(--color-plum-dark); font-weight:600; border:1.5px solid rgba(91,42,92,.25); transition:all .25s ease; min-height:48px; }
.secondary-action:hover{ border-color:var(--color-plum-dark); background:var(--bg-alt); transform:translateY(-2px); }


.hero-section{ position:relative; padding:clamp(3rem,6vw,6rem) 0 clamp(4rem,8vw,7rem); background:var(--gradient-soft); overflow:hidden; }
.hero-section::before{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 15% 20%, rgba(232,163,61,.28), transparent 45%), radial-gradient(circle at 85% 15%, rgba(91,42,92,.2), transparent 40%); pointer-events:none; }
.hero-grid{ position:relative; display:grid; gap:3rem; align-items:center; }
@media(min-width:960px){ .hero-grid{ grid-template-columns:1.1fr .9fr; } }
.hero-eyebrow{ display:inline-flex; align-items:center; gap:.5rem; padding:.45rem 1rem; border-radius:var(--radius-pill); background:rgba(255,255,255,.65); border:1px solid rgba(91,42,92,.15); font-weight:600; font-size:.85rem; color:var(--color-plum-dark); margin-bottom:1.4rem; }
.hero-title{ margin-bottom:1.2rem; }
.hero-lead{ font-size:clamp(1.05rem,.4vw + 1rem,1.2rem); color:var(--text-muted); max-width:46ch; margin-bottom:2rem; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:1rem; }

.hero-visual{ position:relative; min-height:280px; }
.hero-photo{ border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:4/5; }
.hero-photo img{ width:100%; height:100%; object-fit:cover; }
.badge-float{ position:absolute; display:flex; align-items:center; gap:.6rem; background:#fff; padding:.8rem 1.1rem; border-radius:var(--radius-md); box-shadow:var(--shadow-md); font-weight:600; font-size:.85rem; color:var(--text-dark); animation:floatY 5s ease-in-out infinite; max-width:230px; }
.badge-float i{ color:var(--color-terracotta); flex-shrink:0; }
.badge-float--a{ top:6%; left:-6%; animation-delay:0s; }
.badge-float--b{ top:42%; right:-8%; animation-delay:1.2s; }
.badge-float--c{ bottom:4%; left:2%; animation-delay:2.1s; }
@keyframes floatY{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }

@media(max-width:640px){
  .badge-float{ font-size:.72rem; padding:.6rem .8rem; max-width:150px; }
  .badge-float--a{ left:0; top:-4%; }
  .badge-float--b{ right:0; top:auto; bottom:38%; }
  .badge-float--c{ left:0; bottom:-4%; }
}


.content-block{ padding:var(--space-xl) 0; }
.content-block--tight{ padding:var(--space-lg) 0; }
.content-block--deep{ padding:var(--space-2xl) 0; }
.content-block--soft{ background:var(--bg-alt); }
.content-block--dark{ background:var(--gradient-cta); color:var(--text-on-dark); }
.content-block--dark h2, .content-block--dark h3{ color:#fff; }

.section-heading{ text-align:center; max-width:720px; margin-inline:auto; margin-bottom:3rem; }
.section-tag{ display:inline-block; font-weight:700; letter-spacing:.06em; text-transform:uppercase; font-size:.78rem; color:var(--color-terracotta-dark); margin-bottom:.8rem; }

.intro-block{ display:grid; gap:2.5rem; align-items:center; }
@media(min-width:900px){ .intro-block{ grid-template-columns:.95fr 1.05fr; gap:4rem; } }
.intro-media{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); }
.intro-media img{ aspect-ratio:4/3; object-fit:cover; }


.feature-row{ display:grid; gap:2.5rem; align-items:center; padding:2.5rem 0; border-bottom:1px solid rgba(43,36,32,.07); }
.feature-row:last-child{ border-bottom:none; }
@media(min-width:860px){
  .feature-row{ grid-template-columns:1fr 1fr; gap:4rem; }
  .feature-row--reverse .feature-visual{ order:2; }
  .feature-row--reverse .feature-copy{ order:1; }
}
.feature-visual{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); position:relative; }
.feature-visual img{ width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform .5s ease; }
.feature-row:hover .feature-visual img{ transform:scale(1.045); }
.feature-number{ position:absolute; top:1rem; left:1rem; width:42px; height:42px; border-radius:50%; background:var(--gradient-primary); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-heading); font-weight:700; box-shadow:var(--shadow-sm); z-index:2; }
.feature-copy p{ color:var(--text-muted); }


.info-grid{ display:grid; gap:1.6rem; grid-template-columns:1fr; }
@media(min-width:640px){ .info-grid{ grid-template-columns:repeat(2,1fr); } }
@media(min-width:1000px){ .info-grid{ grid-template-columns:repeat(4,1fr); } }
.info-card{ background:#fff; border-radius:var(--radius-lg); padding:2rem 1.6rem; box-shadow:var(--shadow-sm); border:1px solid rgba(43,36,32,.05); transition:transform .3s ease, box-shadow .3s ease; }
.info-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.info-icon{ width:52px; height:52px; border-radius:var(--radius-md); background:var(--gradient-primary); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin-bottom:1.2rem; box-shadow:var(--shadow-sm); }


.photo-grid{ display:grid; gap:1.2rem; grid-template-columns:repeat(4,1fr); grid-auto-rows:160px; }
.photo-item{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); }
.photo-item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.photo-item:hover img{ transform:scale(1.06); }
.photo-item--a{ grid-column:span 2; grid-row:span 2; }
.photo-item--b{ grid-column:span 2; grid-row:span 1; }
.photo-item--c{ grid-column:span 1; grid-row:span 1; }
.photo-item--d{ grid-column:span 1; grid-row:span 1; }
@media(max-width:720px){
  .photo-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:140px; }
  .photo-item--a{ grid-column:span 2; grid-row:span 2; }
  .photo-item--b{ grid-column:span 2; grid-row:span 1; }
}


.compare-columns{ display:grid; gap:2rem; }
@media(min-width:800px){ .compare-columns{ grid-template-columns:1fr 1fr; } }
.compare-col{ background:#fff; border-radius:var(--radius-lg); padding:2.4rem; box-shadow:var(--shadow-sm); border-top:4px solid var(--color-terracotta); }
.compare-col.is-negative{ border-top-color:var(--color-plum); }
.compare-col ul{ display:flex; flex-direction:column; gap:1rem; margin-top:1.2rem; }
.compare-col li{ display:flex; gap:.7rem; align-items:flex-start; color:var(--text-muted); }
.compare-col li i{ margin-top:.25rem; color:var(--color-terracotta); flex-shrink:0; }
.compare-col.is-negative li i{ color:var(--color-plum); }


.cta-band{ background:var(--gradient-cta); border-radius:var(--radius-xl); padding:clamp(2.5rem,5vw,4rem); text-align:center; color:#fff; box-shadow:var(--shadow-lg); position:relative; overflow:hidden; }
.cta-band::after{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 80% 0%, rgba(232,163,61,.35), transparent 50%); }
.cta-band h2{ color:#fff; position:relative; }
.cta-band p{ color:rgba(255,255,255,.88); max-width:55ch; margin-inline:auto; position:relative; }
.cta-band .primary-action{ position:relative; }


.site-footer{ background:var(--color-plum-dark); color:rgba(255,255,255,.85); padding:var(--space-xl) 0 var(--space-md); margin-top:auto; }
body{ display:flex; flex-direction:column; min-height:100vh; }
main{ flex:1; }
.footer-grid{ display:grid; gap:2.5rem; grid-template-columns:1fr; margin-bottom:2.5rem; }
@media(min-width:760px){ .footer-grid{ grid-template-columns:1.3fr 1fr 1fr 1fr; } }
.footer-col h4{ color:#fff; font-size:1.05rem; margin-bottom:1rem; }
.footer-col a{ color:rgba(255,255,255,.75); display:block; margin-bottom:.6rem; transition:color .25s; }
.footer-col a:hover{ color:var(--color-amber-light); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.15); padding-top:1.6rem; display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between; font-size:.85rem; color:rgba(255,255,255,.6); }
.footer-legal-links{ display:flex; gap:1.2rem; flex-wrap:wrap; }
.footer-legal-links a{ margin-bottom:0; color:rgba(255,255,255,.6); }
.footer-legal-links a:hover{ color:var(--color-amber-light); }


.back-to-top{ position:fixed; left:1.4rem; bottom:1.4rem; width:52px; height:52px; border-radius:50%; background:var(--gradient-primary); color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-glow); opacity:0; visibility:hidden; transform:translateY(12px); transition:all .35s ease; z-index:400; font-size:1.1rem; }
.back-to-top.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ transform:translateY(-4px) scale(1.05); }


.contact-form{ display:flex; flex-direction:column; gap:1.2rem; }
.form-row{ display:grid; grid-template-columns:1fr; gap:1rem; }
@media(min-width:860px){
  .form-row.form-row--fields{ grid-template-columns:1fr 1fr 1.3fr; }
  .form-row.form-row--actions{ grid-template-columns:1fr auto; align-items:center; }
}
.field-group{ display:flex; flex-direction:column; gap:.4rem; }
.field-group label{ font-size:.85rem; font-weight:600; color:var(--text-muted); }
.field-group input, .field-group textarea{ border:1.5px solid rgba(43,36,32,.15); border-radius:var(--radius-sm); padding:.8rem 1rem; font-family:inherit; font-size:.95rem; background:#fff; transition:border-color .25s, box-shadow .25s; min-height:48px; resize:none; }
.field-group textarea{ height:52px; }
.field-group input:focus, .field-group textarea:focus{ outline:none; border-color:var(--color-terracotta); box-shadow:0 0 0 4px rgba(193,89,46,.15); }
.privacy-check{ display:flex; align-items:flex-start; gap:.6rem; font-size:.85rem; color:var(--text-muted); }
.privacy-check input{ margin-top:.2rem; width:18px; height:18px; accent-color:var(--color-terracotta); flex-shrink:0; }
.form-row--actions{ align-items:center; }

.map-frame{ width:100%; border:0; border-radius:var(--radius-lg); min-height:320px; box-shadow:var(--shadow-md); }


.consent-widget{ position:fixed; right:1.4rem; bottom:1.4rem; z-index:900; }
.consent-bell{ width:54px; height:54px; border-radius:50%; background:#fff; box-shadow:var(--shadow-md); display:flex; align-items:center; justify-content:center; position:relative; font-size:1.2rem; color:var(--color-plum-dark); transition:transform .3s ease, box-shadow .3s ease; }
.consent-bell:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.consent-badge{ position:absolute; top:-4px; right:-4px; width:14px; height:14px; border-radius:50%; background:var(--color-terracotta); border:2px solid #fff; }
.consent-badge.is-hidden{ display:none; }
.consent-panel{ position:absolute; bottom:68px; right:0; width:min(360px,88vw); background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); padding:1.6rem; transform:translateY(16px) scale(.97); opacity:0; visibility:hidden; transition:all .3s ease; max-height:70vh; overflow-y:auto; }
.consent-panel.is-open{ transform:translateY(0) scale(1); opacity:1; visibility:visible; }
.consent-category{ display:flex; justify-content:space-between; align-items:center; gap:1rem; padding:.8rem 0; border-bottom:1px solid rgba(43,36,32,.08); }
.consent-toggle{ position:relative; width:42px; height:24px; border-radius:var(--radius-pill); background:rgba(43,36,32,.2); flex-shrink:0; transition:background .25s; cursor:pointer; }
.consent-toggle::after{ content:''; position:absolute; top:2px; left:2px; width:20px; height:20px; border-radius:50%; background:#fff; transition:transform .25s; box-shadow:var(--shadow-sm); }
.consent-toggle.is-on{ background:var(--color-terracotta); }
.consent-toggle.is-on::after{ transform:translateX(18px); }
.consent-toggle.is-disabled{ opacity:.5; pointer-events:none; }
.consent-actions{ display:flex; gap:.7rem; margin-top:1.2rem; flex-wrap:wrap; }
.consent-actions button{ flex:1; min-height:44px; border-radius:var(--radius-pill); font-weight:600; font-size:.85rem; transition:transform .2s ease, filter .2s ease; }
.consent-actions button:hover{ transform:translateY(-2px); }
.consent-save{ background:var(--gradient-primary); color:#fff; }
.consent-reject{ background:var(--bg-alt); color:var(--text-dark); }
.consent-accept{ background:var(--color-plum-dark); color:#fff; width:100%; margin-top:.8rem; min-height:44px; border-radius:var(--radius-pill); font-weight:600; transition:transform .2s ease; }
.consent-accept:hover{ transform:translateY(-2px); }


.checkmark-wrap{ width:120px; height:120px; margin:0 auto 2rem; }
.checkmark-circle{ stroke:var(--color-terracotta); stroke-width:3; fill:none; stroke-dasharray:302; stroke-dashoffset:302; animation:drawCircle .6s ease forwards; }
.checkmark-check{ stroke:var(--color-plum-dark); stroke-width:4; fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:48; stroke-dashoffset:48; animation:drawCheck .4s ease forwards .6s; }
@keyframes drawCircle{ to{ stroke-dashoffset:0; } }
@keyframes drawCheck{ to{ stroke-dashoffset:0; } }
.thanks-heading{ opacity:0; animation:fadeUp .6s ease forwards 1s; }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:translateY(0); } }


.legal-doc{ max-width:800px; margin-inline:auto; padding:var(--space-lg) 0; }
.legal-doc h2{ margin-top:2.2rem; }
.legal-doc p{ color:var(--text-muted); margin-bottom:1.2rem; }
.legal-updated{ display:inline-block; background:var(--bg-alt); padding:.5rem 1rem; border-radius:var(--radius-pill); font-size:.85rem; font-weight:600; color:var(--color-plum-dark); margin-bottom:2rem; }


.schedule-block{ display:flex; flex-direction:column; gap:2.5rem; }
.schedule-day{ background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-sm); padding:2rem; border-left:5px solid var(--color-terracotta); }
.schedule-day:nth-child(2){ border-left-color:var(--color-plum); }
.schedule-item{ display:grid; grid-template-columns:80px 1fr; gap:1.2rem; padding:1rem 0; border-bottom:1px dashed rgba(43,36,32,.12); }
.schedule-item:last-child{ border-bottom:none; }
.schedule-time{ font-family:var(--font-heading); font-weight:700; color:var(--color-plum-dark); }
.schedule-item p{ color:var(--text-muted); margin-bottom:0; }


.faq-item{ background:#fff; border-radius:var(--radius-md); box-shadow:var(--shadow-sm); margin-bottom:1rem; overflow:hidden; }
.faq-question{ width:100%; text-align:left; padding:1.2rem 1.5rem; display:flex; justify-content:space-between; align-items:center; font-weight:700; font-family:var(--font-heading); font-size:1rem; color:var(--text-dark); min-height:44px; }
.faq-question i{ transition:transform .3s; color:var(--color-terracotta); }
.faq-item.is-open .faq-question i{ transform:rotate(180deg); }
.faq-answer{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-answer p{ padding:0 1.5rem 1.4rem; color:var(--text-muted); margin-bottom:0; }
.faq-item.is-open .faq-answer{ max-height:400px; }


.news-grid{ display:grid; gap:1.8rem; grid-template-columns:1fr; }
@media(min-width:700px){ .news-grid{ grid-template-columns:repeat(2,1fr); } }
@media(min-width:1080px){ .news-grid{ grid-template-columns:repeat(3,1fr); } }
.news-card{ background:#fff; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .3s, box-shadow .3s; display:flex; flex-direction:column; }
.news-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.news-media{ aspect-ratio:16/10; overflow:hidden; }
.news-media img{ width:100%; height:100%; object-fit:cover; }
.news-body{ padding:1.5rem; }
.news-date{ font-size:.8rem; font-weight:700; color:var(--color-terracotta-dark); text-transform:uppercase; letter-spacing:.05em; }


.scroll-reveal{ opacity:0; }
.scroll-reveal.is-revealed{ opacity:1; }