:root {
  --at-primary: #f5b754;
  --at-primary-dark: #d99a35;
  --at-dark: #1b1b1b;
  --at-text: #555;
  --at-muted: #8b8b8b;
  --at-surface: #fbfbfb;
  --at-white: #fff;
  --at-border: #e7e7e7;
  --at-container: 1140px;
  --at-radius: 20px;
  --at-radius-pill: 999px;
  --at-shadow: 0 18px 50px rgb(27 27 27 / 10%);
  --at-ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--at-white); color: var(--at-text); font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 14px; font-weight: 300; line-height: 27.3px; }
body.menu-is-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 { margin-block: 0 .6em; color: var(--at-dark); font-weight: 700; line-height: 1.12; }
h1 { font-size: clamp(2.75rem, 7vw, 5.625rem); }
h2 { font-size: 35px; line-height: 43.75px; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
p { margin-block: 0 1.25rem; color: #7a7a7a; }
.hero p, .inner-hero p, .entry-hero p, .site-footer p, .about-vision p, .contact-cta p { color: inherit; }

.container { width: min(calc(100% - 40px), var(--at-container)); margin-inline: auto; }
.section { padding-block: clamp(72px, 9vw, 128px); }
.section--surface { background: var(--at-surface); }
.site-main { min-height: 60vh; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 10000; top: 12px; left: 12px; padding: 10px 16px; background: var(--at-white); color: var(--at-dark); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--at-primary); outline-offset: 3px; }

.site-header { position: absolute; z-index: 1000; inset: 0 0 auto; color: var(--at-white); transition: background-color .3s var(--at-ease), box-shadow .3s var(--at-ease), transform .3s var(--at-ease); }
.site-header.is-scrolled { position: fixed; background: rgb(27 27 27 / 96%); box-shadow: 0 10px 30px rgb(0 0 0 / 16%); }
body:not(.home) .site-header { position: relative; background: var(--at-dark); }
.site-header__inner { min-height: 100px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 36px; }
.site-branding__name { color: var(--at-white); font-size: 1.35rem; font-weight: 700; text-decoration: none; }
.custom-logo { width: auto; max-height: 58px; }
.primary-navigation__list, .primary-navigation__list ul { list-style: none; margin: 0; padding: 0; }
.primary-navigation__list { display: flex; justify-content: center; gap: 30px; }
.primary-navigation a { color: var(--at-white); font-weight: 500; text-decoration: none; transition: color .2s ease; }
.primary-navigation a:hover, .primary-navigation .current-menu-item > a { color: var(--at-primary); }
.header-contact { display: grid; color: var(--at-white); line-height: 1.25; text-decoration: none; }
.header-contact span { color: rgb(255 255 255 / 70%); font-size: .75rem; }
.header-contact strong { font-size: 1rem; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 12px; border: 0; background: transparent; }
.menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--at-white); }

.hero { min-height: min(900px, 100svh); position: relative; display: grid; align-items: center; overflow: hidden; background: var(--at-dark); color: var(--at-white); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgb(0 0 0 / 72%), rgb(0 0 0 / 18%)); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__content { position: relative; z-index: 1; padding-block: 160px 100px; }
.hero h1 { max-width: 900px; color: var(--at-white); }
.hero__lead { max-width: 680px; font-size: clamp(1rem, 1.8vw, 1.25rem); }
.eyebrow { margin-bottom: 15px; color: var(--at-primary); font-size: 10px; font-weight: 300; letter-spacing: 6px; line-height: 10px; text-transform: uppercase; }
.button-group { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 30px; }
.button { min-height: 57px; display: inline-flex; align-items: center; justify-content: center; padding: 14px 42px; border: 1px solid transparent; border-radius: 30px; cursor: pointer; font-size: 14px; font-weight: 300; line-height: 27.3px; text-decoration: none; transition: transform .25s var(--at-ease), background-color .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-6px); }
.button--primary, .button--compact { border-color: var(--at-primary); background: var(--at-primary); color: var(--at-dark); }
.button--primary:hover, .button--compact:hover { border-color: var(--at-dark); background: var(--at-dark); color: var(--at-white); }
.button--secondary { border-color: var(--at-white); color: var(--at-white); }
.button--secondary:hover { border-color: var(--at-white); background: var(--at-white); color: var(--at-dark); }
.button--compact { min-height: 46px; padding: 10px 24px; }
.text-link { color: var(--at-dark); font-weight: 600; }

