:root {
  color-scheme: light;
  --ink: #121515;
  --ink-soft: #444c49;
  --muted: #6f7773;
  --paper: #f7f8f4;
  --paper-strong: #ffffff;
  --line: rgba(18, 21, 21, 0.14);
  --charcoal: #111716;
  --charcoal-2: #19221f;
  --moss: #2c6e55;
  --water: #0c7c86;
  --heat: #c94f2b;
  --gold: #d5a14a;
  --shadow: 0 24px 70px rgba(18, 21, 21, 0.16);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter Tight", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(201, 79, 43, 0.22);
}

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

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 32px;
  color: #fff;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 248, 244, 0.88);
  border-bottom: 1px solid rgba(18, 21, 21, 0.08);
  box-shadow: 0 12px 40px rgba(18, 21, 21, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}

.brand-name {
  white-space: nowrap;
  font-size: 14px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav a,
.footer-links a,
.instagram-link,
.text-link {
  position: relative;
}

.primary-nav a::after,
.footer-links a::after,
.instagram-link::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.primary-nav a:hover::after,
.footer-links a:hover::after,
.instagram-link:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.language-toggle,
.header-cta {
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-toggle {
  width: 44px;
  cursor: pointer;
}

.header-cta {
  padding: 0 16px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #0b0d0d;
  color: #fff;
  padding: 120px 32px 64px;
}

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

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

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

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 6, 6, 0.78), rgba(4, 6, 6, 0.32) 48%, rgba(4, 6, 6, 0.18)),
    linear-gradient(0deg, rgba(4, 6, 6, 0.74), rgba(4, 6, 6, 0.02) 44%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

.eyebrow,
.section-kicker,
.property-meta,
.picker-eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  margin: 18px 0 0;
  max-width: 920px;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-actions,
.picker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  min-width: 148px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: #fff;
  color: var(--ink);
}

.button-primary:hover {
  background: var(--gold);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-tertiary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper-strong);
}

.button-tertiary:hover {
  border-color: rgba(44, 110, 85, 0.36);
  background: rgba(44, 110, 85, 0.1);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  gap: 0;
  margin: 54px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-facts div {
  padding: 18px 18px 18px 0;
}

.hero-facts div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 18px;
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 800;
}

.hero-current {
  position: absolute;
  right: 32px;
  bottom: 64px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px 14px;
  min-width: 250px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.hero-current-index {
  color: rgba(255, 255, 255, 0.62);
}

.hero-progress {
  grid-column: 1 / -1;
  display: block;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.32);
}

.hero-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: #fff;
  transform-origin: left;
  animation: progress 5200ms linear infinite;
}

