:root {
  --ink: #181716;
  --soft-ink: #4f4b47;
  --mist: #f6f7f8;
  --white: #ffffff;
  --charcoal: #2d2b28;
  --mist-blue: #e8eef1;
  --rose: #c84861;
  --sky: #d7edf1;
  --gold: #d9a845;
  --line: #dadcdf;
  --shadow: 0 28px 90px rgb(24 23 22 / 18%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

p,
li {
  color: var(--soft-ink);
  line-height: 1.72;
}

h1,
h2,
h3,
p,
li,
a,
span {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: min(12ch, 100%);
  font-size: clamp(3.25rem, 9vw, 7.25rem);
  line-height: .88;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.55rem);
  line-height: .98;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: -44px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgb(246 247 248 / 86%);
  border-bottom: 1px solid rgb(24 23 22 / 10%);
  backdrop-filter: blur(22px);
  box-shadow: 0 10px 32px rgb(24 23 22 / 5%);
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 7px;
}

.nav-toggle {
  display: none;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: .95rem;
  font-weight: 720;
}

.nav-links a {
  position: relative;
  text-decoration: none;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #c84861, #9e3448);
  border-color: #c84861;
  box-shadow: 0 14px 34px rgb(200 72 97 / 28%);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button.light {
  color: var(--white);
  background: rgb(255 255 255 / 12%);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 122px clamp(18px, 6vw, 78px) clamp(30px, 5vw, 58px);
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/outdoor-arrival.jpg");
  background-size: cover;
  background-position: center 44%;
  transform: scale(1.02);
  animation: heroImageSettle 1100ms ease-out both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(16 15 14 / 88%) 0%, rgb(16 15 14 / 58%) 42%, rgb(16 15 14 / 10%) 74%),
    linear-gradient(0deg, rgb(16 15 14 / 72%) 0%, rgb(16 15 14 / 8%) 44%, rgb(255 255 255 / 8%) 100%);
}

.photo-hero {
  isolation: isolate;
}

.hero-art {
  position: absolute;
  z-index: 1;
  right: clamp(-110px, -5vw, -40px);
  top: clamp(92px, 15vh, 180px);
  width: min(58vw, 860px);
  opacity: .64;
  mix-blend-mode: screen;
  filter: saturate(.88) contrast(1.08) drop-shadow(0 28px 60px rgb(0 0 0 / 32%));
  transform: rotate(-2deg);
  animation: artDrift 9000ms ease-in-out infinite alternate;
}

.hero-art img {
  width: 100%;
  border-radius: 0;
  mask-image: radial-gradient(ellipse at center, #000 44%, rgb(0 0 0 / 70%) 58%, transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, .9fr);
  align-items: end;
  gap: 28px;
  width: 100%;
}

.hero-copy {
  max-width: min(calc(100vw - 44px), 780px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.panel-dark .eyebrow {
  color: #ffb3c1;
}

.hero p:not(.eyebrow) {
  max-width: min(calc(100vw - 44px), 690px);
  color: rgb(255 255 255 / 88%);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.feature-list {
  margin: 18px 0 0;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 1px;
  width: min(940px, 100%);
  margin: clamp(32px, 7vw, 76px) 0 0;
  padding: 0;
  background: rgb(255 255 255 / 20%);
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.hero-facts div {
  padding: 18px;
  background: rgb(255 255 255 / 11%);
}

.hero-facts dt {
  color: rgb(255 255 255 / 64%);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 850;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 6vw, 78px);
}

.section.white {
  background: var(--white);
}

.opening {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(280px, .82fr);
  gap: clamp(24px, 6vw, 92px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(300px, .95fr);
  min-height: 720px;
  background: var(--ink);
  color: var(--white);
}

.story-photo {
  min-height: 560px;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  display: grid;
  align-content: center;
  padding: clamp(40px, 7vw, 86px);
  background:
    linear-gradient(145deg, rgb(45 43 40 / 96%), rgb(24 23 22 / 96%)),
    url("assets/bungalow-logo.jpg") center / 135% auto;
}

.story-copy p,
.story-copy li {
  color: rgb(255 255 255 / 78%);
}

.story-copy .feature-list li {
  border-left-color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.media-frame {
  position: relative;
}

.media-frame::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 42%;
  height: 42%;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: 0;
}

.media-frame img {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.12rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 18px;
  border-left: 4px solid var(--rose);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background:
    linear-gradient(135deg, rgb(45 43 40 / 98%), rgb(28 26 24 / 98%)),
    url("assets/bungalow-logo.jpg") center / 780px auto;
  color: var(--white);
}

.facts article {
  min-height: 162px;
  padding: 28px;
  border-right: 1px solid rgb(255 255 255 / 18%);
}

.facts strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1;
}

.facts span {
  display: block;
  margin-top: 12px;
  color: rgb(255 255 255 / 74%);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.card {
  min-height: 240px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgb(200 72 97 / 38%);
  box-shadow: 0 24px 60px rgb(24 23 22 / 12%);
}

.calm-section {
  background:
    linear-gradient(180deg, #f6f7f8, #e8eef1);
}

.section-title-row {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(280px, .72fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: end;
}

.editorial-cards .card {
  min-height: 270px;
  box-shadow: 0 18px 45px rgb(24 23 22 / 8%);
}

.editorial-cards .card:nth-child(2) {
  transform: translateY(28px);
}

.editorial-cards .card:nth-child(2):hover {
  transform: translateY(20px);
}

.editorial-cards .card:nth-child(3) {
  background: var(--ink);
  color: var(--white);
}

.editorial-cards .card:nth-child(3) p {
  color: rgb(255 255 255 / 74%);
}

.local-gallery {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr;
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 34px;
}

.place-tile {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.place-tile:first-child {
  min-height: 520px;
}

.place-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.04);
  transition: transform .7s ease, filter .7s ease;
}

.place-tile:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.07);
}

.place-tile figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px;
  color: var(--white);
  background: rgb(16 15 14 / 72%);
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.place-tile strong,
.place-tile span {
  display: block;
}

.place-tile span {
  margin-top: 4px;
  color: rgb(255 255 255 / 76%);
  font-size: .92rem;
}

.review-strip {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(300px, 1.2fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 6vw, 78px);
  background: var(--white);
  border-block: 1px solid var(--line);
}

.review-score {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: .86;
  color: var(--rose);
}

.review-strip blockquote {
  margin: 0;
}

.review-strip p {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  line-height: 1.45;
}

.review-strip cite {
  display: block;
  margin-top: 16px;
  color: var(--soft-ink);
  font-style: normal;
  font-weight: 800;
}

.tinted {
  background: linear-gradient(135deg, var(--mist-blue), var(--sky));
}

.panel-dark {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 420px);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(24 23 22 / 92%), rgb(24 23 22 / 66%)),
    url("assets/outdoor-arrival.jpg") center / cover;
}

.scenic-panel {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgb(24 23 22 / 94%), rgb(24 23 22 / 62%) 56%, rgb(24 23 22 / 16%)),
    url("assets/outdoor-exterior.jpg") center 42% / cover;
}

.panel-dark p {
  color: rgb(255 255 255 / 82%);
}

.notice {
  padding: 18px;
  border-left: 5px solid var(--gold);
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
}

.page-hero {
  padding: 136px clamp(18px, 6vw, 78px) clamp(56px, 8vw, 92px);
  background:
    linear-gradient(90deg, rgb(24 23 22 / 94%), rgb(24 23 22 / 68%) 54%, rgb(24 23 22 / 22%)),
    url("assets/bungalow-logo.jpg") right -90px center / min(62vw, 760px) auto no-repeat,
    linear-gradient(135deg, #2d2b28, #181716);
  color: var(--white);
}

.page-hero p {
  max-width: 760px;
  color: rgb(255 255 255 / 86%);
  font-size: 1.18rem;
}

.area-hero {
  min-height: 82svh;
  align-items: end;
  background:
    linear-gradient(90deg, rgb(16 15 14 / 90%), rgb(16 15 14 / 54%) 46%, rgb(16 15 14 / 12%)),
    linear-gradient(0deg, rgb(16 15 14 / 72%), rgb(16 15 14 / 6%) 48%),
    var(--area-image, url("assets/pendle-hill-sunset.jpg")) center / cover;
}

.area-hero h1 {
  max-width: 10ch;
}

.area-intro {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(280px, .8fr);
  gap: clamp(24px, 6vw, 82px);
  align-items: end;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.area-card {
  display: grid;
  grid-template-rows: minmax(260px, 38vh) auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgb(24 23 22 / 8%);
}

.area-card img,
.wide-photo img,
.itinerary-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .7s ease;
}

.area-card:hover img,
.wide-photo:hover img,
.itinerary-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.05);
}

.area-card-body {
  padding: 24px;
}

.area-card-body p {
  margin-bottom: 0;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  padding: 7px 10px;
  color: var(--ink);
  background: var(--mist-blue);
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 800;
}

.wide-photo {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.wide-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 680px;
  padding: 18px;
  color: var(--white);
  background: rgb(16 15 14 / 72%);
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.wide-photo p,
.wide-photo span {
  color: rgb(255 255 255 / 78%);
}

.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.itinerary-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.itinerary-card img {
  height: 220px;
}

.itinerary-card div {
  padding: 22px;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.route-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-list details {
  padding: 20px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.faq-list p {
  margin-bottom: 0;
}

.content {
  max-width: 980px;
  margin: 0 auto;
}

.content h2 {
  margin-top: 42px;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

.content h3 {
  margin-top: 30px;
}

.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  background: var(--white);
}

.content th,
.content td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.contact-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-item strong {
  display: block;
  margin-bottom: 8px;
}

.cookie-banner {
  position: fixed;
  left: clamp(14px, 4vw, 28px);
  right: clamp(14px, 4vw, 28px);
  bottom: 16px;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-banner.show {
  display: flex;
  animation: cookieIn .3s ease-out both;
}

.cookie-banner p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
}

.site-footer {
  padding: 44px clamp(18px, 6vw, 78px);
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) repeat(3, minmax(160px, .7fr));
  gap: 28px;
}

.site-footer p,
.site-footer li {
  color: rgb(255 255 255 / 72%);
}

.site-footer ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: var(--white);
  text-decoration-color: rgb(255 255 255 / 38%);
}

.footer-logo {
  width: min(280px, 100%);
  border-radius: 8px;
  margin-bottom: 16px;
}

.legal-note {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 16%);
  font-size: .92rem;
}

.is-enhanced .reveal {
  opacity: .82;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}

.is-enhanced .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes copyRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageSettle {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

@keyframes artDrift {
  from {
    transform: rotate(-2deg) translate3d(0, 0, 0);
  }
  to {
    transform: rotate(-1deg) translate3d(-10px, 8px, 0);
  }
}

@keyframes cookieIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 12px 14px;
  }

  .nav-toggle {
    position: fixed;
    top: 12px;
    right: 14px;
    z-index: 36;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .hero-inner,
  .split,
  .opening,
  .visual-story,
  .area-intro,
  .section-title-row,
  .panel-dark,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .facts,
  .cards,
  .local-gallery,
  .area-grid,
  .itinerary-grid,
  .route-list,
  .review-strip,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 88svh;
  }

  .hero-art {
    right: -180px;
    top: 120px;
    width: min(100vw, 680px);
    opacity: .42;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .visual-story {
    min-height: 0;
  }

  .story-photo {
    min-height: 430px;
  }

  .place-tile:first-child {
    min-height: 360px;
  }

  .editorial-cards .card:nth-child(2) {
    transform: none;
  }

  .editorial-cards .card:nth-child(2):hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand span {
    max-width: 160px;
    font-size: .9rem;
  }

  .hero-facts,
  .facts,
  .cards,
  .local-gallery,
  .area-grid,
  .itinerary-grid,
  .route-list,
  .review-strip,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: 2.9rem;
    line-height: .98;
  }

  .page-hero {
    background:
      linear-gradient(90deg, rgb(24 23 22 / 95%), rgb(24 23 22 / 78%) 62%, rgb(24 23 22 / 48%)),
      url("assets/bungalow-logo.jpg") right -180px center / 560px auto no-repeat,
      linear-gradient(135deg, #2d2b28, #181716);
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero {
    min-height: 86svh;
    padding-bottom: 24px;
  }

  .area-hero {
    min-height: 74svh;
  }

  .wide-photo {
    min-height: 420px;
  }

  .hero-art {
    right: -210px;
    top: 118px;
    width: 720px;
  }

  .hero-facts div {
    padding: 14px;
  }

  .button {
    width: 100%;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .is-enhanced .reveal {
    opacity: 1;
    transform: none;
  }
}
