:root {
  --accent: #f59c00;
  --accent-2: #dd9933;
  --ink: #111827;
  --muted: #6b7280;
  --line: rgba(17, 24, 39, 0.12);
  --surface: #ffffff;
  --soft: #f6f7f2;
  --forest: #1f342e;
  --sky: #dbeaf4;
  --clay: #b85f35;
  --radius: 8px;
  --max: 1320px;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p,
a,
span,
strong {
  overflow-wrap: break-word;
}

button {
  font: inherit;
}

main > section,
.nav-shell > *,
.hero-content > *,
.offer-overview > *,
.media-story > *,
.feature-grid > *,
.experience-grid > *,
.places-panel > *,
.place-grid > *,
.contact-section > *,
.footer-inner > * {
  min-width: 0;
}

:focus-visible {
  outline: 3px solid rgba(245, 156, 0, 0.68);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  min-height: 100svh;
  background: #101010;
}

.nav-shell {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 30;
  width: min(calc(100% - 32px), var(--max));
  min-height: 70px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.nav-shell.is-compact {
  min-height: 62px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.brand-main {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.8px;
  text-transform: none;
  font-style: italic;
}

.brand-sub {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.8px;
  text-transform: none;
  font-style: italic;
}

.main-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 800;
}

.main-menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #202733;
}

.main-menu a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 130px 16px 72px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 14, 0.14), rgba(10, 12, 14, 0.2) 42%, rgba(10, 12, 14, 0.48) 72%),
    url("https://travel.gavit.net/wp-content/uploads/2025/12/armeria-travel-gav.jpg") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 0.9fr);
  color: #fff;
}

.hero-content > * {
  grid-column: 2;
  justify-self: end;
  text-align: right;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--accent-2);
  font-size: 15px;
  font-weight: 900;
}

.hero h1,
.section h2,
.media-story h2,
.places-copy h2,
.contact-section h2 {
  margin: 0;
  font-weight: 920;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 790px;
  font-size: 7.2rem;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 900;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
}

.media-story h2,
.places-copy h2,
.contact-section h2 {
  font-size: 4rem;
}

.media-story p:last-child,
.places-copy p,
.contact-section p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.offer-overview {
  width: min(calc(100% - 32px), var(--max));
  margin: 112px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1fr);
  gap: 72px;
  align-items: center;
}

.offer-copy h2 {
  max-width: 640px;
  margin: 0;
  color: var(--ink);
  font-size: 4.4rem;
  font-weight: 920;
  line-height: 1.05;
  letter-spacing: 0;
}

.offer-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.offer-note {
  color: #3f4651 !important;
  font-weight: 850;
  font-style: italic;
}

.offer-link {
  min-height: 54px;
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 920;
}

.offer-link:hover {
  filter: brightness(0.96);
}

.offer-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.offer-tile {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.offer-tile:nth-child(even) {
  margin-top: 30px;
}

.offer-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(31, 52, 46, 0.58);
}

.offer-tile::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 20px solid var(--accent);
  border-left: 20px solid transparent;
}

.offer-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
}

.offer-tile span {
  position: absolute;
  left: 26px;
  right: 26px;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2rem;
  font-weight: 920;
  line-height: 1.08;
  text-align: center;
}

.media-story {
  width: min(calc(100% - 32px), var(--max));
  margin: 96px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.media-story video {
  width: 100%;
  height: min(48vw, 560px);
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.14);
}

.section {
  padding: 104px 16px;
}

.section-head {
  width: min(100%, 880px);
  margin: 0 auto 38px;
  text-align: center;
}

.section-head.compact {
  margin-bottom: 32px;
}

.section h2 {
  font-size: 4.2rem;
}

.section-head p:not(.eyebrow) {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.feature-grid,
.experience-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid #e7e7fb;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.feature-mark {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
}

