:root {
  --ink: #151515;
  --muted: #62676b;
  --paper: #ffffff;
  --soft: #f4f6f1;
  --cool: #edf4f2;
  --line: #dedbd2;
  --accent: #b51f2a;
  --accent-dark: #8e1821;
  --pine: #245348;
  --brass: #9a743e;
  --shadow: 0 18px 48px rgba(18, 24, 28, .12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 16px;
}

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 7px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  white-space: nowrap;
}

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

.brand span {
  color: var(--accent);
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.site-menu a {
  color: #303336;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: 23px 0 21px;
}

.site-menu a:hover,
.site-menu a.active {
  color: var(--accent);
  border-color: var(--accent);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.nav-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, .92);
  color: var(--accent);
}

.button.secondary:hover {
  color: #fff;
  background: var(--accent-dark);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button.ghost:hover {
  color: #fff;
  border-color: var(--pine);
  background: var(--pine);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-position: center;
  background-size: cover;
  position: relative;
  isolation: isolate;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .74), rgba(0, 0, 0, .36) 56%, rgba(0, 0, 0, .18));
}

.hero-home {
  background-image: url("../images/p01_03_1511x1600.jpg");
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 44px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.dark .eyebrow,
.cta-band .eyebrow {
  color: #fff;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
}

h1 {
  font-size: 64px;
  max-width: 860px;
}

h2 {
  font-size: 40px;
  max-width: 820px;
}

h3 {
  font-size: 22px;
}

.hero-lede {
  max-width: 820px;
  margin: 22px 0 0;
  font-size: 19px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 38px;
}

.stat {
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  border-radius: 8px;
}

.stat strong {
  display: block;
  color: var(--accent);
  font-size: 29px;
  line-height: 1;
  margin-bottom: 7px;
}

.section {
  padding: 82px 0;
}

.section.soft {
  background: var(--soft);
}

.section.cool {
  background: var(--cool);
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 540px;
  color: var(--muted);
}

.dark .section-head p,
.dark .muted,
.dark .note {
  color: #cfd6d4;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.split.wide-left {
  grid-template-columns: 1.16fr .84fr;
}

.copy p {
  color: #33383c;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 14px;
}

.visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
  box-shadow: var(--shadow);
}

.visual img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.visual.small img {
  min-height: 260px;
}

.caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 4px;
  color: #fff;
  background: rgba(0, 0, 0, .62);
  font-size: 14px;
}

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

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

.card,
.room-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(20, 24, 26, .06);
}

.card-media {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #ddd;
}

.room-card .card-media {
  height: 265px;
}

.card-body {
  padding: 22px;
}

.card-body .tag {
  color: var(--pine);
  font-weight: 900;
  margin: 8px 0 10px;
}

.card-body p {
  color: #3e4448;
}

.card-link {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  padding: 13px 15px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 4px;
}

.dark .info-list li {
  background: rgba(255, 255, 255, .08);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.feature {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature strong {
  display: block;
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 8px;
}

.dark .feature {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.photo-strip figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.photo-strip img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.photo-strip figcaption {
  padding: 10px 12px;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid #ece9e1;
  text-align: left;
}

th {
  background: var(--pine);
  color: #fff;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.page-hero {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  position: relative;
  isolation: isolate;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.page-hero.rooms {
  background-image: url("../images/p15_04_1355x904.jpg");
}

.page-hero.meeting {
  background-image: url("../images/p08_03_1357x951.jpg");
}

.page-hero.facilities {
  background-image: url("../images/p09_03_1351x950.jpg");
}

.page-hero.location {
  background-image: url("../images/p03_05_936x811.jpg");
}

.page-hero.contact {
  background-image: url("../images/p06_03_1351x950.jpg");
}

.page-hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 52px;
}

.page-hero h1 {
  font-size: 52px;
}

.breadcrumbs {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  margin-bottom: 12px;
}

.breadcrumbs a {
  text-decoration: none;
}

.contact-panel {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

.contact-card a.button {
  color: #fff;
}

.contact-card a.button.ghost {
  color: var(--ink);
}

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

label {
  display: grid;
  gap: 6px;
  color: #33383c;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfcac0;
  border-radius: 4px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 28px;
  margin-top: 12px;
  color: var(--pine);
  font-weight: 800;
}

.cta-band {
  padding: 72px 0;
  background: var(--pine);
  color: #fff;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer {
  background: #111;
  color: #ddd;
  padding: 46px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.footer-title {
  color: #fff;
  font-weight: 900;
  margin-bottom: 10px;
}

.copyright {
  width: min(var(--max), calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #aaa;
  font-size: 13px;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.map-frame {
  min-height: 420px;
}

.menu-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.menu-photos img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 1040px) {
  .site-menu {
    gap: 12px;
  }

  .hero-stats,
  .feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 860px) {
  .nav {
    width: min(100% - 28px, var(--max));
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 107px;
    display: grid;
    gap: 0;
    padding: 12px 20px 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(calc(-100% - 130px));
    transition: transform .2s ease;
  }

  body.nav-open .site-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

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

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 31px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .split,
  .split.wide-left,
  .contact-panel,
  .footer-grid,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .cta-band .container {
    display: grid;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

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

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

  .feature-list,
  .card-grid,
  .card-grid.two,
  .photo-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .topbar {
    font-size: 12px;
  }

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

  .brand small {
    display: none;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-inner,
  .page-hero-inner {
    width: min(100% - 28px, var(--max));
    padding-bottom: 36px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: 36px;
  }

  h2,
  .page-hero h1 {
    font-size: 28px;
  }

  .section {
    padding: 58px 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .card-media,
  .room-card .card-media,
  .photo-strip img,
  .menu-photos img {
    height: 220px;
  }
}
