:root {
  --abk-green: #143f27;
  --abk-green-2: #1f6f40;
  --abk-orange: #e85f24;
  --abk-gold: #d5a328;
  --abk-purple: #9b2bb4;
  --abk-teal: #0b837f;
  --abk-ink: #1d261f;
  --abk-muted: #667167;
  --abk-line: #e8e2d8;
  --abk-paper: #f7f3eb;
  --abk-white: #fff;
  --abk-shadow: 0 18px 38px rgba(21, 31, 23, 0.12);
  --abk-radius: 8px;
  --abk-container: 1180px;
}

.abk-page,
.abk-page * {
  box-sizing: border-box;
}

.abk-page {
  color: var(--abk-ink);
  background: var(--abk-white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

.abk-page a {
  color: inherit;
}

.abk-hero {
  position: relative;
  min-height: 530px;
  color: #fff;
  overflow: hidden;
  background-color: #111;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.68) 35%, rgba(0, 0, 0, 0.16) 72%),
    var(--abk-hero-image);
  background-position: center, center right;
  background-size: auto, cover;
  background-repeat: no-repeat;
}

.abk-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.abk-hero__nav {
  position: relative;
  z-index: 2;
  width: min(var(--abk-container), calc(100% - 64px));
  margin: 0 auto;
  padding: 20px 0 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.abk-logo {
  display: inline-grid;
  color: #fff;
  text-decoration: none;
  line-height: 0.9;
  text-transform: uppercase;
}

.abk-logo span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.abk-logo strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.abk-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.abk-menu a,
.abk-nav-icons a,
.abk-nav-icons button {
  color: #fff;
  text-decoration: none;
}

.abk-nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.abk-nav-icons a,
.abk-nav-icons button {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.abk-page svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.abk-hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--abk-container), calc(100% - 64px));
  margin: 0 auto;
  padding: 50px 0 32px;
}

.abk-script {
  margin: 0 0 8px;
  color: #f19d52;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-style: italic;
}

.abk-hero h1 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6.2vw, 74px);
  font-weight: 800;
  line-height: 0.92;
}

.abk-hero__copy {
  max-width: 560px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.5;
}

.abk-search {
  display: grid;
  grid-template-columns: 1fr 58px;
  width: 100%;
  max-width: 560px;
  min-height: 58px;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--abk-shadow);
}

.abk-search input {
  min-width: 0;
  border: 0;
  padding: 0 24px;
  color: var(--abk-ink);
  font: 600 15px/1 Inter, "Segoe UI", Arial, sans-serif;
}

.abk-search button {
  display: grid;
  place-items: center;
  border: 0;
  background: #fff;
  color: #111;
  cursor: pointer;
}

.abk-search svg {
  width: 26px;
  height: 26px;
}

.abk-popular-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.abk-popular-line a {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.18);
}

.abk-section {
  width: min(var(--abk-container), calc(100% - 64px));
  margin: 0 auto;
  padding: 34px 0;
}

.abk-section--tight {
  padding-top: 18px;
}

.abk-card-rail {
  display: grid;
  gap: 14px;
}

.abk-card-rail--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.abk-feature-card,
.abk-rating-card,
.abk-district-card {
  position: relative;
  display: flex;
  min-height: 252px;
  overflow: hidden;
  border-radius: var(--abk-radius);
  color: #fff;
  text-decoration: none;
  background-color: #1d261f;
  background-image: var(--abk-card-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: var(--abk-shadow);
  isolation: isolate;
}

.abk-feature-card::before,
.abk-rating-card::before,
.abk-district-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.84));
}

.abk-feature-card {
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.abk-feature-card__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
}

