@charset "UTF-8";

:root {
  --red: #a44733;
  --red-dark: #7d3327;
  --green: #243f2d;
  --green-soft: #6f8063;
  --brown: #7b6048;
  --beige: #eee3d1;
  --cream: #fbf8f1;
  --white: #fffdf8;
  --ink: #2b2924;
  --muted: #746f66;
  --line: rgba(43, 41, 36, .14);
  --shadow: 0 22px 60px rgba(54, 43, 34, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .02em;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 26px 44px;
  color: var(--white);
  transition: background .4s ease, color .4s ease, padding .4s ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  padding: 16px 34px;
  color: var(--ink);
  background: rgba(251, 248, 241, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(43, 41, 36, .08);
}

.site-header.is-menu-open {
  color: var(--white);
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.site-header.is-menu-open .site-logo img {
  filter: brightness(0) invert(1);
}

body.is-menu-open {
  overflow: hidden;
}

.site-logo {
  position: relative;
  z-index: 32;
  display: block;
  width: 188px;
  line-height: 0;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  letter-spacing: .08em;
}

.global-nav a {
  position: relative;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.global-nav a:hover::after,
.global-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.8s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 30, 22, .58), rgba(25, 30, 22, .1) 55%, rgba(25, 30, 22, .4));
}

.hero-copy {
  position: absolute;
  left: clamp(24px, 8vw, 110px);
  bottom: 21vh;
  z-index: 2;
  max-width: 620px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #f1d8bd;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.55;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 58px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(25px, 3vw, 36px);
}

h3 {
  font-size: 21px;
}

.hero-copy p:last-child {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, .9);
}

.hero-reserve {
  position: absolute;
  left: 50%;
  bottom: 10vh;
  z-index: 3;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-reserve a,
.reserve-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  padding: 12px 24px;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 14px;
  letter-spacing: .08em;
}

.hero-reserve a:nth-child(2) {
  background: rgba(36, 63, 45, .88);
  border-color: rgba(255, 253, 248, .3);
}

.section {
  padding: clamp(76px, 11vw, 150px) 0;
}

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

.section-inner.narrow {
  width: min(760px, calc(100% - 48px));
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) 1.18fr;
  gap: clamp(42px, 8vw, 96px);
  align-items: start;
}

.text-list p {
  color: var(--muted);
}

.stay-grid {
  padding-top: 40px;
}

.stay-grid .section-inner {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: end;
}

.stay-card a {
  display: block;
}

.stay-card figure {
  margin: 0 0 28px;
  overflow: hidden;
  background: var(--beige);
}

.stay-card img {
  width: 100%;
  height: 52vh;
  min-height: 360px;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.stay-card:not(.stay-card-large) {
  transform: translateY(80px);
}

.stay-card:not(.stay-card-large) img {
  height: 420px;
  min-height: 0;
}

.stay-card p {
  color: var(--muted);
}

.experience {
  background: var(--white);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr 1.1fr;
  gap: 12px;
  padding: 12px;
  background: var(--white);
}

.gallery-strip img {
  width: 100%;
  height: 34vw;
  max-height: 470px;
  min-height: 260px;
  object-fit: cover;
}

.gallery-strip img:nth-child(even) {
  transform: translateY(36px);
}

.page-hero {
  position: relative;
  height: 76svh;
  min-height: 540px;
  overflow: hidden;
  color: var(--white);
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-copy {
  position: absolute;
  left: clamp(24px, 8vw, 110px);
  bottom: 12vh;
  z-index: 2;
}

.photo-layout .section-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}

.photo-layout figure {
  margin: 0;
  overflow: hidden;
  background: var(--beige);
}

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

.photo-layout .photo-tall {
  grid-row: span 2;
}

.photo-layout .photo-tall img {
  height: 738px;
}

.detail-section {
  background: var(--white);
}

.detail-heading {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 6vw, 74px);
  margin-bottom: 34px;
  align-items: end;
}

.detail-heading h2 {
  margin-bottom: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-grid article {
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

.detail-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: .18em;
}

.detail-grid h3 {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 19px;
}

.detail-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.route-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: route;
  background: var(--line);
  border: 1px solid var(--line);
}

.route-list li {
  position: relative;
  padding: 22px 26px 22px 72px;
  background: var(--white);
  color: var(--muted);
}