.feature-mark.amber { background: rgba(221, 153, 51, 0.32); box-shadow: inset 0 0 0 14px #dd9933; }
.feature-mark.green { background: rgba(129, 215, 66, 0.35); box-shadow: inset 0 0 0 14px #81d742; }
.feature-mark.blue { background: rgba(30, 115, 190, 0.28); box-shadow: inset 0 0 0 14px #1e73be; }
.feature-mark.violet { background: rgba(130, 36, 227, 0.25); box-shadow: inset 0 0 0 14px #8224e3; }

.feature-card h3 {
  margin: 0 0 10px;
  color: #101827;
  font-size: 20px;
  line-height: 1.25;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.experiences {
  background: var(--forest);
  color: #fff;
}

.experiences .section-head p,
.experiences .eyebrow {
  color: #f6bd57;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 16px;
}

.experience-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}

.experience-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78));
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.experience-card:hover img {
  transform: scale(1.05);
}

.experience-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
}

.experience-card span {
  color: #f6bd57;
  font-size: 13px;
  font-weight: 900;
}

.experience-card h3 {
  margin: 6px 0 0;
  font-size: 1.85rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.places {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.places-copy {
  max-width: 760px;
  margin-bottom: 34px;
}

.places-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 18px;
  align-items: stretch;
}

.place-feature {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.16);
}

.place-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.78));
}

.place-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-feature div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 1;
  color: #fff;
}

.place-feature span,
.contact-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 920;
  text-transform: uppercase;
}

.place-feature h3 {
  max-width: 620px;
  margin: 8px 0 0;
  font-size: 3.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.place-grid article {
  min-height: 116px;
  display: grid;
  align-content: space-between;
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 52, 46, 0.12);
  background: linear-gradient(145deg, #ffffff, #f6f7f2);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.place-grid span {
  color: var(--forest);
  font-size: 24px;
  font-weight: 920;
  line-height: 1.1;
}

.place-grid strong {
  color: var(--accent-2);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: 42px;
  align-items: stretch;
  padding: 54px;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(31, 52, 46, 0.78), rgba(17, 24, 39, 0.76)),
    url("https://travel.gavit.net/wp-content/uploads/2025/12/armeria-travel-gav.jpg") center / cover;
  color: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.2);
}

.contact-copy {
  display: grid;
  align-content: center;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.contact-copy h2 {
  max-width: 760px;
  color: #fff;
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  font-style: normal;
}

.contact-card div:not(.socials) {
  display: grid;
  gap: 4px;
}

.contact-card a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: #fff;
}

.contact-card div:not(.socials) a {
  font-size: 26px;
  font-weight: 920;
  text-decoration: underline;
  text-underline-offset: 5px;
  word-break: break-word;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
}

.socials a {
  min-height: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  padding: 82px 16px 34px;
  border-top: 0;
  background:
    linear-gradient(120deg, rgba(17, 24, 39, 0.92), rgba(31, 52, 46, 0.78)),
    url("https://travel.gavit.net/wp-content/uploads/2025/12/armeria-travel-gav.jpg") center / cover;
  color: #fff;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(280px, 0.9fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: start;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-brand-block {
  display: grid;
  align-content: start;
}

.footer-brand-block h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: 4.6rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.footer-brand-block p {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.55;
}

.footer-links {
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-bottom a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}

.footer-links a {
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(8px);
}

.footer-contact {
  align-self: start;
  display: grid;
  justify-items: stretch;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.footer-contact a {
  color: #fff;
  font-size: 20px;
  font-weight: 920;
  text-decoration: underline;
  text-underline-offset: 4px;
  word-break: break-word;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--accent);
}

