:root {
  --ink: #171612;
  --paper: #f7f4ee;
  --ivory: #ede7dc;
  --gold: #b49158;
  --line: rgba(23, 22, 18, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.7 Montserrat,
    Arial,
    sans-serif;
}
a {
  color: inherit;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.97);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-decoration: none;
}
.brand i {
  font-style: normal;
  color: var(--gold);
}
.navlinks {
  display: flex;
  gap: 1.6rem;
}
.navlinks a,
.crumb a,
footer a {
  text-decoration: none;
}
.navlinks a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.crumb {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding: 2rem 7vw 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d6559;
}
.detail-hero {
  padding: 6rem 7vw 7rem;
  background: var(--ink);
  color: white;
  margin-top: 2rem;
}
.detail-hero.compact {
  padding-bottom: 4rem;
}
.eyebrow,
.section-no {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.detail-hero h1 {
  font:
    400 clamp(4rem, 9vw, 8rem)/0.9 "Cormorant Garamond",
    serif;
  margin: 0.7rem 0 1.5rem;
  letter-spacing: -0.04em;
}
.detail-hero p {
  max-width: 740px;
  color: #d4cec3;
  font:
    400 clamp(1.2rem, 2vw, 1.55rem)/1.5 "Cormorant Garamond",
    serif;
}
.visual-hero,
.brand-visual-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: stretch;
  padding: 0;
  min-height: clamp(560px, 72vh, 780px);
  overflow: hidden;
}
.hero-copy {
  align-self: center;
  padding: 6rem 7vw;
}
.visual-hero .hero-copy {
  padding-right: 4vw;
}
.hero-image {
  margin: 0;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  background: #24221d;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.hero-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.04);
}
.image-note {
  display: block;
  margin-top: 3rem;
  color: #a99f90;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.brand-visual-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
}
.brand-wordmark {
  margin: 0.9rem 0 2rem;
  font: 400 clamp(4.8rem, 10vw, 9rem) / 0.8 "Cormorant Garamond", serif;
  letter-spacing: 0.13em;
}
.brand-source {
  display: inline-block;
  margin-top: 2rem;
  color: #d8c39e;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(216, 195, 158, 0.4);
  padding-bottom: 0.35rem;
}
.brand-look img {
  object-position: center;
}
.brand-look figcaption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.2rem;
  z-index: 2;
  color: white;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.75);
}
.content {
  padding: 6rem 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
}
.content.single {
  grid-template-columns: minmax(0, 820px);
}
.hotel-section {
  padding: 6rem 7vw;
}
.section-intro {
  max-width: 760px;
  color: #514c43;
}
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.hotel-card {
  min-height: 360px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.32);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hotel-card-image {
  position: relative;
  height: 190px;
  margin: 0;
  overflow: hidden;
  background: #ded7cc;
}
.hotel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.84) contrast(1.03);
  transition: transform .55s ease;
}
.hotel-card:hover .hotel-card-image img {
  transform: scale(1.035);
}
.hotel-card-image figcaption {
  position: absolute;
  right: .75rem;
  bottom: .6rem;
  color: white;
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.8);
}
.hotel-card-copy {
  padding: 1.4rem 1.5rem 1.55rem;
}
.hotel-card span {
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hotel-card h3 {
  margin: 1rem 0 0.85rem;
  font: 400 1.65rem/1.05 "Cormorant Garamond", serif;
}
.hotel-card p {
  margin: 0;
  color: #6d6559;
  font-size: 0.78rem;
}
h2 {
  font:
    400 clamp(2.2rem, 4vw, 4rem)/1 "Cormorant Garamond",
    serif;
  margin: 0.7rem 0 1.2rem;
}
.content p,
.brands p {
  color: #514c43;
}
.empty {
  border: 1px solid var(--line);
  padding: 1.4rem;
  margin-top: 2rem;
  color: #7a7164;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.brands {
  padding: 6rem 7vw;
  background: var(--ivory);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}
.chip {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  text-decoration: none;
  background: var(--paper);
  font-size: 0.82rem;
}
.chip:hover {
  border-color: var(--gold);
}
.next {
  padding: 2rem 7vw;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}
.next a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-grid {
  padding: 5rem 7vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.brand-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  min-height: 390px;
  overflow: hidden;
}
.brand-card figure {
  height: 210px;
  margin: 0;
  overflow: hidden;
  background: #ded7cc;
}
.brand-card figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
  transition: transform .55s ease;
}
.brand-card:hover figure img {
  transform: scale(1.035);
}
.brand-card-copy {
  padding: 1.5rem 1.7rem 1.7rem;
}
.brand-card span {
  color: var(--gold);
  font-size: 0.72rem;
}
.brand-card h2 {
  margin-top: 1rem;
}
.brand-card p {
  color: #5e574d;
}
.brand-card:hover {
  background: var(--ivory);
  border-color: var(--gold);
}
.map {
  padding: 5rem 7vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 8vw;
}
.map section {
  border-top: 1px solid var(--line);
  padding-top: 1.3rem;
}
.site-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}
.site-links a {
  text-decoration: none;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}
footer {
  display: flex;
  justify-content: space-between;
  padding: 2rem 5vw;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #686157;
}
@media (max-width: 760px) {
  nav {
    padding: 1rem 5vw;
  }
  .brand {
    font-size: 0.78rem;
  }
  .navlinks {
    gap: 0.7rem;
  }
  .navlinks a {
    font-size: 0.62rem;
  }
  .crumb {
    padding-inline: 6vw;
  }
  .detail-hero {
    padding: 4rem 6vw 5rem;
  }
  .visual-hero,
  .brand-visual-hero {
    grid-template-columns: 1fr;
    padding: 0;
    min-height: 0;
  }
  .visual-hero .hero-copy,
  .brand-visual-hero .hero-copy {
    padding: 4rem 6vw;
  }
  .hero-image {
    height: 62vh;
    min-height: 420px;
  }
  .brand-look {
    height: 68vh;
  }
  .content,
  .hotel-grid,
  .brand-grid,
  .map {
    grid-template-columns: 1fr;
    padding: 4rem 6vw;
  }
  .brands {
    padding: 4rem 6vw;
  }
  .hotel-section {
    padding: 4rem 6vw;
  }
  .next {
    padding: 1.5rem 6vw;
    gap: 1rem;
  }
  .site-links {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    gap: 1rem;
  }
}
