:root {
  --ink: #323e48;
  --ink-dark: #26343d;
  --ink-deep: #1f2c34;
  --paper: #f7f6f3;
  --paper-soft: #fbfaf7;
  --sand: #d9c79e;
  --sand-dark: #bda978;
  --white: #ffffff;
  --muted: #68747b;
  --line: rgba(50, 62, 72, 0.2);
  --serif: "PT Serif", Georgia, "Times New Roman", serif;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: Montserrat, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.74;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(100% - 64px, 1170px);
  margin: 0 auto;
}

.container.narrow {
  width: min(100% - 64px, 1170px);
}

.site-header {
  background: var(--ink);
  color: var(--sand);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(420px, 470px) minmax(0, 1fr);
  align-items: stretch;
  width: min(100% - 64px, 1540px);
  min-height: 230px;
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: var(--white);
}

.brand-mark {
  display: grid;
  width: 178px;
  height: 82px;
  place-items: center;
  margin: 0 0 -2px;
}

.brand-mark svg {
  width: 100%;
  height: auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.brand-text {
  display: grid;
  gap: 4px;
  text-align: center;
}

.brand-text strong {
  display: block;
  font-family: var(--display);
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 0.92;
  text-transform: capitalize;
  white-space: nowrap;
}

.brand-text small {
  color: var(--sand);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 11px;
  line-height: 1;
  text-transform: uppercase;
}

.header-right {
  position: relative;
  display: grid;
  grid-template-rows: 86px 92px;
  align-content: center;
  align-self: stretch;
  padding-left: 56px;
}

.header-right::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 118px;
  width: 2px;
  height: 75px;
  background: rgba(255, 255, 255, 0.82);
}

.quick-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--white);
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
}

.demo-phone {
  color: var(--white);
}

.icon-link {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.icon-link:hover {
  color: var(--sand);
  transform: translateY(-1px);
}

.social-icon {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
}

.social-icon--stroke {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
  color: var(--sand);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 92px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-dropdown {
  position: absolute;
  left: 50%;
  top: 92px;
  z-index: 20;
  display: grid;
  width: 405px;
  min-height: 408px;
  padding: 42px 34px 38px;
  background:
    linear-gradient(rgba(50, 62, 72, 0.96), rgba(50, 62, 72, 0.96)),
    url("../images/generated/hero-panorama.png") center / cover;
  box-shadow: 0 26px 44px rgba(21, 30, 36, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-item--has-menu:hover .nav-dropdown,
.nav-item--has-menu:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  justify-content: flex-end;
  min-height: 54px;
  color: var(--sand);
  font-size: 13px;
  letter-spacing: 4px;
  text-align: right;
}

.site-nav .book-link {
  min-height: 60px;
  padding: 0 44px;
  background: var(--sand);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: 616px;
  overflow: hidden;
  background: var(--ink-deep);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 520ms ease;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 32, 37, 0.08), rgba(23, 32, 37, 0));
}

.hero-arrow,
.quote-arrow {
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-left: 4px solid rgba(255, 255, 255, 0.95);
  border-bottom: 4px solid rgba(255, 255, 255, 0.95);
  background: transparent;
}

.hero-arrow--left,
.quote-arrow--left {
  left: 36px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hero-arrow--right,
.quote-arrow--right {
  right: 36px;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}

.intro-section {
  padding: 116px 0 102px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 22px;
  color: var(--sand);
  font-size: 20px;
  letter-spacing: 0.6px;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 1px;
}

h1,
.perks-section h2,
.section-heading h2 {
  font-size: 45px;
  line-height: 1.24;
}

.intro-section h1 {
  margin-bottom: 18px;
}

.intro-copy {
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}

.intro-copy p {
  margin: 0 0 16px;
}

.note-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  max-width: 850px;
  margin: 38px auto 0;
  text-align: left;
}

.note-grid strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.note-grid p {
  margin: 0;
}

.divider,
.light-divider {
  position: relative;
  width: 112px;
  height: 24px;
  margin: 18px auto 30px;
}

.divider::before,
.divider::after,
.light-divider::before,
.light-divider::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 48px;
  height: 1px;
  background: var(--ink);
}

