:root {
  --ink: #171615;
  --muted: #6d6861;
  --paper: #f7f3ed;
  --white: #fffdf9;
  --wood: #b98045;
  --blue: #173f5f;
  --red: #9f3d2c;
  --line: rgba(23, 22, 21, 0.14);
  --shadow: 0 24px 70px rgba(23, 22, 21, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Noto Sans SC", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.language-switch {
  display: inline-flex;
  align-items: center;
}

.language-switch select {
  min-height: 38px;
  padding: 0 34px 0 12px;
  border: 1px solid currentColor;
  border-radius: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

.site-header.scrolled .language-switch select {
  background: rgba(23, 22, 21, 0.04);
}

.language-switch option {
  color: var(--ink);
  background: var(--white);
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 12px 40px rgba(23, 22, 21, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
}

.nav a {
  opacity: 0.82;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 88px) 88px;
  color: var(--white);
}

.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 13, 13, 0.74), rgba(12, 13, 13, 0.22) 58%, rgba(12, 13, 13, 0.3)),
    linear-gradient(0deg, rgba(12, 13, 13, 0.72), transparent 42%);
}

.hero-content {
  position: relative;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--wood);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 1.02;
  font-weight: 650;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.5vw, 58px);
  line-height: 1.12;
  font-weight: 620;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 253, 249, 0.84);
  font-size: clamp(16px, 2vw, 20px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  font-weight: 700;
}

.button.primary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button.outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(23, 22, 21, 0.35);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.action-row.compact {
  align-self: start;
  margin-top: 0;
}

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

.intro-band > div {
  min-height: 190px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--ink);
  color: var(--white);
}

.intro-band span {
  display: block;
  margin-bottom: 22px;
  color: var(--wood);
  font-size: 12px;
  font-weight: 800;
}

.intro-band strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.intro-band p {
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.7);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 88px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-heading.wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 38px;
  max-width: none;
  align-items: end;
}

.section-heading.wide .eyebrow,
.section-heading.wide h2 {
  grid-column: 1;
}

.section-heading.wide p:not(.eyebrow) {
  grid-column: 2;
  color: var(--muted);
  font-size: 18px;
}

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

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.about-text {
  color: var(--muted);
  font-size: 18px;
}

.facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.facts div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  font-weight: 650;
}

.stay {
  background: #ebe5dc;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.1fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
}

.feature-copy p:not(.eyebrow),
.plain-list {
  color: var(--muted);
  font-size: 18px;
}

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

.plain-list li {
  padding-left: 22px;
  border-left: 3px solid var(--wood);
}

.access-card {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(23, 22, 21, 0.14);
  background: rgba(255, 253, 249, 0.58);
}

.access-label {
  margin-bottom: 8px;
  color: var(--wood);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.access-card p:not(.access-label) {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 16px;
}

.access-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  list-style: none;
}

.access-list li {
  position: relative;
  padding-left: 18px;
}

.access-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--wood);
}

.feature-media {
  position: relative;
  min-height: 620px;
}

.feature-media img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-media .large {
  right: 0;
  top: 40px;
  width: 78%;
  height: 480px;
}

.feature-media .small {
  width: 42%;
  height: 230px;
}

.feature-media .top {
  left: 0;
  top: 0;
}

.feature-media .bottom {
  left: 10%;
  bottom: 0;
}

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

.dining-access {
  max-width: 900px;
  margin: -24px 0 34px auto;
  background: #f7f3ed;
}

.signature-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 26px;
}

.product-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.product-card img {
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
}

.product-card div {
  padding: clamp(24px, 3vw, 38px);
}

.product-card span {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

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

.restaurant-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

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

.gallery {
  background: var(--ink);
  color: var(--white);
}

.gallery-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.gallery-top h2 {
  margin-bottom: 0;
}

.filters {
  display: flex;
  gap: 10px;
}

.filter {
  min-width: 74px;
  min-height: 40px;
  border: 1px solid rgba(255, 253, 249, 0.25);
  color: var(--white);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.filter.active {
  color: var(--ink);
  background: var(--white);
}

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

.gallery-grid figure {
  margin: 0;
  background: rgba(255, 253, 249, 0.08);
}

.gallery-grid figure.hidden {
  display: none;
}

.gallery-grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 13px 14px 15px;
  color: rgba(255, 253, 249, 0.74);
  font-size: 14px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(36px, 7vw, 88px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 88px);
  background: #e8ece9;
  align-items: center;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 46px);
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow);
}

.contact-panel a,
.contact-panel span {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.22);
}

.contact-panel a:hover {
  color: #f1c38a;
}

.contact-panel span:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 88px);
  color: rgba(255, 253, 249, 0.66);
  background: var(--ink);
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    padding: 16px 20px;
  }

  .nav {
    display: none;
  }

  .language-switch select {
    max-width: 126px;
  }

  .hero {
    min-height: 86vh;
    padding: 130px 20px 54px;
  }

  .intro-band,
  .about-layout,
  .feature-grid,
  .section-heading.wide,
  .signature-products,
  .restaurant-strip,
  .gallery-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading.wide .eyebrow,
  .section-heading.wide h2,
  .section-heading.wide p:not(.eyebrow) {
    grid-column: auto;
  }

  .feature-media {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .feature-media img,
  .feature-media .large,
  .feature-media .small {
    position: static;
    width: 100%;
    height: 240px;
  }

  .feature-media .large {
    grid-column: 1 / -1;
  }

  .gallery-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 40px;
  }

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

  .brand small {
    font-size: 10px;
  }

  .site-header {
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .language-switch select {
    max-width: 112px;
    min-height: 36px;
    padding-left: 8px;
    font-size: 12px;
  }

  .hero-actions,
  .filters {
    width: 100%;
  }

  .button,
  .filter {
    flex: 1;
  }

  .action-row .button {
    width: 100%;
  }

  .facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .feature-media {
    grid-template-columns: 1fr;
  }
}
