:root {
  --ink: #100d0b;
  --black: #080706;
  --panel: #171310;
  --panel-soft: #211b16;
  --paper: #f7f2ea;
  --paper-2: #efe4d2;
  --burgundy: #651c1b;
  --burgundy-deep: #310c0c;
  --burgundy-soft: #812724;
  --gold: #c7a35c;
  --gold-bright: #f1d36f;
  --gold-dark: #8d6830;
  --bronze: #5c3b22;
  --text: #f7efe2;
  --muted: #b9aa95;
  --dark-text: #241b13;
  --line: rgba(199, 163, 92, 0.28);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", "Microsoft YaHei", serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(101, 28, 27, 0.34), transparent 30%),
    var(--black);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 64px);
  background:
    linear-gradient(180deg, rgba(22, 7, 7, 0.92), rgba(8, 7, 6, 0.2));
  border-bottom: 1px solid rgba(241, 211, 111, 0.16);
  backdrop-filter: blur(12px);
  transition: background 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(17, 6, 6, 0.95);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 268px;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 60px;
  height: 54px;
  padding: 4px;
  border: 1px solid rgba(241, 211, 111, 0.62);
  background: linear-gradient(145deg, rgba(101, 28, 27, 0.9), rgba(33, 10, 10, 0.92));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: #fff4d4;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font: 11px/1.2 Georgia, serif;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  flex: 1;
  color: rgba(255, 244, 212, 0.8);
  font-size: 14px;
}

.nav a:hover,
.text-link:hover {
  color: var(--gold-bright);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta,
.btn.primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 58%, #9b6c25);
  color: #180b07;
  box-shadow: 0 12px 28px rgba(101, 28, 27, 0.24);
}

.btn.ghost {
  background: rgba(101, 28, 27, 0.36);
  color: var(--text);
  border-color: rgba(241, 211, 111, 0.46);
}

.btn.dark {
  border-color: #26190d;
  background: #110d08;
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(247, 239, 226, 0.28);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 76px) 48px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-hotel.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 38%, rgba(101, 28, 27, 0.46), transparent 30%),
    linear-gradient(90deg, rgba(9, 3, 3, 0.94) 0%, rgba(18, 7, 6, 0.7) 39%, rgba(5, 4, 3, 0.14) 72%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.54) 0%, rgba(5, 4, 3, 0.12) 42%, rgba(5, 4, 3, 0.76) 100%);
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
  padding-bottom: 150px;
}

.hero-crest {
  display: grid;
  place-items: center;
  width: 112px;
  height: 106px;
  margin-bottom: 28px;
  padding: 7px;
  border: 1px solid rgba(241, 211, 111, 0.54);
  background:
    linear-gradient(145deg, rgba(101, 28, 27, 0.88), rgba(20, 7, 7, 0.74));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
}

.hero-crest img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 7.2vw, 104px);
  line-height: 1.02;
  font-weight: 800;
  color: #fff8e8;
  text-shadow: 0 2px 0 rgba(101, 28, 27, 0.7), 0 22px 54px rgba(0, 0, 0, 0.36);
}