.divider::before,
.light-divider::before {
  left: 0;
}

.divider::after,
.light-divider::after {
  right: 0;
}

.divider {
  color: var(--ink);
}

.divider::after {
  box-shadow: -57px 0 0 transparent;
}

.divider::before {
  box-shadow: 57px 0 0 transparent;
}

.divider::selection {
  background: transparent;
}

.divider::marker {
  content: "";
}

.divider,
.light-divider {
  background:
    linear-gradient(120deg, transparent 43%, currentColor 44% 56%, transparent 57%) center 5px / 12px 14px no-repeat;
}

.light-divider {
  color: var(--sand);
}

.light-divider::before,
.light-divider::after {
  background: var(--sand);
}

.closing-line {
  max-width: 840px;
  margin: 54px auto 42px;
}

.play-line {
  margin: 0 0 24px;
  font-size: 18px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.dark-button,
.lodging-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 37px;
  padding: 0 42px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.dark-button:hover,
.lodging-card a:hover,
.site-nav .book-link:hover {
  background: var(--sand-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.lodging-section {
  background:
    linear-gradient(rgba(31, 44, 52, 0.92), rgba(31, 44, 52, 0.92)),
    url("../images/generated/rooms-bg.png") center / cover;
  color: var(--sand);
}

.section-overlay {
  padding: 83px 0 74px;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading p {
  margin: 0 auto 14px;
  max-width: 880px;
}

.section-heading--dark p {
  color: #e8e0c9;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: min(100%, 1140px);
  margin: 0 auto;
}

.lodging-card {
  background: rgba(50, 62, 72, 0.92);
  text-align: center;
}

.lodging-card img {
  width: 100%;
  aspect-ratio: 357 / 198;
  object-fit: cover;
}

.lodging-card div {
  min-height: 180px;
  padding: 20px 24px 28px;
}

.lodging-card h3 {
  color: var(--sand);
  font-size: 35px;
  letter-spacing: 3px;
  line-height: 1.25;
}

.lodging-card p {
  margin: 4px 0 18px;
  color: var(--white);
  font-size: 12px;
}

.lodging-card a {
  min-width: 166px;
  background: var(--sand);
  color: var(--white);
}

.perks-section {
  padding: 116px 0 112px;
  background: var(--paper-soft);
  text-align: center;
}

.amenities-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 70px;
  max-width: 990px;
  margin: 0 auto;
  text-align: left;
}

.amenity-callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 26px;
  row-gap: 28px;
  padding-top: 15px;
}

.amenity-callouts span {
  position: relative;
  padding-left: 22px;
  font-family: var(--display);
  font-size: 38px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.amenity-callouts span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink);
}

.amenity-list {
  margin: 0;
  padding-left: 22px;
  color: var(--ink);
  line-height: 1.55;
}

.quote-band {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(217, 199, 158, 0.72), rgba(217, 199, 158, 0.72)),
    url("../images/generated/testimonial-bg.png") center / cover;
  text-align: center;
}

.quote-band blockquote {
  max-width: 1040px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 35px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.42;
}

.quote-band cite {
  display: block;
  margin-top: 48px;
  font-family: var(--serif);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  text-align: right;
}

.quote-arrow {
  border-color: rgba(255, 255, 255, 0.9);
}

.difference-section {
  background:
    linear-gradient(rgba(31, 44, 52, 0.9), rgba(31, 44, 52, 0.9)),
    url("../images/generated/difference-bg.png") center / cover;
  color: var(--sand);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto;
}

.difference-grid article {
  min-height: 230px;
  padding: 34px 28px;
  background: rgba(67, 82, 93, 0.72);
  text-align: center;
}

.difference-grid h3 {
  margin-bottom: 22px;
  font-size: 28px;
  font-style: italic;
  letter-spacing: 3px;
}

.difference-grid p {
  margin: 0;
  color: #f3ecda;
  font-size: 13px;
  line-height: 1.78;
}

.subpage-hero {
  min-height: 430px;
  padding: 122px 0 96px;
  background:
    linear-gradient(rgba(31, 44, 52, 0.78), rgba(31, 44, 52, 0.86)),
    url("../images/generated/hero-panorama.png") center / cover;
  color: var(--white);
  text-align: center;
}

