:root {
  --ink: #333333;
  --muted: #666666;
  --tertiary: #8a8580;
  --paper: #ffffff;
  --cream: #f7f4ef;
  --line: #ded8cf;
  --brand: #8a2f2b;
  --brand-dark: #5d201d;
  --cedar: #b96d2e;
  --focus: #1f6feb;
  --shadow: 0 22px 60px rgba(39, 35, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(93, 89, 85, 0.16);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 236px;
  color: var(--brand-dark);
}

.brand img {
  width: 54px;
  height: 54px;
  padding: 4px;
  border-radius: 4px;
  background: #1d1a18;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(93, 32, 29, 0.12));
}

.brand > span {
  display: grid;
}

.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand-subtitle {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 34px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a,
.header-phone,
.text-link {
  text-decoration: none;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.header-phone {
  justify-self: end;
  color: var(--brand);
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 84px));
  overflow: hidden;
  background: var(--ink);
}

.hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 26, 23, 0.82), rgba(31, 26, 23, 0.5) 45%, rgba(31, 26, 23, 0.18)),
    url("assets/building-exterior.jpg") center / cover;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0;
  color: #fff;
}

.hero__content {
  align-self: center;
}

.availability-panel {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(29, 26, 24, 0.72);
  backdrop-filter: blur(14px);
}

.availability-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.availability-panel li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.5;
}

.availability-panel li::before {
  width: 18px;
  height: 2px;
  margin-top: 11px;
  background: #f2c99b;
  content: "";
}

.panel-kicker {
  margin: 0 0 12px;
  color: #f2c99b;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.hero .eyebrow {
  color: #f2c99b;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 3.9rem);
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.88rem, 3vw, 2.65rem);
  line-height: 1.16;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.28;
}

.hero__copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  line-height: 1.62;
}

.hero__actions,
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.button--primary {
  background: var(--brand);
  color: #fff;
}

.button--primary:hover {
  background: var(--brand-dark);
}

.button--secondary {
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-dark);
}

.button--secondary:hover {
  background: var(--cream);
}

.trust-strip {
  padding: 0 clamp(18px, 4vw, 56px);
  background: var(--brand-dark);
  color: #fff;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip__inner div {
  display: grid;
  gap: 2px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip strong {
  font-size: 0.98rem;
  line-height: 1.4;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.45;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 56px);
}

.section--muted {
  background: var(--cream);
}

.section--dark {
  background: var(--brand-dark);
  color: #fff;
}

.section__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro__grid,
.reviews__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.14rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.amenities-list li {
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(39, 35, 31, 0.06);
  font-weight: 800;
}

.amenities-list li::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 16px;
  background: var(--brand);
}

.suites__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.suite-card,
.feature-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.suite-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.suite-card img,
.feature-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.suite-card > div,
.feature-panel__body {
  padding: clamp(28px, 4vw, 52px);
}

.suite-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  overflow-wrap: break-word;
}

.suite-card p,
.feature-panel p {
  color: var(--muted);
}

.feature-panel {
  display: flex;
  flex-direction: column;
}

.feature-panel img {
  min-height: 260px;
  aspect-ratio: 4 / 3;
}

.text-link {
  color: var(--brand);
  font-weight: 850;
}

.text-link--light {
  color: #f2c99b;
}

.text-link:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.text-link--light:hover {
  color: #fff;
}

.reviews {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-actions {
  justify-content: flex-end;
}

.reviews p:not(.eyebrow) {
  color: var(--muted);
}

.contact .eyebrow {
  color: #f2c99b;
}

.contact p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-style: normal;
}

.contact-card a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.site-footer {
  padding: 28px 18px;
  background: #1d1a18;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 0 10px 12px;
    border: 0;
    background: transparent;
    color: var(--brand-dark);
    font: inherit;
    font-weight: 850;
  }

  .menu-toggle__bar,
  .menu-toggle__bar::before,
  .menu-toggle__bar::after {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
  }

  .menu-toggle__bar {
    position: relative;
  }

  .menu-toggle__bar::before,
  .menu-toggle__bar::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .menu-toggle__bar::before {
    top: -7px;
  }

  .menu-toggle__bar::after {
    top: 7px;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .header-phone {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .availability-panel {
    max-width: 560px;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .trust-strip__inner div {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .amenities-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro__grid,
  .reviews__grid,
  .contact__grid,
  .suites__grid,
  .suite-card {
    grid-template-columns: 1fr;
  }

  .review-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 78px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-mark {
    font-size: 1.22rem;
  }

  .brand-subtitle {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: auto;
  }

  .hero__image {
    background:
      linear-gradient(180deg, rgba(31, 26, 23, 0.9), rgba(31, 26, 23, 0.52)),
      url("assets/building-exterior.jpg") center / cover;
  }

  .hero__inner {
    width: auto;
    margin: 0;
    padding: 64px 18px 48px;
  }

  .availability-panel {
    padding: 20px;
  }

  .hero__actions,
  .review-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }

  .suite-card img,
  .feature-panel img {
    min-height: 260px;
  }

  .contact-card a {
    font-size: 1.08rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
