:root {
  --paper: #f7ecd5;
  --paper-deep: #f0dfbd;
  --ink: #372918;
  --muted: #6d4d35;
  --red: #98161d;
  --gold: #b17a37;
  --line: #d6a968;
  --soft-line: #ead2a7;
  --shadow: 0 20px 42px rgba(71, 42, 17, .18);
  --serif: "Cormorant Garamond", "Bodoni 72", Didot, "Iowan Old Style", Georgia, serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  background: #050505;
}

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

.page {
  width: min(100%, 941px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 43px 48px 24px;
  border-radius: 52px;
  background:
    radial-gradient(circle at 24% 18%, rgba(114, 82, 43, .08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 58%, rgba(143, 26, 30, .045) 0 1px, transparent 1.6px),
    radial-gradient(circle at 46% 86%, rgba(110, 81, 39, .05) 0 1px, transparent 1.4px),
    linear-gradient(180deg, rgba(255, 250, 238, .82), rgba(246, 233, 207, .96)),
    var(--paper);
  background-size: 21px 21px, 29px 29px, 17px 17px, auto, auto;
  overflow: hidden;
}

.intro {
  text-align: center;
}

.emblem {
  display: block;
  width: 128px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 8px;
}

.brand-title {
  margin: 0 0 28px;
  color: #261d14;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: .82;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.intro p {
  max-width: 600px;
  margin: 0 auto;
  color: #4a3524;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.22;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-top: 29px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--soft-line);
  border-radius: 50%;
  background: rgba(255, 247, 232, .5);
}

.socials img {
  display: block;
  width: 34px;
  height: 34px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 477px;
  margin-top: 31px;
  border: 3px solid rgba(255, 255, 255, .95);
  border-radius: 28px;
  background: #2c180c;
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .05) 45%, rgba(0, 0, 0, .62) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, transparent 48%);
  pointer-events: none;
}

.hero-card > img {
  display: block;
  width: 100%;
  height: 477px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 22px;
  color: #fffaf0;
  background: rgba(118, 76, 38, .72);
  font-size: 20px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.hero-badge-left {
  left: 34px;
}

.hero-badge-right {
  right: 31px;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: 35px;
  bottom: 30px;
  color: #fffaf0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .28);
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 700;
  line-height: .98;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-arrow {
  position: absolute;
  z-index: 2;
  right: 31px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #fffaf0;
  background: rgba(82, 67, 42, .92);
  font-size: 40px;
  line-height: 1;
}

.booking-panel {
  margin-top: 33px;
  padding: 0 11px 14px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255, 248, 234, .35);
}

.panel-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: 72%;
  margin: -26px auto 18px;
}