.subpage-hero h1 {
  color: var(--sand);
  font-size: 52px;
}

.subpage-hero p:last-child {
  max-width: 790px;
  margin: 22px auto 0;
  color: #f5eedb;
  font-size: 17px;
}

.content-section {
  padding: 86px 0 104px;
  background: var(--paper-soft);
}

.page-grid {
  display: grid;
  gap: 34px;
}

.content-block {
  padding: 0 70px;
  text-align: center;
}

.content-block h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 36px;
}

.content-block p {
  max-width: 900px;
  margin: 0 auto 16px;
}

.content-block ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 42px;
  max-width: 860px;
  margin: 18px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.content-block li {
  position: relative;
  padding-left: 20px;
}

.content-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand-dark);
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 24px auto 0;
}

.info-card {
  min-height: 152px;
  padding: 26px 24px;
  background: var(--ink);
  color: #f2ead7;
  text-align: center;
}

.info-card h3 {
  margin-bottom: 10px;
  color: var(--sand);
  font-size: 24px;
  font-style: italic;
  letter-spacing: 2px;
}

.info-card p {
  margin: 0;
  font-size: 13px;
}

.demo-contact-form {
  display: grid;
  gap: 16px;
  width: min(100%, 680px);
  margin: 12px auto 0;
  padding: 36px;
  background: var(--ink);
  color: var(--sand);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.demo-contact-form label {
  display: grid;
  gap: 8px;
}

.demo-contact-form input,
.demo-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(217, 199, 158, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: 15px var(--serif);
  letter-spacing: 0;
  text-transform: none;
}

.demo-contact-form input {
  height: 44px;
  padding: 0 12px;
}

.demo-contact-form textarea {
  resize: vertical;
  min-height: 128px;
  padding: 12px;
}

.demo-contact-form button {
  justify-self: center;
  min-height: 40px;
  padding: 0 34px;
  background: var(--sand);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-title-band {
  position: relative;
  padding: 100px 0 60px;
  margin: 0 0 50px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(217, 199, 158, 0.68), rgba(217, 199, 158, 0.68)),
    url("../images/reference-placeholders/ref-title-area-bg.jpg") top center / cover no-repeat;
  text-align: center;
}

.page-title-band h1 {
  color: var(--ink);
  font-family: var(--display);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.25;
  text-transform: uppercase;
}

.treesep {
  display: block;
  width: 100%;
  height: 17px;
  margin: 15px auto 30px;
  background: url("../images/reference-placeholders/ref-tree-sep.png") top center / auto 17px no-repeat;
}

.classic-content {
  padding: 0 0 50px;
  background: var(--paper-soft);
  color: var(--ink);
  font-size: 17px;
  line-height: 28px;
}

.classic-content .container {
  width: min(100% - 64px, 1500px);
}

.classic-text,
.classic-callout,
.classic-columns,
.classic-list-block,
.policy-columns,
.qa-groups,
.staff-section,
.contact-layout {
  margin: 0 auto 34px;
}

.classic-text--center {
  text-align: center;
}

.classic-text h2,
.qa-groups h2 {
  margin: 40px 0 25px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 45px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.25;
}

.classic-text h4 {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
}

.classic-text p,
.classic-callout p,
.classic-column p,
.classic-list-block li,
.policy-list li,
.qa-answer p,
.staff-card p,
.contact-details p {
  margin: 0 0 20px;
}

.classic-callout {
  max-width: 1080px;
  padding: 0 26px;
  border: 0;
  text-align: center;
}

.classic-callout p {
  font-size: 19px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.5;
}

.classic-callout--season-intro {
  max-width: 1500px;
  margin-bottom: 48px;
}

.classic-callout--season-intro p {
  font-family: var(--display);
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.5;
}

.classic-image {
  margin: 30px auto 34px;
}

.classic-image img {
  width: 100%;
  height: auto;
}

.classic-image--wide {
  max-width: 100%;
}

.classic-image--tall {
  max-width: 300px;
}

.classic-image--history {
  max-width: 500px;
}

.classic-image figcaption,
.classic-caption {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.classic-columns--with-heading > h3,
.classic-list-block > h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.25;
  text-transform: uppercase;
}

.classic-column-grid {
  display: grid;
  gap: 30px;
}

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

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

.classic-column h3 {
  margin: 30px 0 20px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.25;
  text-transform: uppercase;
}

.classic-column hr {
  width: 100%;
  height: 1px;
  margin: 0 0 17px;
  border: 0;
  background: var(--line);
}

.classic-column ul,
.classic-list-block ul {
  margin: 0;
  padding-left: 28px;
}

.classic-column li,
.classic-list-block li {
  padding-left: 5px;
  font-size: 18px;
  line-height: 28px;
}

.classic-columns--seasonal .classic-column {
  text-align: left;
}

.classic-columns--seasonal .classic-column h3 {
  margin: 0 0 22px;
  color: var(--sand);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-align: center;
}

.classic-columns--seasonal .classic-column hr {
  display: none;
}

.classic-columns--seasonal .classic-column p {
  font-size: 17px;
  font-style: italic;
  line-height: 28px;
}

.classic-list-block--2 ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 38px;
}

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

