:root {
  --ink: #252525;
  --black: #050505;
  --muted: #5d5d5d;
  --paper: #ffffff;
  --linen: #f7f5ef;
  --line: #e8e1d0;
  --gold: #b58a19;
  --deep-gold: #8f6b12;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 2px solid var(--gold);
  backdrop-filter: blur(16px);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  width: auto;
  height: auto;
  background: transparent;
  color: var(--gold);
  border-radius: 0;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  font-variant-numeric: lining-nums;
}

.brand-mark span {
  display: inline-block;
  font: inherit;
  line-height: 0.9;
  text-align: center;
  transform: none;
}

.brand-mark span:nth-child(4) {
  margin-left: -0.04em;
}

.brand-word {
  font-size: 0.76rem;
}

nav {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

nav a {
  padding: 8px 0;
}

.nav-cta {
  color: var(--gold);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.76) 52%, rgba(255, 255, 255, 0.28)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  width: min(860px, calc(100% - clamp(32px, 8vw, 112px)));
  margin: clamp(28px, 5vw, 64px);
  padding: clamp(34px, 6vw, 70px);
  color: var(--ink);
  border: 5px solid var(--gold);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-content::before,
.hero-content::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(181, 138, 25, 0.45);
  pointer-events: none;
}

.hero-content::after {
  inset: auto 50%;
  bottom: -12px;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  background: var(--gold);
  border: 0;
  transform: rotate(45deg);
}

.hero-lockup {
  display: grid;
  justify-items: center;
  max-width: 720px;
  margin-bottom: 34px;
  text-align: center;
}

.hero-logo {
  color: var(--gold);
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(4.9rem, 13vw, 9.7rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  font-variant-numeric: lining-nums;
}

.hero-logo span {
  display: inline-block;
  font: inherit;
  line-height: 0.9;
  text-align: center;
  transform: none;
}

.hero-logo span:nth-child(4) {
  margin-left: -0.04em;
}

.hero-subtitle {
  color: var(--ink);
  font-size: clamp(1rem, 3.2vw, 2.05rem);
  font-weight: 400;
  letter-spacing: clamp(0.22em, 1.4vw, 0.58em);
  text-transform: uppercase;
}

.diamond {
  width: 13px;
  height: 13px;
  margin: 22px 0 18px;
  background: var(--gold);
  transform: rotate(45deg);
}

.ruled-label {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--gold);
  font-size: clamp(1rem, 2vw, 1.42rem);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ruled-label::before,
.ruled-label::after {
  content: "";
  width: clamp(54px, 10vw, 126px);
  height: 2px;
  background: var(--gold);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6.8vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--black);
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--black);
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.booking-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}

.direct-offer {
  padding: 18px clamp(18px, 5vw, 72px);
  background: var(--black);
  color: var(--white);
  border-block: 5px solid var(--gold);
}

.offer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 22px);
  min-height: 76px;
  text-align: center;
}

.offer-inner::before,
.offer-inner::after {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  background: var(--gold);
  transform: rotate(45deg);
}

.offer-kicker,
.offer-inner span:last-of-type,
.offer-inner a {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-kicker,
.offer-inner a {
  color: var(--gold);
}

.offer-inner strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}

.offer-inner span:last-of-type {
  color: rgba(255, 255, 255, 0.78);
}

.offer-inner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--black);
}

.primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.primary.outline {
  background: var(--white);
  color: var(--gold);
}

.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--gold);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 2px solid var(--gold);
  background: var(--white);
}

.quick-facts div {
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.quick-facts strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  color: var(--gold);
}

.quick-facts span {
  color: var(--muted);
}

.section,
.gallery-band,
.reviews,
.booking {
  padding: clamp(58px, 9vw, 118px) clamp(20px, 6vw, 72px);
}

.split,
.location {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.section-copy p,
.location p,
.booking-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.amenity-grid article,
blockquote,
.location-panel {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.amenity-grid article {
  min-height: 190px;
  padding: 24px;
}

.amenity-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--gold);
}