.panel-title h2 {
  margin: 0;
  color: var(--red);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.panel-title span {
  position: relative;
  display: block;
  height: 1px;
  background: var(--line);
}

.panel-title span::after {
  content: "◆";
  position: absolute;
  top: 50%;
  color: var(--gold);
  font-size: 13px;
  transform: translateY(-50%);
}

.panel-title span:first-child::after {
  right: -5px;
}

.panel-title span:last-child::after {
  left: -5px;
}

.booking-rows {
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: 19px;
  background: rgba(255, 252, 246, .62);
}

.booking-row {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr 92px;
  align-items: center;
  min-height: 155px;
  background: rgba(255, 252, 246, .78);
}

.booking-row + .booking-row {
  border-top: 1px solid var(--soft-line);
}

.row-thumb {
  width: 240px;
  height: 155px;
  object-fit: cover;
}

.row-copy {
  display: grid;
  gap: 9px;
  padding: 20px 18px;
}

.eyebrow {
  color: #a9773a;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.row-title {
  color: var(--red);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.08;
}

.row-subtitle {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.2;
}

.row-brand {
  position: absolute;
  top: 50%;
  right: 122px;
  justify-self: center;
  color: rgba(155, 114, 64, .18);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.row-brand-airbnb {
  font-size: 57px;
}

.row-brand-booking {
  font-size: 42px;
  letter-spacing: 0;
}

.row-action {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fffaf0;
  background: var(--red);
  box-shadow: 0 8px 18px rgba(93, 21, 15, .18);
  font-size: 44px;
  line-height: 1;
}

.heritage-strip {
  display: grid;
  grid-template-columns: 205px 1fr 202px;
  align-items: center;
  min-height: 133px;
  margin-top: 20px;
  padding: 18px 26px;
  border: 1px solid var(--soft-line);
  border-radius: 18px;
  background: rgba(255, 248, 233, .42);
}

.century-mark {
  display: grid;
  justify-items: center;
  gap: 1px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.04;
  text-transform: uppercase;
}

.century-mark::before,
.century-mark::after {
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
}

.century-mark::before {
  content: "╲╱";
}

.century-mark::after {
  content: "╱╲";
}

blockquote {
  display: grid;
  justify-items: center;
  gap: 11px;
  margin: 0;
  color: #6f4d38;
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.28;
  text-align: center;
}

blockquote span {
  display: block;
  width: 132px;
  height: 1px;
  background: var(--line);
}

blockquote span::after {
  content: "◆";
  display: block;
  color: var(--gold);
  font-size: 12px;
  line-height: 0;
  transform: translateY(-1px);
}

.rome-line {
  position: relative;
  justify-self: end;
  width: 168px;
  height: 74px;
  border-bottom: 2px solid rgba(174, 126, 65, .42);
  opacity: .7;
}

.rome-line span {
  position: absolute;
  bottom: 0;
  width: 22px;
  border: 1px solid rgba(174, 126, 65, .42);
  border-bottom: 0;
}

.rome-line span:nth-child(1) {
  left: 8px;
  height: 28px;
  border-radius: 20px 20px 0 0;
}

.rome-line span:nth-child(2) {
  left: 42px;
  height: 42px;
  border-radius: 26px 26px 0 0;
}

.rome-line span:nth-child(3) {
  left: 76px;
  width: 38px;
  height: 70px;
  border-radius: 38px 38px 0 0;
}

.rome-line span:nth-child(4) {
  left: 122px;
  height: 40px;
  border-radius: 22px 22px 0 0;
}

.rome-line span:nth-child(5) {
  left: 150px;
  width: 10px;
  height: 55px;
}

@media (max-width: 720px) {
  .page {
    padding: 34px 18px 18px;
    border-radius: 36px;
  }

  .emblem {
    width: 106px;
    margin-bottom: 7px;
  }

  .brand-title {
    margin-bottom: 22px;
    font-size: 30px;
  }

  .intro p {
    max-width: 360px;
    font-size: 19px;
    line-height: 1.22;
  }

  .socials {
    gap: 18px;
    margin-top: 24px;
  }

  .socials a {
    width: 54px;
    height: 54px;
  }

  .socials img {
    width: 29px;
    height: 29px;
  }

  .hero-card {
    min-height: 390px;
    margin-top: 29px;
    border-radius: 24px;
  }

  .hero-card > img {
    height: 390px;
  }

  .hero-badge {
    top: 18px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero-badge-left {
    left: 18px;
  }

  .hero-badge-right {
    right: 18px;
  }

  .hero-copy {
    left: 22px;
    bottom: 24px;
  }

  .hero-copy h1 {
    font-size: 33px;
  }

  .hero-copy p {
    max-width: 260px;
    font-size: 16px;
  }

  .hero-arrow {
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    font-size: 34px;
  }

  .booking-panel {
    margin-top: 31px;
    padding: 0 10px 12px;
  }

  .panel-title {
    width: 94%;
    gap: 13px;
  }

  .panel-title h2 {
    font-size: 27px;
  }

  .booking-row {
    grid-template-columns: 96px 1fr 48px;
    min-height: 124px;
  }

  .row-thumb {
    width: 96px;
    height: 124px;
  }

  .row-copy {
    gap: 7px;
    padding: 14px 12px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .row-title {
    font-size: 22px;
  }

  .row-subtitle {
    font-size: 14px;
  }

  .row-brand {
    display: none;
  }

  .row-action {
    width: 43px;
    height: 43px;
    font-size: 28px;
  }

  .heritage-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 14px;
  }

  .century-mark {
    font-size: 16px;
  }

  blockquote {
    font-size: 20px;
  }

  .rome-line {
    justify-self: center;
    transform: scale(.85);
  }
}