.policy-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-list li {
  position: relative;
  min-height: 54px;
  padding: 15px 18px 15px 44px;
  border: 1px solid rgba(50, 62, 72, 0.16);
  background: var(--white);
  font-size: 16px;
  line-height: 1.48;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand-dark);
}

.qa-groups h2 {
  margin-top: 8px;
}

.qa-panel-group {
  margin-bottom: 28px;
}

.qa-panel {
  border: 1px solid rgba(50, 62, 72, 0.16);
  background: var(--white);
}

.qa-panel + .qa-panel {
  border-top: 0;
}

.qa-question {
  position: relative;
  width: 100%;
  min-height: 52px;
  padding: 14px 52px 14px 18px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.qa-question::after {
  content: "+";
  position: absolute;
  right: 19px;
  top: 13px;
  color: var(--sand-dark);
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1;
}

.qa-question[aria-expanded="true"]::after {
  content: "-";
}

.qa-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--ink);
  font-size: 16px;
}

.qa-answer.is-open {
  display: block;
}

.staff-section {
  display: grid;
  gap: 0;
}

.staff-card {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.staff-card:not(.staff-card--featured) {
  grid-template-columns: 1fr;
}

.staff-card:not(.staff-card--featured) > div:first-child {
  display: none;
}

.staff-card h6 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.staff-card p {
  font-size: 16px;
  line-height: 1.62;
}

.staff-note {
  margin: 24px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact-details h3,
.classic-contact-form h3 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 24px;
}

.contact-details h5 {
  margin: 26px 0 6px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.contact-details p {
  font-size: 16px;
  line-height: 1.38;
}

.classic-contact-form {
  display: grid;
  gap: 16px;
}

.classic-contact-form .name-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.classic-contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
}

.classic-contact-form input,
.classic-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(50, 62, 72, 0.24);
  background: var(--white);
  color: var(--ink);
  font: 16px var(--serif);
}

.classic-contact-form input {
  height: 42px;
  padding: 0 10px;
}

.classic-contact-form textarea {
  min-height: 140px;
  padding: 10px;
  resize: vertical;
}

.classic-contact-form button {
  justify-self: start;
  min-height: 40px;
  padding: 0 28px;
  background: var(--sand);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 360px 360px 360px;
  gap: 30px;
  width: min(100% - 64px, 1140px);
  margin: 0 auto;
  text-align: center;
}

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

.brand--footer .brand-mark {
  width: 104px;
  height: 58px;
  margin: 0 0 8px;
}

.brand--footer .brand-text strong {
  font-size: 29px;
}

.brand--footer .brand-text small {
  font-size: 9px;
  letter-spacing: 6px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--sand);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
}

.site-footer .light-divider {
  margin-bottom: 22px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  color: var(--white);
}

.rating-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.rating-badges span {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  background: #e4d4a5;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 107px);
  justify-content: center;
  gap: 20px;
}