.section-heading { max-width: 760px; margin-bottom: 44px; }
.booking-bar { background: var(--at-white); }
.booking-form { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)) auto; gap: 12px; padding: 22px; border-radius: var(--at-radius); box-shadow: var(--at-shadow); }
.field { display: grid; gap: 4px; padding: 8px 14px; border-radius: 12px; background: var(--at-surface); }
.field label { color: var(--at-muted); font-size: .75rem; font-weight: 500; }
.field input { min-width: 0; border: 0; outline: 0; background: transparent; color: var(--at-dark); font-weight: 500; }
.field:focus-within { box-shadow: inset 0 0 0 2px var(--at-primary); }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.content-card { overflow: hidden; border-radius: var(--at-radius); background: var(--at-white); box-shadow: 0 8px 30px rgb(27 27 27 / 8%); transition: transform .3s var(--at-ease), box-shadow .3s var(--at-ease); }
.content-card:hover { transform: translateY(-8px); box-shadow: var(--at-shadow); }
.content-card__media { display: block; aspect-ratio: 3/2; overflow: hidden; border-radius: 20px; }
.content-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--at-ease); }
.content-card:hover .content-card__media img { transform: scale(1.05); }
.content-card__body { padding: 28px; }
.content-card__title { font-size: 1.45rem; }
.content-card__title a { text-decoration: none; }
.vehicle-card__facts { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 0 0 22px; padding: 14px 0; border-block: 1px solid var(--at-border); list-style: none; font-size: .85rem; }
.vehicle-card__facts strong { color: var(--at-dark); }
.vehicle-specs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 0 0 34px; }
.vehicle-specs > div { padding: 18px; border-radius: 12px; background: var(--at-surface); }
.vehicle-specs dt { color: var(--at-muted); font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.vehicle-specs dd { margin: 4px 0 0; color: var(--at-dark); font-size: 1.2rem; font-weight: 700; }
.section-action { margin: 40px 0 0; }

.entry__header, .archive-header { max-width: 900px; margin-bottom: 50px; }
.entry__featured { margin: 0 0 42px; overflow: hidden; border-radius: 20px; }
.entry__featured img { width: 100%; transition: transform .7s var(--at-ease); }
.entry__featured:hover img { transform: scale(1.05); }
.entry__featured figcaption { margin-top: 10px; color: var(--at-muted); font-size: .85rem; text-align: center; }
.entry-content, .prose { max-width: 820px; }
.entry-content > * + *, .prose > * + * { margin-top: 1.25em; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: 12px 16px; border: 1px solid var(--at-border); text-align: left; }
.entry-content th { background: var(--at-dark); color: var(--at-white); }
.table-scroll { max-width: 100%; overflow-x: auto; }
.table-scroll table { width: 100%; border-collapse: collapse; }
.table-scroll th, .table-scroll td { padding: 12px 16px; border: 1px solid var(--at-border); text-align: left; }
.table-scroll thead th { background: var(--at-dark); color: var(--at-white); }
.service-detail .prose > section, .vehicle-detail .prose > section { margin-top: 56px; }
.service-detail .prose h2, .vehicle-detail .prose h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.service-price-table { margin-top: 22px; border: 1px solid var(--at-border); border-radius: 14px; }
.service-price-table table { min-width: 850px; border-style: hidden; }
.service-price-table caption { padding: 16px 20px; background: var(--at-surface); color: var(--at-dark); font-size: 1rem; font-weight: 700; text-align: left; }
.service-price-table th, .service-price-table td { min-width: 112px; padding: 15px 18px; text-align: center; white-space: nowrap; }
.service-price-table th:first-child { min-width: 235px; text-align: left; white-space: normal; }
.service-price-table tbody td { color: var(--at-primary-dark); font-weight: 700; }
.service-price-note { margin-top: 18px; padding: 18px 20px; border-left: 4px solid var(--at-primary); background: var(--at-surface); color: var(--at-dark); }
.inclusion-grid, .service-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.inclusion-grid > div { padding: 24px; border-radius: var(--at-radius); background: var(--at-surface); }
.service-gallery figure { margin: 0; overflow: hidden; border-radius: 20px; }
.service-gallery img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .7s var(--at-ease); }
.service-gallery figure:hover img { transform: scale(1.05); }
.service-gallery figcaption { padding: 10px 14px; background: var(--at-surface); color: var(--at-muted); font-size: .85rem; }
.faq-list { border-top: 1px solid var(--at-border); }
.faq-list details { border-bottom: 1px solid var(--at-border); }
.faq-list summary { padding: 18px 42px 18px 0; color: var(--at-dark); cursor: pointer; font-weight: 600; }
.faq-list details p { padding-bottom: 18px; }
.entry__meta { color: var(--at-muted); }
.breadcrumbs { margin-bottom: 20px; }
.breadcrumbs__list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; font-size: .85rem; }
.breadcrumbs__list li + li::before { content: "/"; margin-right: 8px; color: var(--at-muted); }
.entry-hero { padding-top: 180px; background: var(--at-dark); color: var(--at-white); }
.entry-hero h1 { color: var(--at-white); }
.entry-hero__lead { max-width: 720px; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 48px; align-items: start; }
.content-layout > * { min-width: 0; }
.booking-card { position: sticky; top: 120px; padding: 30px; border-radius: var(--at-radius); background: var(--at-surface); }
.booking-card h2 { font-size: 1.6rem; }
.booking-card > .button { width: 100%; margin-top: 12px; }
.booking-card .button-group { display: grid; gap: 12px; margin-top: 24px; }
.booking-card .button-group .button { width: 100%; }
.vehicle-booking__price { margin-bottom: 22px; color: var(--at-primary-dark); font-size: 2rem; line-height: 1; }
.vehicle-booking__specs { display: grid; gap: 0; margin: 28px 0 0; }
.vehicle-booking__specs > div { display: flex; justify-content: space-between; gap: 20px; padding-block: 11px; border-bottom: 1px solid var(--at-border); }
.vehicle-booking__specs dt { color: var(--at-muted); }
.vehicle-booking__specs dd { margin: 0; color: var(--at-dark); font-weight: 700; text-align: right; }
.check-list { padding-left: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--at-primary-dark); font-weight: 800; }

