:root {
  --pink: #ff73c7;
  --cream: #fff7f1;
  --black: #050505;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--black);
  background: var(--cream);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

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

.en-guide-hero {
  display: grid;
  min-height: min(760px, 92vh);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  color: var(--black);
  background: var(--pink);
  border-bottom: 2px solid var(--black);
}

.en-guide-hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(36px, 6vw, 84px);
}

.en-guide-hero__copy > p:first-child,
.en-guide-section__eyebrow,
.en-guide-facts span,
.en-guide-card span {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.en-guide-hero h1 {
  max-width: 760px;
  margin: 44px 0;
  font-size: clamp(58px, 8vw, 116px);
  font-weight: 500;
  line-height: 0.88;
  overflow-wrap: anywhere;
}

.en-guide-hero__lead {
  max-width: 640px;
  margin: 0;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.25;
}

.en-guide-hero figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.en-guide-hero img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.en-guide-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--pink);
  background: var(--black);
  border-bottom: 1px solid var(--pink);
}

.en-guide-facts div {
  min-height: 150px;
  padding: 26px;
  border-right: 1px solid var(--pink);
}

.en-guide-facts div:last-child {
  border-right: 0;
}

.en-guide-facts b {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.en-guide-section {
  padding: clamp(70px, 10vw, 132px) max(24px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid var(--black);
}

.en-guide-section:nth-of-type(even) {
  color: var(--pink);
  background: var(--black);
  border-color: var(--pink);
}

.en-guide-section__heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 52px;
  margin-bottom: 52px;
}

.en-guide-section h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 500;
  line-height: 0.98;
}

.en-guide-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.en-guide-card {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.en-guide-card h3 {
  margin: 22px 0 12px;
  font-size: 22px;
  line-height: 1.1;
}

.en-guide-card p {
  margin: 0;
  font-size: 15px;
}

.en-guide-booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 390px);
  gap: 38px;
  align-items: center;
  padding: 44px max(24px, calc((100% - 1180px) / 2));
  color: var(--pink);
  background: var(--black);
  border-bottom: 2px solid var(--pink);
}

.en-guide-booking h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.en-guide-booking p {
  margin: 0;
}

.en-guide-booking a {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  color: var(--black);
  background: var(--pink);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.en-guide-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px max(24px, calc((100% - 1180px) / 2));
  color: var(--pink);
  background: var(--black);
}

.en-guide-footer p {
  margin: 0;
  font-weight: 900;
}

.en-guide-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.en-guide-footer button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 760px) {
  .en-guide-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .en-guide-hero__copy {
    min-height: 590px;
    padding: 44px 22px;
  }

  .en-guide-hero figure {
    aspect-ratio: 4 / 5;
  }

  .en-guide-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .en-guide-facts div:nth-child(2) {
    border-right: 0;
  }

  .en-guide-facts div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--pink);
  }

  .en-guide-section__heading,
  .en-guide-booking {
    grid-template-columns: 1fr;
  }

  .en-guide-section__heading {
    gap: 18px;
  }

  .en-guide-cards {
    grid-template-columns: 1fr;
  }

  .en-guide-card {
    min-height: 0;
  }

  .en-guide-footer {
    display: block;
  }

  .en-guide-footer nav {
    margin-top: 24px;
  }
}