.social-grid img {
  width: 107px;
  height: 107px;
  object-fit: cover;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: min(100% - 64px, 1140px);
  margin: 52px auto 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #e9e4d4;
  font-size: 11px;
}

@keyframes heroDrift {
  from {
    transform: scale(1.015);
  }
  to {
    transform: scale(1.055);
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 360px 1fr;
    width: min(100% - 32px, 1100px);
    min-height: 210px;
  }

  .brand-text strong {
    font-size: 40px;
  }

  .brand-text small {
    font-size: 11px;
    letter-spacing: 8px;
  }

  .brand-mark {
    width: 142px;
    height: 68px;
    transform: none;
  }

  .header-right {
    grid-template-rows: 76px 84px;
    padding-left: 40px;
  }

  .site-nav {
    gap: 18px;
    font-size: 11px;
    letter-spacing: 2.5px;
  }

  .site-nav .book-link {
    min-height: 48px;
    padding: 0 24px;
  }

  .header-right::before {
    left: 18px;
    top: 104px;
    height: 64px;
  }

  .quick-links {
    gap: 14px;
    font-size: 13px;
  }

  .nav-dropdown {
    width: 360px;
  }

  .room-grid,
  .difference-grid {
    gap: 20px;
  }

  .amenity-callouts span {
    font-size: 32px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    grid-template-rows: 73px auto;
    grid-template-areas:
      "brand toggle"
      "nav nav";
    align-items: start;
    width: 100%;
    min-height: 73px;
    padding: 0 15px;
  }

  .brand {
    grid-area: brand;
    flex-direction: column;
    width: 230px;
    align-items: center;
    justify-content: flex-start;
  }

  .brand-mark {
    width: 72px;
    height: 31px;
    margin: 5px 0 -3px;
    transform: none;
  }

  .brand-text strong {
    font-size: 22px;
    letter-spacing: 0.4px;
    line-height: 0.94;
  }

  .brand-text small {
    font-size: 6px;
    letter-spacing: 4px;
  }

  .header-right {
    display: contents;
    position: static;
    padding-left: 0;
  }

  .header-right::before,
  .quick-links {
    display: none;
  }

  .menu-toggle {
    grid-area: toggle;
    justify-self: end;
    display: flex;
    width: 42px;
    height: 34px;
    margin-top: 19px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 7px 8px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 2px;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
  }

  .site-nav {
    grid-area: nav;
    position: static;
    z-index: 10;
    display: none;
    width: 100%;
    max-height: 340px;
    margin-top: 0;
    padding: 28px 0 18px;
    overflow-y: auto;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
  }

  .site-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .nav-item {
    display: grid;
    width: 100%;
    min-height: 0;
  }

  .site-nav a,
  .site-nav .book-link {
    justify-content: center;
    width: 100%;
    min-height: 38px;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    min-height: 0;
    padding: 4px 0 8px;
    background: rgba(31, 44, 52, 0.26);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    justify-content: center;
    min-height: 30px;
    color: #e6d6a8;
    font-size: 10px;
    letter-spacing: 2px;
    text-align: center;
  }

  .hero {
    height: 210px;
  }

  .hero-arrow {
    width: 22px;
    height: 22px;
    border-width: 3px;
  }

  .hero-arrow--left {
    left: 17px;
  }

  .hero-arrow--right {
    right: 17px;
  }

  .container,
  .container.narrow {
    width: min(100% - 30px, 720px);
  }

  .intro-section {
    padding: 55px 0 56px;
  }

  .section-kicker {
    font-size: 11px;
  }

  h1,
  .perks-section h2,
  .section-heading h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  body {
    font-size: 12px;
    line-height: 1.65;
  }

  .intro-copy,
  .note-grid {
    text-align: center;
  }

  .note-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
  }

  .closing-line {
    margin: 35px auto 28px;
  }

  .play-line {
    font-size: 12px;
  }

  .section-overlay,
  .perks-section {
    padding: 55px 0 56px;
  }

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

  .room-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .lodging-card h3 {
    font-size: 28px;
  }

  .amenities-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .amenity-callouts {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .amenity-callouts span {
    font-size: 26px;
  }

  .quote-band {
    min-height: 150px;
    padding: 22px 42px;
  }

  .quote-band blockquote {
    font-size: 15px;
    line-height: 1.35;
  }

  .quote-band cite {
    margin-top: 18px;
    font-size: 12px;
    text-align: right;
  }

  .quote-arrow {
    width: 18px;
    height: 18px;
    border-width: 2px;
  }

  .quote-arrow--left {
    left: 15px;
  }

  .quote-arrow--right {
    right: 15px;
  }

  .difference-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .difference-grid article {
    min-height: 0;
  }

  .difference-grid h3 {
    font-size: 23px;
  }

  .page-title-band {
    padding: 40px 0 10px;
    margin-bottom: 50px;
  }

  .page-title-band .container {
    width: auto;
    max-width: none;
    margin-right: 15px;
    margin-left: 15px;
  }

  .page-title-band h1 {
    max-width: 100%;
    font-size: 45px;
    overflow-wrap: anywhere;
  }

  .classic-content {
    padding: 0 0 50px;
    font-size: 17px;
    line-height: 28px;
  }

  .classic-content .container {
    width: auto;
    max-width: none;
    margin-right: 15px;
    margin-left: 15px;
    overflow-x: hidden;
  }

  .classic-text,
  .classic-callout,
  .classic-columns,
  .classic-column-grid,
  .classic-column,
  .classic-list-block,
  .policy-columns,
  .qa-groups,
  .staff-section,
  .contact-layout {
    min-width: 0;
  }

  .classic-text h2,
  .qa-groups h2 {
    font-size: 23px;
  }

  .classic-text h4 {
    font-size: 19px;
  }

  .classic-callout {
    padding: 0;
  }

  .classic-callout p,
  .classic-list-block li,
  .classic-column p,
  .qa-question {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .classic-column-grid,
  .classic-column-grid--2,
  .classic-column-grid--3,
  .policy-columns,
  .contact-layout,
  .classic-contact-form .name-row {
    grid-template-columns: 1fr;
  }

  .classic-column-grid {
    gap: 20px;
  }

  .classic-list-block--2 ul {
    grid-template-columns: 1fr;
  }

  .classic-column h3,
  .classic-columns--with-heading > h3,
  .classic-list-block > h3,
  .contact-details h3,
  .classic-contact-form h3 {
    font-size: 21px;
  }

  .policy-list li,
  .qa-answer,
  .staff-card p,
  .contact-details p,
  .classic-contact-form label {
    font-size: 14px;
  }

  .staff-card,
  .staff-card.staff-card--featured {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .staff-card > div:first-child {
    display: none;
  }

  .subpage-hero {
    min-height: 245px;
    padding: 58px 0 48px;
  }

  .subpage-hero h1 {
    font-size: 28px;
  }

  .subpage-hero p:last-child {
    font-size: 12px;
  }

  .content-section {
    padding: 54px 0 62px;
  }

  .content-block {
    padding: 0;
  }

  .content-block h2 {
    font-size: 24px;
  }

  .content-block ul,
  .info-card-grid {
    grid-template-columns: 1fr;
  }

  .content-block ul {
    gap: 10px;
    text-align: left;
  }

  .demo-contact-form {
    padding: 24px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    width: min(100% - 30px, 360px);
  }

  .rating-badges {
    gap: 6px;
  }

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

  .social-grid img {
    width: 100%;
    height: 360px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    width: min(100% - 30px, 360px);
    text-align: center;
  }
}

@media (max-width: 520px) {
  .page-title-band .container,
  .classic-content .container {
    width: auto;
    max-width: none;
    margin-right: 15px;
    margin-left: 15px;
  }

  .page-title-band h1 {
    font-size: 45px;
  }

  .classic-callout p,
  .classic-list-block li,
  .classic-column p,
  .qa-question {
    font-size: 17px;
  }
}

@media (max-width: 420px) {

  .brand {
    width: 230px;
  }

  .brand--footer {
    width: auto;
    margin: 0 auto;
  }

  .brand-mark {
    width: 72px;
    height: 31px;
  }

  .brand-text {
    text-align: center;
  }

  .social-grid img {
    height: 360px;
  }
}