.site-footer { padding-top: 80px; background: var(--at-dark); color: rgb(255 255 255 / 72%); }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; }
.site-footer__title { color: var(--at-white); font-size: 1.35rem; }
.site-footer__address { display: grid; gap: 8px; max-width: 560px; font-style: normal; }
.site-footer a { color: inherit; }
.footer-navigation__list { margin: 0; padding: 0; list-style: none; }
.site-footer__legal { margin-top: 60px; padding-block: 22px; border-top: 1px solid rgb(255 255 255 / 12%); font-size: .85rem; }
.site-footer__legal p { margin: 0; }
.empty-state { text-align: center; }

/* Shared Renax media corner used by About and Overview sections. */
.renax-media-corner { position: absolute; z-index: 2; left: 0; bottom: 0; width: 85px; height: 85px; border-radius: 0 40px 0 0; background: var(--at-white); }
.renax-media-corner__curve { position: absolute; width: 24px; height: 24px; display: block; color: var(--at-white); transform: rotate(-90deg); pointer-events: none; }
.renax-media-corner__curve svg { display: block; width: 100%; height: 100%; overflow: visible; }
.renax-media-corner__curve--top { top: -24px; left: -1px; }
.renax-media-corner__curve--side { right: -24px; bottom: -1px; }
.renax-media-corner__button { position: absolute; z-index: 2; top: 15px; left: 12px; width: 60px; height: 60px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--at-primary); box-shadow: none; color: var(--at-dark); font-size: 1.05rem; line-height: 1; text-decoration: none; transition: transform .25s var(--at-ease), background-color .25s ease, color .25s ease; }
.renax-media-corner__button span { display: block; transform: translateX(2px); }
a.renax-media-corner__button { cursor: pointer; }
a.renax-media-corner__button:hover, a.renax-media-corner__button:focus-visible { transform: translateY(-4px); background: var(--at-dark); color: var(--at-white); }