.amenity-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-grid p {
  color: var(--muted);
}

.gallery-band {
  background: var(--black);
  color: var(--white);
  border-block: 5px solid var(--gold);
}

.gallery-band h2 {
  color: var(--white);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 30px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-auto-rows: 230px;
  gap: 12px;
}

.gallery img {
  height: 100%;
  object-fit: cover;
  border: 2px solid var(--gold);
  border-radius: 0;
}

.gallery img:first-child {
  grid-row: span 2;
}

.gallery img:nth-child(4) {
  grid-column: span 2;
}

.gallery img:nth-child(7) {
  grid-column: span 2;
}

.location {
  background: var(--linen);
  border-bottom: 2px solid var(--gold);
}

.location-stack {
  display: grid;
  grid-template-columns: minmax(190px, 0.45fr) minmax(260px, 0.55fr);
  gap: 14px;
  align-items: stretch;
}

.location-stack img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
}

.location-panel {
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(26px, 5vw, 44px);
}

.location-panel span {
  color: var(--muted);
}

.location-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  color: var(--black);
}

.location-panel .button {
  width: max-content;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 28px;
  position: relative;
}

blockquote::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--gold);
}

blockquote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.32;
  color: var(--black);
}

cite {
  color: var(--muted);
  font-style: normal;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(340px, 1fr);
  gap: 28px;
  align-items: center;
  background: var(--white);
  border-top: 2px solid var(--gold);
}

.booking-form {
  justify-content: flex-end;
  padding: 20px;
  background: var(--paper);
  border: 2px solid var(--gold);
  border-radius: 0;
}

.email-fallback {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  padding: 22px;
  background: var(--linen);
  border: 2px solid var(--gold);
}

.email-fallback[hidden] {
  display: none;
}

.email-fallback h3 {
  margin-bottom: 8px;
}

.email-fallback p {
  margin-bottom: 0;
  color: var(--muted);
}

.email-fallback a {
  color: var(--gold);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.email-fallback textarea {
  width: 100%;
  min-height: 230px;
  resize: vertical;
  border: 1px solid var(--gold);
  padding: 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}

.email-fallback .button {
  width: max-content;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 20px;
}

.book-now-link {
  display: inline-flex;
  width: max-content;
  margin-top: 4px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-actions a {
  color: var(--gold);
  font-weight: 850;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

label {
  display: grid;
  gap: 6px;
  min-width: 150px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select {
  height: 46px;
  width: 100%;
  border: 1px solid var(--gold);
  border-radius: 0;
  padding: 0 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 72px);
  background: var(--black);
  color: var(--white);
  border-top: 5px solid var(--gold);
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  text-align: right;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 18px;
  }

  .offer-inner {
    display: grid;
    gap: 10px;
    padding: 14px 0;
  }

  .offer-inner::before,
  .offer-inner::after {
    justify-self: center;
  }

  .quick-facts,
  .split,
  .location,
  .review-grid,
  .booking {
    grid-template-columns: 1fr;
  }

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

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

  .location-stack {
    grid-template-columns: 1fr;
  }

  .booking-form {
    justify-content: stretch;
  }
}

@media (max-width: 620px) {
  .brand span:last-child {
    display: none;
  }

  .quick-facts {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    padding: 34px 20px;
    border-width: 3px;
  }

  .hero-subtitle {
    letter-spacing: 0.22em;
  }

  .ruled-label {
    gap: 12px;
    font-size: 0.9rem;
  }

  .ruled-label::before,
  .ruled-label::after {
    width: 32px;
  }

  .quick-facts div {
    min-height: 112px;
    padding: 18px;
  }

  .amenity-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-rows: 260px;
  }

  .gallery img:first-child {
    grid-row: span 1;
  }

  .gallery img:nth-child(4),
  .gallery img:nth-child(7) {
    grid-column: span 1;
  }

  label,
  .booking-form .button,
  .hero-actions .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
