:root {
  --cream: #fcf9f5;
  --paper: #ffffff;
  --soft: #f1ece7;
  --ink: #1b1c1c;
  --muted: #58605b;
  --forest: #012d1d;
  --forest-2: #1b4332;
  --gold: #c8941f;
  --gold-2: #fed65b;
  --line: #ddd6ce;
  --shadow: 0 18px 48px rgba(27, 67, 50, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.material-symbols-outlined {
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 54px rgba(6, 32, 22, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  color: #082517;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  color: #4b5550;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--forest);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 4px;
  background: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.book-button,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid #dbe2dd;
  border-radius: 10px;
  background: #f7faf8;
  color: var(--forest);
}

.icon-button {
  width: 38px;
}

.book-button {
  padding: 0 16px;
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 42px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: var(--hero-image) center / cover no-repeat;
  color: #fff;
}

.hero-overlay,
.page-hero::before,
.nearby-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 45, 29, 0.72), rgba(1, 45, 29, 0.42) 48%, rgba(1, 45, 29, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 82px;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.eyebrow-row span,
.kicker,
.price-chip,
.room-meta span,
.gallery-item span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--gold-2);
  color: #3b2d00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section h2,
.inquiry-section h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 680px;
  font-size: 64px;
}

.hero p {
  max-width: 600px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.btn,
.card-button,
.booking-card button,
.inquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary,
.booking-card button,
.inquiry-form button {
  background: var(--forest);
  color: #fff;
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-outline,
.card-button {
  border-color: var(--line);
  background: #fff;
  color: var(--forest);
}

.booking-strip {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: -62px auto 0;
}

.booking-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.booking-card label,
.inquiry-form input,
.inquiry-form select,
.contact-panel a {
  min-width: 0;
}

.booking-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-card input,
.booking-card select,
.inquiry-form input,
.inquiry-form select {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-bottom: 2px solid var(--line);
  background: transparent;
  color: var(--ink);
  outline: none;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-muted {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1120px) / 2));
  padding-right: max(16px, calc((100% - 1120px) / 2));
  background: var(--soft);
}

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

.section-heading.centered {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.section-copy h2 {
  margin-top: 14px;
  font-size: 34px;
}

.section-copy p,
.section-heading p {
  color: var(--muted);
}

.story-section,
.amenities-section,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 56px;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rating-pill {
  position: absolute;
  right: -18px;
  bottom: -18px;
  max-width: 190px;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--gold-2);
  color: #332500;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.mini-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.mini-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

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

.room-card,
.amenity-card,
.review-grid article,
.contact-panel,
.map-card,
.gallery-item {
  border: 1px solid rgba(221, 214, 206, 0.9);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 28px rgba(27, 67, 50, 0.08);
}

.room-card {
  overflow: hidden;
}

.room-image img,
.gallery-item img,
.gallery-item video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-body {
  padding: 20px;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-body h3,
.amenity-card h3,
.amenity-card h2,
.gallery-item h2 {
  margin: 14px 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.25;
}

.room-body p,
.amenity-card p,
.review-grid p {
  color: var(--muted);
}

.card-button {
  width: 100%;
  margin-top: 12px;
}

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

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

.amenity-card {
  min-height: 190px;
  padding: 22px;
}

.amenity-card > .material-symbols-outlined {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(1, 45, 29, 0.08);
  color: var(--forest);
}

.nearby-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1120px) / 2));
  padding-right: max(16px, calc((100% - 1120px) / 2));
  background: var(--forest);
  color: #fff;
}

.nearby-section .kicker {
  background: rgba(254, 214, 91, 0.16);
  color: #ffe28d;
}

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

.nearby-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--nearby-image) center / cover no-repeat;
}

.nearby-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-weight: 800;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-auto-rows: 170px;
  gap: 14px;
}

.gallery-mosaic a {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.gallery-mosaic a.large {
  grid-row: span 2;
}

.gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.review-grid article {
  padding: 26px;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.contact-card-section {
  padding-top: 70px;
}

.map-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 22px;
}

.map-card iframe,
.contact-map iframe {
  width: 100%;
  height: 330px;
  border: 0;
  border-radius: 14px;
}

.inquiry-section {
  padding: 60px max(16px, calc((100% - 860px) / 2));
  background: var(--forest-2);
  color: #fff;
  text-align: center;
}

.inquiry-section p {
  color: rgba(255, 255, 255, 0.76);
}

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

.inquiry-form input,
.inquiry-form select {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.inquiry-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.inquiry-form select option {
  color: var(--ink);
}

.inquiry-form button {
  grid-column: 1 / -1;
  background: var(--gold);
  color: #1d1500;
}

.site-footer {
  padding: 54px max(16px, calc((100% - 1120px) / 2)) 28px;
  background: #002316;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.7fr) minmax(0, 1fr);
  gap: 42px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
}

.site-footer a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 9px 0;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.copyright {
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.page-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  padding: 140px max(16px, calc((100% - 1120px) / 2)) 72px;
  background: var(--hero-image) center / cover no-repeat;
  color: #fff;
}

.page-hero.compact {
  min-height: 620px;
}

.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero h1 {
  margin-top: 14px;
  font-size: 50px;
}

.page-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.room-list {
  display: grid;
  gap: 26px;
}

.room-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.room-row-images {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12px;
}

.room-row-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.room-row-images img:nth-child(2) {
  align-self: end;
  margin-top: 42px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag-list span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(1, 45, 29, 0.14);
  border-radius: 999px;
  background: rgba(1, 45, 29, 0.05);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
}

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

.gallery-item {
  overflow: hidden;
}

.gallery-item div {
  padding: 18px;
}

.contact-panel {
  padding: 32px;
}

.contact-panel a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  color: var(--forest);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-map iframe {
  height: 480px;
}

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

  .menu-button {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: 94px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 14px;
  }

  .main-nav a.active::after {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .booking-card,
  .story-section,
  .amenities-section,
  .map-card,
  .contact-layout,
  .room-row {
    grid-template-columns: 1fr;
  }

  .room-grid,
  .amenity-grid,
  .nearby-grid,
  .review-grid,
  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 60px;
    padding: 10px 12px;
  }

  .brand {
    white-space: normal;
    line-height: 1.2;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 92px;
  }

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

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .button-row,
  .mini-features {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .card-button {
    width: 100%;
  }

  .booking-strip {
    margin-top: -44px;
  }

  .booking-card {
    padding: 18px;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading h2,
  .section-copy h2,
  .inquiry-section h2 {
    font-size: 28px;
  }

  .room-grid,
  .amenity-grid,
  .nearby-grid,
  .review-grid,
  .gallery-page-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .nearby-card {
    min-height: 180px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .gallery-mosaic a.large {
    grid-row: span 1;
  }

  .room-row {
    padding: 14px;
  }

  .room-row-images {
    grid-template-columns: 1fr;
  }

  .room-row-images img:nth-child(2) {
    margin-top: 0;
  }

  .rating-pill {
    right: 12px;
    bottom: 12px;
  }

  .page-hero {
    min-height: 360px;
    padding-top: 120px;
    padding-bottom: 52px;
  }

  .contact-map iframe {
    height: 340px;
  }
}