.abk-feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.abk-feature-card__title {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.abk-feature-card__copy {
  display: block;
  max-width: 190px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.35;
}

.abk-trio {
  display: grid;
  grid-template-columns: 1.72fr 0.82fr 1fr;
  gap: 14px;
}

.abk-destination-panel,
.abk-small-panel,
.abk-happy-panel,
.abk-ad-card,
.abk-partner-card {
  overflow: hidden;
  border: 1px solid var(--abk-line);
  border-radius: var(--abk-radius);
  box-shadow: var(--abk-shadow);
}

.abk-destination-panel {
  min-height: 270px;
  padding: 28px;
  background-color: #fff;
  background-image:
    linear-gradient(90deg, #fff 0%, #fff 42%, rgba(255, 255, 255, 0.18) 67%, rgba(255, 255, 255, 0) 100%),
    var(--abk-panel-image);
  background-position: center, center right;
  background-size: auto, cover;
  background-repeat: no-repeat;
}

.abk-destination-panel > div {
  max-width: 280px;
}

.abk-kicker {
  margin: 0 0 8px;
  color: var(--abk-green-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.abk-kicker--orange {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 4px;
  color: #fff;
  background: var(--abk-orange);
}

.abk-kicker--purple {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 4px;
  color: #fff;
  background: var(--abk-purple);
}

.abk-destination-panel h2,
.abk-small-panel h2,
.abk-happy-panel h2,
.abk-section-head h2,
.abk-newsletter h2,
.abk-ad-card h3,
.abk-partner-card h3 {
  margin: 0;
  color: var(--abk-green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 850;
  line-height: 1;
}

.abk-destination-panel h2,
.abk-small-panel h2,
.abk-happy-panel h2 {
  font-size: 34px;
}

.abk-destination-panel p,
.abk-small-panel p,
.abk-happy-panel p {
  color: #314136;
  font-size: 14px;
  line-height: 1.45;
}

.abk-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.abk-button::after {
  content: " ->";
  margin-left: 6px;
}

.abk-button--green {
  background: var(--abk-green-2);
}

.abk-button--orange {
  background: var(--abk-orange);
}

.abk-button--purple {
  background: var(--abk-purple);
}

.abk-button--outline {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
}

.abk-small-panel {
  padding: 22px;
  background: #fff9ee;
}

.abk-small-panel img {
  display: block;
  width: calc(100% + 44px);
  height: 106px;
  margin: 16px -22px -22px;
  object-fit: cover;
}

.abk-happy-panel {
  min-height: 270px;
  padding: 22px;
  color: #fff;
  background-color: #1d261f;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12)),
    var(--abk-happy-image);
  background-position: center, center;
  background-size: auto, cover;
  background-repeat: no-repeat;
}

.abk-happy-panel h2,
.abk-happy-panel p {
  color: #fff;
}

.abk-happy-panel h2 {
  max-width: 250px;
}

.abk-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.abk-section-head h2 {
  font-size: 30px;
}

.abk-section-head a {
  color: var(--abk-orange);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.abk-district-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.abk-district-card {
  min-height: 160px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background-image: var(--abk-district-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.abk-district-card__title {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 850;
}

.abk-district-card__copy {
  min-height: 36px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  line-height: 1.25;
}

.abk-district-card__town {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.abk-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
}

.abk-recommended-grid,
.abk-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.abk-rating-card {
  min-height: 234px;
  padding: 12px;
  flex-direction: column;
  justify-content: space-between;
}

.abk-rating-card--short {
  min-height: 164px;
}

.abk-rating,
.abk-heart {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.46);
  font-size: 12px;
  font-weight: 900;
}

.abk-rating svg {
  color: #ffc43d;
  fill: #ffc43d;
}

.abk-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  justify-content: center;
  padding: 0;
}

.abk-rating-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
}

.abk-rating-card__body strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.15;
}

.abk-rating-card__body small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.abk-rating-card__body em {
  color: #f5c451;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.abk-section-head--left {
  justify-content: flex-start;
  margin-top: 28px;
}

.abk-search-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.abk-search-grid a {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 12px;
  border: 1px solid var(--abk-line);
  border-radius: var(--abk-radius);
  color: var(--abk-green);
  text-align: center;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 10px 22px rgba(21, 31, 23, 0.06);
}

.abk-search-grid svg {
  width: 34px;
  height: 34px;
}

.abk-search-grid span {
  color: var(--abk-ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.abk-sidebar {
  display: grid;
  gap: 16px;
}

.abk-ad-card,
.abk-partner-card {
  min-height: 172px;
  padding: 22px;
  background: #fbf2e3;
}

.abk-ad-card {
  background-color: #fbf2e3;
  background-image:
    linear-gradient(90deg, rgba(255, 246, 232, 0.96) 0%, rgba(255, 246, 232, 0.82) 55%, rgba(255, 246, 232, 0.05)),
    var(--abk-ad-image);
  background-position: center, center right;
  background-size: auto, cover;
  background-repeat: no-repeat;
}

.abk-ad-card--weekend {
  color: #fff;
  background-color: var(--abk-teal);
  background-image:
    linear-gradient(90deg, rgba(11, 131, 127, 0.92), rgba(11, 131, 127, 0.68)),
    var(--abk-ad-image);
  background-position: center, center;
  background-size: auto, cover;
  background-repeat: no-repeat;
}

.abk-ad-card--weekend h3,
.abk-ad-card--weekend p {
  color: #fff;
}

.abk-ad-card h3,
.abk-partner-card h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.abk-ad-card p,
.abk-partner-card p,
.abk-partner-card li {
  color: #3e4b40;
  font-size: 14px;
  line-height: 1.4;
}

.abk-partner-card ul {
  display: grid;
  gap: 6px;
  margin: 14px 0 18px;
  padding: 0 0 0 18px;
}

.abk-story-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  padding-top: 44px;
  border-top: 1px solid var(--abk-line);
}

.abk-story-row article img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: 5px;
}

.abk-story-row h3 {
  margin: 14px 0 8px;
  color: var(--abk-green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.abk-story-row p {
  min-height: 62px;
  margin: 0 0 14px;
  color: #4e5b51;
  font-size: 14px;
  line-height: 1.45;
}

.abk-story-row a {
  color: var(--abk-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.abk-newsletter {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 28px;
  padding: 26px min(6vw, 76px);
  border-top: 1px solid var(--abk-line);
  background: #f6f2e9;
}

.abk-newsletter h2 {
  font-size: 26px;
}

.abk-newsletter p {
  margin: 8px 0 0;
  color: var(--abk-muted);
  font-size: 13px;
}

.abk-newsletter form {
  display: grid;
  grid-template-columns: 1fr 150px;
  max-width: 430px;
  justify-self: end;
  min-height: 46px;
  border: 1px solid var(--abk-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.abk-newsletter input {
  min-width: 0;
  border: 0;
  padding: 0 18px;
  font: 600 14px/1 Inter, "Segoe UI", Arial, sans-serif;
}

.abk-newsletter button {
  border: 0;
  color: #fff;
  background: var(--abk-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.abk-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 26px min(6vw, 76px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(20, 63, 39, 0.98), rgba(31, 111, 64, 0.94)),
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.14), transparent 20rem);
}

.abk-trust-strip div {
  display: grid;
  gap: 5px;
}

.abk-trust-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.abk-trust-strip span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.35;
}

.abk-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.85fr 1.2fr;
  gap: 42px;
  padding: 40px min(6vw, 76px);
  color: #fff;
  background: #0f311f;
}

.abk-logo--footer strong {
  font-size: 32px;
}

.abk-footer p,
.abk-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.abk-footer nav {
  display: grid;
  align-content: start;
  gap: 6px;
}

.abk-footer h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.abk-footer a {
  text-decoration: none;
}

.abk-socials {
  display: flex;
  gap: 9px;
  margin-top: 10px;
}

.abk-socials a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .abk-menu {
    display: none;
  }

  .abk-hero__nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .abk-card-rail--five,
  .abk-story-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .abk-trio,
  .abk-main-grid,
  .abk-newsletter,
  .abk-footer {
    grid-template-columns: 1fr;
  }

  .abk-district-grid,
  .abk-recommended-grid,
  .abk-featured-grid,
  .abk-search-grid,
  .abk-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .abk-newsletter form {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .abk-hero__nav,
  .abk-hero__content,
  .abk-section {
    width: calc(100vw - 28px);
    max-width: var(--abk-container);
  }

  .abk-hero {
    min-height: 600px;
    background-position: center, 62% center;
  }

  .abk-logo strong {
    font-size: 36px;
  }

  .abk-script {
    max-width: calc(100vw - 48px);
    font-size: 18px;
    line-height: 1.15;
  }

  .abk-hero h1 {
    max-width: 100%;
    font-size: 39px;
    overflow-wrap: break-word;
  }

  .abk-search {
    grid-template-columns: minmax(0, 1fr) 52px;
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .abk-search input {
    padding: 0 18px;
  }

  .abk-popular-line {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    gap: 7px;
    font-size: 11px;
  }

  .abk-popular-line span {
    flex-basis: 100%;
  }

  .abk-popular-line a {
    padding: 6px 10px;
  }

  .abk-hero__copy {
    font-size: 16px;
  }

  .abk-card-rail--five,
  .abk-district-grid,
  .abk-recommended-grid,
  .abk-featured-grid,
  .abk-search-grid,
  .abk-story-row,
  .abk-trust-strip {
    grid-template-columns: 1fr;
  }

  .abk-destination-panel {
    padding-bottom: 180px;
    background-image:
      linear-gradient(180deg, #fff 0%, #fff 42%, rgba(255, 255, 255, 0.24) 68%, rgba(255, 255, 255, 0) 100%),
      var(--abk-panel-image);
    background-position: center, center bottom;
    background-size: auto, cover;
    background-repeat: no-repeat;
  }

  .abk-newsletter form {
    grid-template-columns: 1fr;
  }

  .abk-newsletter button {
    min-height: 44px;
  }
}
