:root {
  --bg: #f4efe6;
  --bg-deep: #e3d4bf;
  --surface: rgba(255, 251, 245, 0.78);
  --surface-solid: #fffaf2;
  --text: #1c2430;
  --muted: #5e6976;
  --navy: #21344d;
  --navy-2: #314b6b;
  --gold: #b98a47;
  --gold-soft: #e7d0a8;
  --line: rgba(33, 52, 77, 0.12);
  --shadow: 0 18px 60px rgba(24, 31, 41, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14.4px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 220, 165, 0.45), transparent 32%),
    linear-gradient(180deg, var(--bg) 0%, #efe5d6 42%, #eadcc8 100%);
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  filter: blur(4px);
}

.page-shell::before {
  top: 12vh;
  left: -8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(33, 52, 77, 0.08);
}

.page-shell::after {
  right: -6rem;
  top: 42vh;
  width: 16rem;
  height: 16rem;
  background: rgba(185, 138, 71, 0.12);
}

.hero,
main {
  position: relative;
  z-index: 1;
  width: min(1560px, calc(100% - 4rem));
  margin: 0 auto;
}

.footer__inner {
  width: min(1560px, calc(100% - 4rem));
  margin: 0 auto;
}

.hero {
  padding: 1.2rem 0 2.5rem;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.5;
  z-index: -1;
}

.hero__glow--left {
  width: 10rem;
  height: 10rem;
  left: -2rem;
  top: 8rem;
  background: rgba(33, 52, 77, 0.22);
}