.hero p {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(247, 239, 226, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.booking-panel {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 46px;
  left: clamp(18px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 1px;
  max-width: 920px;
  margin-left: auto;
  border: 1px solid rgba(241, 211, 111, 0.34);
  background:
    linear-gradient(135deg, rgba(49, 12, 12, 0.82), rgba(16, 13, 11, 0.82));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.booking-panel > * {
  min-height: 92px;
  padding: 20px 26px;
  background: rgba(255, 255, 255, 0.03);
}

.booking-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.booking-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--paper);
  font-size: clamp(18px, 2.5vw, 26px);
}

.booking-panel a {
  display: grid;
  place-items: center;
  height: 100%;
  min-width: 150px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 58%, #9b6c25);
  color: #160806;
  font-weight: 800;
}

.section {
  padding: clamp(76px, 9vw, 132px) clamp(18px, 5vw, 76px);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

h3 {
  margin: 0;
  font-size: 22px;
}

p,
li,
em {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-heading p,
.copy-block p,
.service-head p,
.cta-band p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.intro {
  background:
    radial-gradient(circle at 50% 0%, rgba(101, 28, 27, 0.24), transparent 34%),
    linear-gradient(180deg, #120707, #19120e);
  border-top: 1px solid rgba(241, 211, 111, 0.18);
}

.section-crest {
  width: 74px;
  height: 68px;
  object-fit: contain;
  margin: 0 auto 22px;
  padding: 5px;
  border: 1px solid rgba(241, 211, 111, 0.44);
  background: rgba(101, 28, 27, 0.7);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.intro-grid article {
  padding: clamp(26px, 4vw, 46px);
  background: linear-gradient(145deg, rgba(101, 28, 27, 0.24), rgba(255, 255, 255, 0.018));
}

.intro-grid span {
  color: var(--gold);
  font: 700 13px/1 Georgia, serif;
}

.intro-grid h3 {
  margin-top: 22px;
}

.intro-grid p,
.feature-list p,
.footer p,
.service-grid em {
  color: var(--muted);
  line-height: 1.75;
}

.rooms {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(101, 28, 27, 0.06), transparent 36%),
    var(--paper);
  color: var(--dark-text);
}

.media-block img,
.dining-layout img {
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border: 1px solid rgba(141, 104, 48, 0.18);
  box-shadow: 0 26px 58px rgba(42, 29, 17, 0.24);
}

.copy-block p {
  color: #6d5a45;
}

.copy-block ul {
  display: grid;
  gap: 14px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.copy-block li {
  position: relative;
  padding-left: 24px;
  color: #473929;
  line-height: 1.7;
}

.copy-block li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid var(--burgundy-soft);
  transform: rotate(45deg);
}

.text-link {
  color: var(--burgundy);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.dining {
  background:
    radial-gradient(circle at 78% 8%, rgba(199, 163, 92, 0.16), transparent 34%),
    radial-gradient(circle at 10% 18%, rgba(101, 28, 27, 0.28), transparent 30%),
    linear-gradient(180deg, #140808, #090807);
}

.dining-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 62px);
  align-items: stretch;
}

.feature-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature-list article {
  padding: clamp(24px, 4vw, 38px);
  background: linear-gradient(145deg, rgba(101, 28, 27, 0.18), rgba(255, 255, 255, 0.026));
}

.service {
  background:
    linear-gradient(180deg, #fbf7ef, #f1e7d6);
  color: var(--dark-text);
}

.service-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 44px;
}

.service-head p {
  color: #6d5a45;
}

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

.service-grid a {
  display: block;
  min-height: 210px;
  padding: 30px;
  border: 1px solid rgba(101, 28, 27, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.96));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(101, 28, 27, 0.13);
}

.service-grid span {
  color: var(--burgundy);
  font-weight: 800;
}

.service-grid strong {
  display: block;
  margin: 34px 0 12px;
  color: #1b130c;
  font-size: clamp(24px, 3vw, 34px);
  overflow-wrap: anywhere;
}

.service-grid em {
  display: block;
  font-style: normal;
  color: #6d5a45;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 76px);
  color: #fff5d7;
  background:
    radial-gradient(circle at 5% 50%, rgba(241, 211, 111, 0.22), transparent 26%),
    linear-gradient(135deg, #310c0c, #651c1b 48%, #9b6c25);
}

.cta-band > img {
  width: 92px;
  height: 86px;
  object-fit: contain;
  flex: 0 0 auto;
  padding: 6px;
  border: 1px solid rgba(241, 211, 111, 0.45);
  background: rgba(18, 6, 6, 0.45);
}

.cta-band h2 {
  max-width: 900px;
  font-size: clamp(30px, 4vw, 56px);
}

.cta-band p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 245, 215, 0.78);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 0% 0%, rgba(101, 28, 27, 0.28), transparent 38%),
    #070605;
  border-top: 1px solid rgba(241, 211, 111, 0.24);
}

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

.footer-brand img {
  width: 66px;
  height: 60px;
  object-fit: contain;
  padding: 5px;
  border: 1px solid rgba(241, 211, 111, 0.36);
  background: rgba(101, 28, 27, 0.58);
}

.footer strong {
  font-size: 22px;
}

.footer a {
  color: var(--gold);
}

@media (max-width: 920px) {
  .site-header {
    gap: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(8, 7, 6, 0.96);
    border: 1px solid var(--line);
  }

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

  .nav a {
    padding: 14px 10px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 840px;
  }

  .hero-content {
    padding-bottom: 252px;
  }

  .booking-panel,
  .intro-grid,
  .rooms,
  .dining-layout,
  .service-head,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    max-width: none;
  }

  .booking-panel > * {
    min-height: 76px;
  }

  .cta-band,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 780px;
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: 39px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 27px;
    line-height: 1.18;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-panel {
    left: 16px;
    right: 16px;
    bottom: 24px;
  }

  .section {
    padding-inline: 16px;
  }

  .service-grid a {
    min-height: 180px;
    padding: 24px;
  }

  .hero p,
  .section-heading p,
  .copy-block p,
  .service-head p,
  .cta-band p,
  .intro-grid p,
  .feature-list p {
    font-size: 15px;
  }
}