.arrival-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.arrival-strip > div {
  min-height: 164px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.arrival-strip > div:last-child {
  border-right: 0;
}

.arrival-number {
  display: inline-block;
  color: var(--heat);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.arrival-strip strong {
  display: block;
  margin-top: 18px;
  font-size: 20px;
}

.arrival-strip p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.section {
  padding: 112px 32px;
}

.section-heading,
.editorial-grid,
.house-stack,
.experience-heading,
.experience-grid,
.itinerary,
.location-section,
.contact-section,
.site-footer {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.editorial-copy h2,
.experience-heading h2,
.location-copy h2,
.contact-copy h2 {
  margin: 12px 0 0;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.editorial-copy p,
.location-copy p,
.contact-copy p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.editorial {
  background: var(--paper);
}

.editorial > .section-kicker {
  width: min(100%, var(--container));
  margin: 0 auto 18px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 72px;
  align-items: center;
}

.editorial-copy p {
  max-width: 680px;
  font-size: 20px;
  line-height: 2;
}

.editorial-image {
  position: relative;
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.editorial-image figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.houses-section {
  background: #fff;
}

.house-stack {
  display: grid;
  gap: 34px;
}

.house-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  scroll-margin-top: 92px;
}

.picker-copy {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.picker-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.picker-tabs button {
  min-width: 70px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.picker-tabs button.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.house-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.house-tags span {
  display: inline-grid;
  place-items: center;
  min-width: 70px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.picker-copy h3 {
  margin: 12px 0 0;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
}

.picker-description {
  min-height: 88px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.picker-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.picker-specs div {
  padding: 18px 12px 18px 0;
}

.picker-specs div + div {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.picker-specs dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.picker-specs dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.picker-copy .button-primary,
.contact-form .button-primary {
  background: var(--ink);
  color: #fff;
}

.picker-copy .button-primary:hover,
.contact-form .button-primary:hover {
  background: var(--moss);
}

.text-link {
  align-self: center;
  color: var(--ink);
  font-weight: 900;
}

button.text-link {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.chat-inline-button {
  min-height: 28px;
}

.picker-media {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.picker-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: opacity 220ms ease, transform 600ms ease;
}

.picker-media img.is-switching {
  opacity: 0.35;
  transform: scale(1.02);
}

.property-grid {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.property-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-strong);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(18, 21, 21, 0.12);
}

.property-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.property-body {
  padding: 18px;
}

.property-card h3 {
  margin: 8px 0 0;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}

.property-card p:not(.property-meta) {
  min-height: 72px;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.property-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-section {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(17, 23, 22, 0.96), rgba(17, 23, 22, 1)),
    var(--charcoal);
}

.experience-section .section-kicker,
.experience-card span {
  color: rgba(255, 255, 255, 0.58);
}

.experience-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(220px, 0.35fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.experience-heading h2 {
  color: #fff;
}

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

.experience-card {
  min-height: 620px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.experience-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.experience-card div {
  padding: 22px;
}

.experience-card span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-card h3 {
  margin: 12px 0 0;
  font-size: 25px;
  letter-spacing: 0;
}

.experience-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.itinerary-section {
  background: var(--paper);
}

.itinerary {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.itinerary li {
  min-height: 190px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.itinerary li:last-child {
  border-right: 0;
}

.itinerary time {
  color: var(--heat);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.itinerary strong {
  display: block;
  margin-top: 34px;
  font-size: 18px;
  line-height: 1.55;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 0.78fr);
  gap: 56px;
  align-items: center;
}

.map-stage {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #edf2ed;
}

.google-map-stage {
  background: var(--paper-strong);
}

.map-frame {
  position: relative;
  min-height: 430px;
  background: #dfe8dd;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-panel {
  border-top: 1px solid var(--line);
  background: var(--paper-strong);
}

.map-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.map-tabs button {
  display: grid;
  gap: 6px;
  min-height: 106px;
  padding: 20px 22px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.map-tabs button:last-child {
  border-right: 0;
}

.map-tabs button:hover,
.map-tabs button.is-active {
  background: var(--paper);
}

.map-tabs span {
  color: var(--water);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-tabs strong {
  font-size: 17px;
  line-height: 1.34;
}

.map-address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.map-address span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-address strong {
  flex: 1;
  color: var(--ink);
  font-size: 14px;
}

.map-address a {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.map-address a:hover {
  border-color: rgba(44, 110, 85, 0.36);
  background: rgba(44, 110, 85, 0.08);
}

.map-stage svg {
  width: 100%;
  height: auto;
  min-height: 420px;
  display: block;
}

.map-land {
  fill: #dfe8dd;
  stroke: #9eb2a6;
  stroke-width: 2;
}

.map-coast {
  fill: none;
  stroke: rgba(12, 124, 134, 0.45);
  stroke-width: 8;
  stroke-linecap: round;
}

.map-route {
  fill: none;
  stroke: var(--heat);
  stroke-width: 3;
  stroke-dasharray: 8 10;
  stroke-linecap: round;
}

.map-pin circle {
  fill: var(--ink);
  stroke: #fff;
  stroke-width: 5;
}

.map-pin text {
  fill: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.map-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  background: var(--paper-strong);
}

.map-list li {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.map-list li:last-child {
  border-right: 0;
}

.map-list span {
  display: block;
  color: var(--water);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-list strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
}

.gallery-section {
  overflow: hidden;
  padding-top: 82px;
  padding-bottom: 0;
  background: #fff;
}

.gallery-section-copy {
  width: min(100%, var(--container));
  margin: 0 auto 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.gallery-section-copy h2 {
  max-width: 720px;
  margin: 12px 0 0;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}

.gallery-section-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.gallery-section-links a {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-section-links a:hover {
  border-color: rgba(44, 110, 85, 0.36);
  background: rgba(44, 110, 85, 0.08);
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 28vw;
  gap: 12px;
  padding: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 0.72fr);
  gap: 56px;
  align-items: start;
}

.instagram-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--moss);
  font-weight: 900;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-style: normal;
  font-size: 15px;
}

.contact-details span:first-child {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.contact-details a {
  width: fit-content;
  color: var(--moss);
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 4px rgba(44, 110, 85, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--moss);
  font-weight: 800;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.chat-launcher,
.chat-panel {
  pointer-events: auto;
}

.chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 48px rgba(18, 21, 21, 0.24);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.chat-launcher-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(213, 161, 74, 0.18);
}

.chat-panel {
  width: min(390px, calc(100vw - 32px));
  max-height: min(720px, calc(100svh - 112px));
  display: grid;
  grid-template-rows: auto auto auto minmax(160px, 1fr) auto auto auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 26px 80px rgba(18, 21, 21, 0.24);
}

.chat-panel[hidden] {
  display: none;
}

.chat-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 16px;
  background: var(--charcoal);
  color: #fff;
}

.chat-panel-header span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.chat-panel-header h2 {
  margin: 5px 0 0;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.chat-close {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.chat-property-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.chat-property-picker button {
  display: grid;
  gap: 2px;
  min-height: 68px;
  padding: 12px 14px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.chat-property-picker button:nth-child(2n) {
  border-right: 0;
}

.chat-property-picker button:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.chat-property-picker button.is-active {
  background: var(--paper);
  box-shadow: inset 0 0 0 2px rgba(44, 110, 85, 0.2);
}

.chat-property-picker span {
  color: var(--water);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-property-picker strong {
  font-size: 13px;
  line-height: 1.25;
}

.chat-current {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.chat-current span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-current strong {
  font-size: 13px;
}

.chat-log {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 180px;
  padding: 18px;
  overflow-y: auto;
  background: #fbfbf8;
}

.chat-message {
  max-width: 92%;
  display: grid;
  gap: 9px;
}

.chat-message p {
  margin: 0;
  padding: 11px 13px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.65;
}

.chat-message.bot {
  justify-self: start;
}

.chat-message.bot p {
  border-bottom-left-radius: 4px;
  background: #edf2ed;
  color: var(--ink);
}

.chat-message.user {
  justify-self: end;
}

.chat-message.user p {
  border-bottom-right-radius: 4px;
  background: var(--ink);
  color: #fff;
}

.chat-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-message-action {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(44, 110, 85, 0.24);
  border-radius: 999px;
  background: #fff;
  color: var(--moss);
  font-size: 12px;
  font-weight: 900;
}

.chat-quick-actions {
  display: flex;
  gap: 8px;
  padding: 0 18px 14px;
  overflow-x: auto;
  background: #fbfbf8;
}

.chat-quick-actions button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 14px 18px 0;
  border-top: 1px solid var(--line);
  background: var(--paper-strong);
}

.chat-form textarea {
  width: 100%;
  min-height: 48px;
  max-height: 120px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 11px 12px;
  outline: 0;
}

.chat-form textarea:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 4px rgba(44, 110, 85, 0.12);
}

.chat-form button {
  min-width: 72px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.chat-note {
  margin: 0;
  padding: 8px 18px 14px;
  color: var(--muted);
  font-size: 11px;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 32px 42px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.site-footer strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 1280px) {
  .hero h1 {
    font-size: 98px;
  }

  .section-heading h2,
  .editorial-copy h2,
  .experience-heading h2,
  .location-copy h2,
  .contact-copy h2 {
    font-size: 58px;
  }
}

@media (max-width: 1040px) {
  .primary-nav {
    display: none;
  }

  .arrival-strip,
  .property-grid,
  .experience-grid,
  .itinerary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .arrival-strip > div:nth-child(2n),
  .itinerary li:nth-child(2n),
  .map-list li:nth-child(2n) {
    border-right: 0;
  }

  .section-heading,
  .editorial-grid,
  .house-feature,
  .experience-heading,
  .location-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .editorial-image,
  .editorial-image img,
  .picker-copy,
  .picker-media,
  .picker-media img {
    min-height: 440px;
  }

  .gallery-track {
    grid-auto-columns: 44vw;
  }

  .gallery-section-copy {
    display: block;
  }

  .gallery-section-links {
    justify-content: flex-start;
    margin-top: 18px;
  }

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

  .map-tabs {
    grid-template-columns: 1fr;
  }

  .map-tabs button,
  .map-tabs button:last-child {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .map-address {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .brand-name {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding: 108px 18px 42px;
  }

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

  .hero-lead {
    font-size: 16px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-facts div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding-left: 0;
  }

  .hero-current {
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-width: 0;
  }

  .arrival-strip,
  .property-grid,
  .experience-grid,
  .itinerary,
  .map-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .arrival-strip > div,
  .itinerary li,
  .map-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .arrival-strip > div:last-child,
  .itinerary li:last-child,
  .map-list li:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 18px;
  }

  .section-heading h2,
  .editorial-copy h2,
  .experience-heading h2,
  .location-copy h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .editorial-copy p {
    font-size: 17px;
  }

  .editorial-image,
  .editorial-image img,
  .picker-copy,
  .picker-media,
  .picker-media img {
    min-height: 360px;
  }

  .picker-copy {
    padding: 24px;
  }

  .picker-copy h3 {
    font-size: 28px;
  }

  .picker-specs {
    grid-template-columns: 1fr;
  }

  .picker-specs div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .experience-card {
    min-height: auto;
  }

  .experience-card img {
    height: 310px;
  }

  .gallery-track {
    grid-auto-columns: 82vw;
  }

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

  .gallery-section-copy h2 {
    font-size: 31px;
  }

  .site-footer {
    display: block;
    padding: 28px 18px 34px;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .chat-launcher {
    min-height: 48px;
    padding: 0 15px;
  }

  .chat-panel {
    width: calc(100vw - 24px);
    max-height: calc(100svh - 88px);
    grid-template-rows: auto auto auto minmax(120px, 1fr) auto auto auto;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 41px;
  }

  .hero-actions,
  .picker-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .arrival-strip strong {
    font-size: 18px;
  }

  .chat-property-picker {
    grid-template-columns: 1fr;
  }

  .chat-property-picker button,
  .chat-property-picker button:nth-child(2n),
  .chat-property-picker button:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .chat-property-picker button:last-child {
    border-bottom: 0;
  }

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

  .chat-form button {
    min-height: 42px;
  }
}