@media (max-width: 1060px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .main-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  }

  .main-menu.is-open {
    display: flex;
  }

  .main-menu a {
    padding: 8px 10px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 0.58fr) minmax(460px, 0.9fr);
  }

  .hero h1 {
    font-size: 5.8rem;
  }

  .hero-copy {
    max-width: 560px;
  }

  .offer-overview,
  .media-story,
  .places-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .offer-overview {
    gap: 42px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-brand-block {
    min-height: auto;
  }

  .footer-contact {
    justify-items: stretch;
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: minmax(0, 0.48fr) minmax(430px, 0.82fr);
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  .offer-copy h2,
  .section h2,
  .media-story h2,
  .places-copy h2,
  .contact-section h2 {
    font-size: 3.1rem;
  }

  .place-feature h3,
  .footer-brand-block h2 {
    font-size: 3.2rem;
  }

  .contact-section {
    padding: 40px;
  }
}

@media (max-width: 700px) {
  .nav-shell {
    top: 12px;
    width: min(calc(100% - 20px), var(--max));
    padding: 10px;
  }

  .brand-main {
    font-size: 30px;
  }

  .brand-sub {
    font-size: 30px;
  }

  .hero {
    padding: 110px 16px 48px;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(10, 12, 14, 0.72), rgba(10, 12, 14, 0.46)),
      url("https://travel.gavit.net/wp-content/uploads/2025/12/armeria-travel-gav.jpg") center / cover;
  }

  .hero-content {
    display: block;
    text-align: left;
  }

  .hero-content > * {
    text-align: left;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .media-story,
  .contact-section {
    width: calc(100% - 20px);
  }

  .section {
    padding: 72px 16px;
  }

  .feature-grid,
  .offer-tiles,
  .place-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .offer-overview {
    width: calc(100% - 20px);
    margin-top: 72px;
  }

  .offer-copy h2,
  .section h2,
  .media-story h2,
  .places-copy h2,
  .contact-section h2 {
    font-size: 2.55rem;
  }

  .offer-tiles {
    gap: 12px;
  }

  .offer-tile,
  .offer-tile:nth-child(even) {
    min-height: 190px;
    margin-top: 0;
  }

  .offer-tile span {
    left: 12px;
    right: 12px;
    font-size: 1.35rem;
  }

  .places-panel {
    grid-template-columns: 1fr;
  }

  .place-feature {
    min-height: 430px;
  }

  .place-grid {
    gap: 10px;
  }

  .place-grid article {
    min-height: 104px;
    padding: 14px;
  }

  .place-grid span {
    font-size: 1.25rem;
  }

  .place-grid strong {
    font-size: 11px;
  }

  .place-feature h3,
  .footer-brand-block h2 {
    font-size: 2.6rem;
  }

  .experience-grid {
    grid-auto-rows: 250px;
  }

  .experience-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-section {
    padding: 28px 18px;
    margin-bottom: 64px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card div:not(.socials) a {
    font-size: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav-shell {
    min-height: 58px;
  }

  .brand {
    gap: 5px;
  }

  .brand-main {
    font-size: 25px;
  }

  .brand-sub {
    font-size: 25px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 92svh;
    padding: 98px 10px 42px;
  }

  .hero h1 {
    font-size: 3.2rem;
    line-height: 1;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .button,
  .offer-link {
    width: 100%;
  }

  .offer-copy h2,
  .section h2,
  .media-story h2,
  .places-copy h2,
  .contact-section h2 {
    font-size: 2.1rem;
    line-height: 1.05;
  }

  .offer-copy p:not(.eyebrow),
  .media-story p:last-child,
  .places-copy p,
  .contact-section p,
  .section-head p:not(.eyebrow) {
    font-size: 15.5px;
  }

  .media-story video {
    min-height: 240px;
  }

  .feature-card {
    min-height: auto;
    padding: 18px;
  }

  .feature-mark {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
  }

  .feature-mark.amber { box-shadow: inset 0 0 0 11px #dd9933; }
  .feature-mark.green { box-shadow: inset 0 0 0 11px #81d742; }
  .feature-mark.blue { box-shadow: inset 0 0 0 11px #1e73be; }
  .feature-mark.violet { box-shadow: inset 0 0 0 11px #8224e3; }

  .feature-card h3 {
    font-size: 1.05rem;
  }

  .feature-card p {
    font-size: 14px;
  }

  .experience-grid {
    grid-auto-rows: 220px;
  }

  .place-feature {
    min-height: 340px;
  }

  .place-feature div {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .place-feature h3,
  .footer-brand-block h2 {
    font-size: 2.1rem;
    line-height: 1.03;
  }

  .contact-card div:not(.socials) a,
  .footer-contact a {
    font-size: 18px;
  }

  .site-footer {
    padding-top: 58px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.65rem;
  }

  .offer-copy h2,
  .section h2,
  .media-story h2,
  .places-copy h2,
  .contact-section h2,
  .place-feature h3,
  .footer-brand-block h2 {
    font-size: 1.85rem;
  }

  .offer-tile span,
  .experience-card h3,
  .place-grid span {
    font-size: 1.35rem;
  }

  .feature-grid {
    gap: 10px;
  }

  .feature-card {
    padding: 14px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .contact-section,
  .contact-card,
  .footer-contact {
    padding: 18px;
  }
}

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