/* Shared Renax-style inner page hero. */
.page-id-1081 .site-header, .page-id-400 .site-header, .blog .site-header, body.single-service:not(.home) .site-header, body.single-vehicle:not(.home) .site-header { position: absolute; background: transparent; }
.inner-hero { min-height: 504px; position: relative; display: grid; align-items: center; overflow: hidden; background: var(--at-dark); color: var(--at-white); }
.inner-hero__media, .inner-hero__overlay { position: absolute; inset: 0; }
.inner-hero__image { width: 100%; height: 100%; object-fit: cover; }
.inner-hero__overlay { background: linear-gradient(90deg, rgb(0 0 0 / 76%), rgb(0 0 0 / 30%)); }
.inner-hero__content { position: relative; z-index: 1; padding-top: 100px; }
.inner-hero--center .inner-hero__content { text-align: center; }
.inner-hero h1 { max-width: 850px; margin-bottom: 0; color: var(--at-white); font-size: 42px; line-height: 1.25; }
.inner-hero--center h1, .inner-hero--center .inner-hero__description { margin-inline: auto; }
.inner-hero__description { max-width: 680px; margin-top: 16px; color: rgb(255 255 255 / 78%); font-size: 1.05rem; }
.inner-hero .breadcrumbs { color: rgb(255 255 255 / 72%); }
.inner-hero .breadcrumbs a { color: var(--at-white); }

/* About page. */
.about-intro__grid, .about-commitment__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); gap: 80px; align-items: center; }
.about-intro__figure { position: relative; margin: 0; aspect-ratio: 1; }
.about-intro__image { width: 100%; height: 100%; overflow: hidden; border-radius: 20px 20px 20px 0; background: var(--at-surface); }
.about-intro__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--at-ease), filter .7s ease; }
.about-intro__figure:hover .about-intro__image img { transform: scale(1.05); filter: saturate(1.04); }
.about-values__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.about-value-card { padding: 34px; border-radius: var(--at-radius); background: var(--at-white); box-shadow: 0 8px 30px rgb(27 27 27 / 7%); transition: transform .3s var(--at-ease), box-shadow .3s var(--at-ease); }
.about-value-card:hover { transform: translateY(-8px); box-shadow: var(--at-shadow); }
.about-value-card h3 { font-size: 1.35rem; }
.about-value-card p { margin-bottom: 0; }
.about-checklist { display: grid; gap: 14px; margin: 0; padding: 34px; border-radius: var(--at-radius); background: var(--at-surface); list-style: none; }
.about-checklist li { position: relative; padding-left: 32px; color: var(--at-dark); }
.about-checklist li::before { content: "\2713"; position: absolute; left: 0; color: var(--at-primary-dark); font-weight: 800; }
.about-vision { background: var(--at-dark); color: rgb(255 255 255 / 76%); }
.about-vision__inner { display: flex; justify-content: space-between; gap: 60px; align-items: center; }
.about-vision__content { max-width: 680px; }
.about-vision h2 { color: var(--at-white); }