.hero__glow--right {
  width: 13rem;
  height: 13rem;
  right: 0;
  top: 12rem;
  background: rgba(185, 138, 71, 0.22);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.4rem;
  border-radius: 1.6rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand__logo {
  width: 4.6rem;
  height: 4.6rem;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(33, 52, 77, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.85);
  background: white;
}

.brand__sub,
.section__tag,
.pill {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
}

.brand__eyebrow {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand__sub {
  color: var(--muted);
  margin-top: 0.35rem;
  letter-spacing: 0.08em;
}

.topbar__actions,
.cta-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.topbar__actions .button {
  font-size: 1.08rem;
  font-weight: 800;
  padding: 0.8rem 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.button__icon {
  display: inline-flex;
  flex: none;
  width: 1.15rem;
  height: 1.15rem;
}

.button:hover,
.contact-link:hover,
.amenity:hover,
.info-card:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  box-shadow: 0 14px 30px rgba(33, 52, 77, 0.2);
}

.button--secondary,
.button--ghost {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(33, 52, 77, 0.14);
  color: var(--navy);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.button--ghost.is-active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.rooms-cta {
  margin-top: 1.2rem;
}

.rooms-banner {
  margin-top: 2.8rem;
  padding: 1.8rem 2rem;
  border-radius: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 18px 44px rgba(33, 52, 77, 0.28);
}

.rooms-banner h2 {
  color: white;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.rooms-banner__text {
  max-width: 42rem;
}

.rooms-banner__sub {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
}

.rooms-banner__cta {
  flex: none;
  background: linear-gradient(135deg, var(--gold), #a5793a);
  color: white;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(185, 138, 71, 0.35);
}

.rooms-banner__cta:hover {
  box-shadow: 0 18px 36px rgba(185, 138, 71, 0.45);
}

.hero__content {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0 1.5rem;
}

.hero__content--single {
  grid-template-columns: 1fr;
}

.hero__copy,
.section,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.hero__copy {
  padding: 1.7rem;
  border-radius: 2rem;
}

.pill {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.5rem 0.85rem;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  font-weight: 700;
}

h1,
h2 {
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--navy);
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(2.05rem, 3.8vw, 4rem);
}

.hero__title {
  width: fit-content;
  max-width: 100%;
}

.hero__title-line {
  display: block;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.hero__lead,
.contact-card__text,
.info-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero__lead {
  max-width: 54ch;
  font-size: 1.12rem;
  margin: 0.85rem 0 1.25rem;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.highlight-card {
  padding: 0.85rem 0.9rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(33, 52, 77, 0.1);
}

.highlight-card span {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
}

.highlight-card p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(33, 52, 77, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(33, 52, 77, 0.12);
}

.stat__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold-soft);
}

.stat__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.stat__value {
  display: block;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
}

.stat__label {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.3;
}

.hero__visual {
  padding: 1rem;
  display: grid;
  place-items: center;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.logo-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: min(88%, 25rem);
  aspect-ratio: 1;
  margin: 1.5rem auto;
  border-radius: 50%;
  animation: logo-float 5s ease-in-out infinite;
}

.logo-orb::before {
  content: "";
  position: absolute;
  inset: -1.4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 138, 71, 0.28), transparent 70%);
  filter: blur(6px);
  animation: logo-pulse 5s ease-in-out infinite;
  z-index: -1;
}

.logo-orb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: white;
  box-shadow: 0 25px 55px rgba(33, 52, 77, 0.22), 0 0 0 6px rgba(255, 255, 255, 0.7);
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes logo-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-orb,
  .logo-orb::before {
    animation: none;
  }
}

.hero__frame {
  display: grid;
  place-items: center;
}

.hero__logo {
  width: min(100%, 36rem);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 25px 50px rgba(33, 52, 77, 0.18);
  background: white;
}

.hero__note {
  margin-top: 1.4rem;
  padding: 0 0.9rem 1.4rem;
  text-align: center;
}

.hero__note-name {
  margin: 0;
  color: var(--navy);
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.hero__note-role {
  margin: 0.3rem 0 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section {
  margin-top: 2.8rem;
  padding: 2rem;
  border-radius: 1.8rem;
}

.section__heading {
  margin-bottom: 1.2rem;
}

.rooms-intro {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  align-items: center;
  gap: 1.5rem;
}

.rooms-intro__visual {
  display: grid;
  place-items: center;
}

.rooms-intro__visual .logo-orb {
  width: min(70%, 16rem);
  margin: 0 auto;
}

.hero__rooms-heading {
  margin: 2rem 0 1.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(33, 52, 77, 0.1);
}

.hero__rooms-heading h2 {
  margin-top: 0.6rem;
}

.section__tag {
  display: inline-flex;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 0.6rem;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.info-card {
  padding: 1.5rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(33, 52, 77, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.info-card__icon {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.info-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.info-card:hover .info-card__icon {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 10px 20px rgba(33, 52, 77, 0.28);
}

.info-card__title {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 800;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.photo-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  gap: 0.4rem;
  border-radius: 1.2rem;
  border: 2px dashed rgba(33, 52, 77, 0.22);
  background: rgba(255, 255, 255, 0.45);
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}

.photo-placeholder span {
  font-size: 1.8rem;
}

.photo-placeholder p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.section--gallery {
  padding: 1.5rem;
}

.gallery-title {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.section--gallery .carousel {
  max-width: 56rem;
  margin: 0 auto;
}

.carousel {
  position: relative;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: 1.4rem;
}

.carousel__track {
  display: flex;
  transition: transform 360ms ease;
}

.carousel__slide {
  flex: none;
  width: 100%;
  padding: 0 0.4rem;
}

.carousel__slide .photo-placeholder {
  aspect-ratio: 16 / 9;
}

.carousel__img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1.2rem;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: white;
  color: var(--navy);
  border: 1px solid rgba(33, 52, 77, 0.14);
  box-shadow: 0 12px 26px rgba(33, 52, 77, 0.18);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.carousel__arrow svg {
  width: 1.3rem;
  height: 1.3rem;
}

.carousel__arrow:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-50%) scale(1.08);
}

.carousel__arrow--prev {
  left: -1.4rem;
}

.carousel__arrow--next {
  right: -1.4rem;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(33, 52, 77, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.carousel__dot.is-active {
  background: var(--navy);
  transform: scale(1.3);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(33, 52, 77, 0.1);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.amenity:hover {
  box-shadow: 0 10px 22px rgba(33, 52, 77, 0.12);
}

.amenity__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold-soft);
}

.amenity__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.location-card {
  overflow: hidden;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(33, 52, 77, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.location-card__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--gold-soft);
}

.location-card__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-card__body {
  padding: 1.5rem;
}

.location-card__title {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.location-card__address {
  margin: 0 0 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.location-card__directions {
  width: 100%;
}

.section.section--contact {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}

.contact-card {
  margin-top: 1.3rem;
  border-radius: 1.8rem;
  padding: 1.6rem;
}

.contact-card__intro {
  max-width: 40rem;
  margin-bottom: 1.6rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(33, 52, 77, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(33, 52, 77, 0.14);
}

.contact-method__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold-soft);
}

.contact-method__icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.contact-method__label {
  display: block;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-method__value {
  display: block;
  color: var(--navy);
  font-weight: 800;
  margin-top: 0.15rem;
  overflow-wrap: anywhere;
}

.contact-card__visit {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(33, 52, 77, 0.12);
}

.contact-card__visit-label {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-card__visit-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.9rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.location-pill svg {
  width: 1.05rem;
  height: 1.05rem;
}

.location-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(33, 52, 77, 0.22);
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 3.6rem;
  padding: 1.4rem 0 0;
  background: linear-gradient(160deg, var(--navy), #17233490);
  background-color: var(--navy);
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer__logo {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  object-fit: cover;
  background: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.footer__title {
  margin: 0;
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
}

.footer__tagline {
  margin: 0.1rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-items: baseline;
  justify-content: flex-end;
  align-self: flex-start;
  margin-top: -0.3rem;
  font-size: 0.92rem;
  text-align: right;
}

.footer__contact-label {
  margin: 0;
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.footer__contact-icon {
  flex: none;
  width: 1rem;
  height: 1rem;
}

.footer__contact a:hover {
  color: var(--gold-soft);
}

.footer__bottom {
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.footer__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.founder-story {
  display: block;
  overflow: hidden;
}

.founder-story p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.founder-story__signoff {
  color: var(--navy);
  font-weight: 700;
}

.founder-quote {
  float: right;
  width: 17rem;
  margin: 0 0 1.2rem 1.8rem;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 1.2rem 1.2rem 0;
  background: rgba(255, 255, 255, 0.55);
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.55;
}

.founder-quote__attribution {
  display: block;
  margin-top: 0.9rem;
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}



@media (min-width: 1400px) {
  .hero__content {
    gap: 2.5rem;
    padding: 2.6rem 0 2rem;
  }

  .hero__copy {
    padding: 2.4rem;
  }

  .hero__stats {
    gap: 1rem;
    margin-top: 1.8rem;
  }

  .stat {
    padding: 1.1rem 1.2rem;
  }

  .section {
    padding: 2.2rem 2.4rem;
  }

  .contact-card {
    padding: 2.2rem 2.4rem;
  }
}

@media (max-width: 920px) {
  .hero__content,
  .rooms-intro,
  .card-grid,
  .location-grid,
  .contact-card,
  .photo-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

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

  .founder-quote {
    float: none;
    width: 100%;
    margin: 0 0 1.2rem;
  }

  .hero__visual {
    order: -1;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }

  .footer__contact {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 700px) {
  .hero,
  main,
  .footer__inner {
    width: min(100% - 1rem, 1560px);
  }

  .carousel__arrow--prev {
    left: 0.4rem;
  }

  .carousel__arrow--next {
    right: 0.4rem;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar__actions,
  .cta-row,
  .hero__highlights {
    width: 100%;
  }

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

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

  .hero__copy,
  .section,
  .contact-card {
    border-radius: 1.4rem;
  }

  .hero__copy {
    padding: 1.3rem;
  }

  .section {
    padding: 1.2rem;
  }

  .cta-row .button,
  .topbar__actions .button {
    flex: 1 1 auto;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .button {
    width: 100%;
  }

  .topbar__actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .topbar__actions .button {
    text-align: center;
  }

  .founder-quote {
    padding: 1.1rem 1.2rem;
  }
}