.route-list li::before {
  counter-increment: route;
  content: counter(route, decimal-leading-zero);
  position: absolute;
  top: 24px;
  left: 26px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 13px;
}

.parking-note {
  margin: 26px 0 0;
  padding: 22px 26px;
  border-left: 3px solid var(--red);
  background: #f7efe3;
  color: var(--brown);
}

.soft-section {
  background: #f2eadc;
}

.feature-row {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(32px, 7vw, 82px);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .45);
  color: var(--brown);
}

.subpage-title {
  padding: 160px 24px 74px;
  text-align: center;
}

.subpage-title .eyebrow {
  color: var(--red);
}

.subpage-title h1 {
  margin-bottom: 0;
  color: var(--green);
}

.address-text {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
}

.map-section iframe {
  width: 100%;
  height: 58vh;
  min-height: 430px;
  border: 0;
  filter: saturate(.82) sepia(.08);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--red-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.contact-layout > div p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(24px, 4vw, 48px);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form span {
  color: var(--brown);
  font-size: 13px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  padding: 14px;
  resize: vertical;
}

.submit-button {
  grid-column: 1 / -1;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 58px 44px 112px;
  color: rgba(255, 253, 248, .76);
  background: var(--green);
}

.footer-logo {
  margin-bottom: 10px;
  line-height: 0;
}

.footer-logo img {
  width: 190px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  font-size: 13px;
}

.fixed-reserve {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(251, 248, 241, .86);
  border: 1px solid rgba(43, 41, 36, .1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.fixed-reserve a {
  min-width: 132px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--red);
  font-size: 13px;
  text-align: center;
}

.fixed-reserve a:nth-child(2) {
  background: var(--green);
}

@media (hover: hover) {
  a,
  button {
    transition: opacity .28s ease, transform .28s ease;
  }

  a:hover,
  button:hover {
    opacity: .76;
  }

  .stay-card a:hover img {
    transform: scale(1.035);
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 18px 20px;
  }

  .site-header.is-scrolled,
  body:not(.home) .site-header {
    padding: 14px 20px;
  }

  .site-header.is-menu-open,
  body:not(.home) .site-header.is-menu-open {
    padding: 18px 20px;
    color: var(--white);
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
  }

  .menu-button {
    position: relative;
    z-index: 32;
    display: grid;
    gap: 5px;
    width: 54px;
    height: 54px;
    place-content: center;
    border: 1px solid rgba(255, 253, 248, .48);
    border-radius: 50%;
    color: inherit;
    background: rgba(36, 63, 45, .18);
  }

  .site-logo {
    width: 156px;
  }

  .menu-button span {
    display: block;
    width: 23px;
    height: 1px;
    background: currentColor;
  }

  .menu-button em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .global-nav {
    position: fixed;
    inset: 0;
    z-index: 31;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 24px;
    color: var(--white);
    background: rgba(36, 63, 45, .96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .35s ease, transform .35s ease;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-copy {
    bottom: 26vh;
  }

  .hero-reserve {
    width: min(420px, calc(100% - 40px));
    flex-direction: column;
    bottom: 7vh;
  }

  .split,
  .stay-grid .section-inner,
  .feature-row,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .stay-card:not(.stay-card-large) {
    transform: none;
  }

  .stay-card img,
  .stay-card:not(.stay-card-large) img {
    height: 58vw;
    min-height: 280px;
  }

  .photo-layout .section-inner,
  .feature-list,
  .detail-heading,
  .detail-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .photo-layout .photo-tall {
    grid-row: auto;
  }

  .photo-layout img,
  .photo-layout .photo-tall img {
    height: 58vw;
    min-height: 260px;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip img:nth-child(even) {
    transform: none;
  }

  .site-footer {
    display: grid;
    padding: 50px 24px 108px;
  }
}

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

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .section-inner,
  .section-inner.narrow {
    width: min(100% - 32px, 1120px);
  }

  .page-hero {
    height: 68svh;
    min-height: 460px;
  }

  .gallery-strip {
    display: block;
    padding: 0;
  }

  .gallery-strip img {
    height: 62vw;
    min-height: 240px;
  }

  .fixed-reserve {
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    border: 0;
  }

  .fixed-reserve a {
    min-width: 0;
    padding: 15px 8px;
  }
}