/* Contact page. */
.contact-info { z-index: 2; position: relative; margin-top: -80px; padding-block: 0 96px; }
.contact-info-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }
.contact-info-card { min-height: 229px; display: flex; flex-direction: column; justify-content: center; padding: 44px 30px; border-radius: var(--at-radius); background: var(--at-white); box-shadow: var(--at-shadow); transition: transform .3s var(--at-ease), background-color .3s ease; }
.contact-info-card--accent { background: var(--at-primary); }
.contact-info-card:hover { transform: translateY(-8px); }
.contact-info-card h3 { font-size: 21px; line-height: 1.5; }
.contact-info-card p, .contact-info-card address { margin: 0; font-style: normal; line-height: 1.5; overflow-wrap: anywhere; }
.contact-info-card a { text-decoration: none; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 60px; align-items: stretch; }
.contact-form, .contact-location { padding: 42px; border-radius: var(--at-radius); background: var(--at-white); box-shadow: 0 8px 30px rgb(27 27 27 / 6%); }
.contact-form form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-form form .contact-form__subject, .contact-form form .contact-form__message, .contact-form form .button { grid-column: 1 / -1; }
.contact-form .field { background: var(--at-surface); }
.contact-form textarea { width: 100%; resize: vertical; border: 0; outline: 0; background: transparent; color: var(--at-dark); }
.contact-form .button { justify-self: start; }
.contact-status { margin-bottom: 20px; padding: 14px 18px; border-radius: 12px; background: #edf8ef; color: #255f32; }
.contact-status--invalid, .contact-status--failed { background: #fff0ee; color: #8c3026; }
.contact-status p { margin: 0; color: inherit; }
.contact-location { display: flex; flex-direction: column; }
.contact-location iframe { width: 100%; min-height: 300px; border: 0; border-radius: 14px; }
.contact-location address { margin: auto 0 24px; padding: 24px; border-radius: 14px; background: var(--at-surface); font-style: normal; }
.contact-cta { background: var(--at-dark); color: rgb(255 255 255 / 75%); text-align: center; }
.contact-cta h2 { color: var(--at-white); }
.contact-cta .button-group { justify-content: center; }

/* News archive. */
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.news-card { transition: transform .3s var(--at-ease); }
.news-card:hover { transform: translateY(-8px); }
.news-card__media { margin: 0; overflow: hidden; aspect-ratio: 3 / 2; border-radius: 20px; }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--at-ease); }
.news-card:hover .news-card__media img { transform: scale(1.05); }
.news-card__content { position: relative; z-index: 1; margin: -45px 20px 0; padding: 28px 30px 36px; border-radius: var(--at-radius); background: var(--at-surface); }
.news-card:not(:has(.news-card__media)) .news-card__content { margin-top: 0; }
.news-card__meta { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-bottom: 12px; color: var(--at-muted); font-size: .8rem; }
.news-card__categories a { color: var(--at-primary-dark); text-decoration: none; }
.news-card__title { font-size: 21px; line-height: 1.5; }
.news-card__title a { text-decoration: none; }
.nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.page-numbers { min-width: 42px; min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 8px 12px; border-radius: 999px; background: var(--at-surface); text-decoration: none; }
.page-numbers.current, .page-numbers:hover { background: var(--at-primary); color: var(--at-dark); }

.has-js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--at-ease), transform .7s var(--at-ease); }
.has-js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .site-header__inner { grid-template-columns: 1fr auto; }
  .header-contact { display: none; }
  .menu-toggle { display: block; }
  .primary-navigation { position: fixed; inset: 100px 0 0; padding: 30px 20px; background: var(--at-dark); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease; }
  .primary-navigation.is-open { opacity: 1; visibility: visible; transform: none; }
  .primary-navigation__list { align-items: flex-start; flex-direction: column; }
  .booking-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-form .button { grid-column: 1 / -1; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-layout { grid-template-columns: 1fr; }
  .booking-card { position: static; }
	.about-intro__grid, .about-commitment__grid, .contact-layout { gap: 44px; }
	.about-values__grid, .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.contact-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--at-container)); }
  .section { padding-block: 72px; }
  .site-header__inner { min-height: 90px; }
  .primary-navigation { inset-block-start: 90px; }
  .hero { min-height: 780px; }
  .hero__content { padding-top: 130px; }
  .button-group, .button-group .button { width: 100%; }
  .booking-form, .card-grid, .site-footer__grid { grid-template-columns: 1fr; }
	.vehicle-specs { grid-template-columns: 1fr; }
	.inclusion-grid, .service-gallery { grid-template-columns: 1fr; }
  .booking-form { padding: 14px; }
  .site-footer__grid { gap: 44px; }
	.inner-hero { min-height: 420px; }
	.inner-hero__content { padding-top: 90px; }
	.inner-hero h1 { font-size: 36px; }
	.about-intro__grid, .about-commitment__grid, .about-values__grid, .contact-info-grid, .contact-layout, .news-grid { grid-template-columns: 1fr; }
	.about-intro__grid, .about-commitment__grid, .contact-layout { gap: 34px; }
	.about-vision__inner { align-items: flex-start; flex-direction: column; gap: 24px; }
	.contact-info { margin-top: -40px; }
	.contact-form, .contact-location { padding: 26px 20px; }
	.contact-form form { grid-template-columns: 1fr; }
	.contact-form form .field, .contact-form form .button { grid-column: 1; }
	.news-card__content { margin-inline: 14px; padding-inline: 22px; }
	h2 { font-size: clamp(30px, 9vw, 35px); line-height: 1.25; overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .has-js [data-reveal] { opacity: 1; transform: none; }
}
