/* La Corte — Direction 1 · Maison Parisienne */

:root {
  --bone: #F4EFE6;
  --cream: #EAE2D2;
  --espresso: #2A211B;
  --espresso-soft: #4A3A30;
  --bordeaux: #5C1F1B;
  --bordeaux-deep: #421615;
  --brass: #A88B5C;
  --brass-soft: #C2A87A;
  --taupe: #C8BCA8;
  --taupe-light: #DDD3C2;

  --accent-primary: var(--bordeaux);
  --accent-gilt: var(--brass);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--bordeaux); color: var(--bone); }

html, body {
  background: var(--bone);
  color: var(--espresso);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern", "liga";
  cursor: none;
}

@media (hover: none) {
  html, body { cursor: auto; }
  .cursor-dot { display: none; }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; }
button { font: inherit; background: none; border: none; cursor: none; color: inherit; }
@media (hover: none) { button { cursor: pointer; } }
input, select, textarea { font: inherit; color: inherit; background: none; border: none; outline: none; }

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--accent-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.2s, height 0.2s, opacity 0.3s;
  mix-blend-mode: normal;
  opacity: 0;
}
.cursor-dot.cursor-dot--visible { opacity: 1; }
.cursor-dot.cursor-dot--hover {
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--accent-primary);
}

.page-wipe {
  position: fixed;
  inset: 0;
  background: var(--bone);
  z-index: 9000;
  transform: translateY(100%);
  pointer-events: none;
}
.page-wipe.is-active { transform: translateY(0); transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1); }
.page-wipe.is-leaving { transform: translateY(-100%); transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
}
.brass { color: var(--accent-gilt); }
.bordeaux { color: var(--accent-primary); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: gap 0.3s;
}
.text-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(0.3);
  transition: transform 0.4s ease-out;
}
.text-link:hover { gap: 22px; }
.text-link:hover::after { transform-origin: left; transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 1px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn--outline {
  border: 1px solid var(--espresso);
  color: var(--espresso);
  background: transparent;
}
.btn--outline:hover { background: var(--accent-primary); color: var(--bone); border-color: var(--accent-primary); }
.btn--solid {
  background: var(--accent-primary);
  color: var(--bone);
  border: 1px solid var(--accent-primary);
}
.btn--solid:hover { background: var(--bordeaux-deep); border-color: var(--bordeaux-deep); }
.btn--solid em, .btn--solid span { color: var(--bone); }
.btn--ghost {
  border: 1px solid var(--taupe);
  color: var(--espresso);
  background: transparent;
}
.btn--ghost:hover { background: var(--espresso); color: var(--bone); border-color: var(--espresso); }
.btn--block { width: 100%; }

.brass-rule {
  height: 1px;
  background: var(--accent-gilt);
  width: 80px;
  margin: 32px 0;
  opacity: 0.7;
}
.brass-rule--center { margin: 32px auto; }
.section-rule {
  display: block;
  width: 80px;
  height: 1px;
  margin: 0 auto;
  background: var(--accent-gilt);
  opacity: 0.55;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  z-index: 100;
  background: linear-gradient(180deg, rgba(244,239,230,0.92) 0%, rgba(244,239,230,0) 100%);
  transition: background 0.3s, padding 0.3s;
}
.site-header.is-scrolled {
  background: rgba(244,239,230,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--taupe-light);
  padding: 18px 64px;
}
.brand-mark { display: inline-flex; align-items: center; gap: 14px; color: var(--espresso); flex-shrink: 0; white-space: nowrap; }
.brand-mark svg { color: var(--accent-gilt); display: block; }
.brand-monogram { display: inline-block; flex-shrink: 0; }
.brand-word {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.header-utils { flex-shrink: 0; }
.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent-gilt);
  transition: width 0.3s;
}
.site-nav a:hover::after, .site-nav a.is-active::after { width: 100%; }

/* Dropdown nav */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown > a .nav-arrow {
  display: inline-block;
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.5;
  transition: transform 0.3s, opacity 0.3s;
  margin-left: 2px;
}
.nav-dropdown:hover > a .nav-arrow { transform: rotate(180deg); opacity: 0.8; }
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown__inner {
  background: var(--bone);
  border: 1px solid var(--taupe-light);
  box-shadow: 0 12px 40px rgba(42,33,27,0.12);
  padding: 28px 0;
  min-width: 260px;
}
.nav-dropdown__group {
  padding: 0 28px;
  margin-bottom: 20px;
}
.nav-dropdown__group:last-child { margin-bottom: 0; }
.nav-dropdown__label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--espresso);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--taupe-light);
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  transition: color 0.3s;
}
a.nav-dropdown__label:hover { color: var(--accent-primary); }
.nav-dropdown__link {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--espresso-soft);
  padding: 6px 0 6px 12px;
  transition: color 0.3s, padding-left 0.3s;
  position: relative;
}
.nav-dropdown__link::after { display: none; }
.nav-dropdown__link:hover {
  color: var(--accent-primary);
  padding-left: 18px;
}
.nav-dropdown__soon {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--taupe);
  padding: 6px 0 6px 12px;
  font-style: italic;
}
.nav-dropdown__divider {
  height: 1px;
  background: var(--taupe-light);
  margin: 12px 28px;
}
.header-utils { display: flex; align-items: center; gap: 20px; }
.lang-toggle {
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--espresso);
  padding: 4px 8px;
}
.lang-toggle [data-lang] { opacity: 0.4; transition: opacity 0.2s; padding: 0 4px; }
.lang-toggle [data-lang].is-active { opacity: 1; color: var(--accent-primary); }
.lang-toggle:hover [data-lang] { opacity: 0.7; }
.lang-toggle:hover [data-lang].is-active { opacity: 1; }
.lang-sep { opacity: 0.3; padding: 0; }
.dir-back {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent-gilt);
  text-transform: uppercase;
  border-left: 1px solid var(--taupe);
  padding-left: 20px;
}
.dir-back:hover { color: var(--accent-primary); }

.mobile-nav-toggle { display: none; }
.mobile-nav { display: none; }

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  inset: 0;
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  animation: heroPan 18s ease-out forwards;
}
@keyframes heroPan {
  from { transform: scale(1.08); }
  to { transform: scale(1.0); }
}
.hero__photo-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(244,239,230,0.4) 0%, rgba(244,239,230,0.0) 25%, rgba(0,0,0,0) 60%, rgba(42,33,27,0.4) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 50%);
}
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 64px;
  max-width: 880px;
  color: var(--bone);
  text-shadow: 0 1px 24px rgba(0,0,0,0.25);
}
.hero__content .eyebrow {
  margin-bottom: 28px;
  color: var(--brass-soft);
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(56px, 9.5vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  color: var(--bone);
}
.hero__title em { font-weight: 400; }
.hero__sub {
  max-width: 460px;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 40px;
  opacity: 0.92;
}
.hero .btn--outline {
  color: var(--bone);
  border-color: var(--bone);
}
.hero .btn--outline:hover { background: var(--bone); color: var(--accent-primary); border-color: var(--bone); }

.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--bone);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--brass-soft), transparent);
  animation: scrollHint 2.4s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.4); transform-origin: top; opacity: 0.3; }
}

.story {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  padding: 100px 96px;
  max-width: 1600px;
  margin: 0 auto;
  align-items: center;
}
.story__photo { position: relative; }
.arch-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  overflow: hidden;
  padding: 8px;
  background: var(--bone);
  box-shadow: 0 1px 0 var(--taupe-light), 0 30px 60px rgba(42,33,27,0.08);
}
.arch-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  border: 2px solid var(--bone);
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(168,139,92,0.18);
}
.arch-frame img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
}
.monogram-watermark {
  position: absolute;
  bottom: -40px; right: -40px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 220px;
  font-weight: 300;
  color: var(--accent-gilt);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}
.story__text { max-width: 540px; }
.story__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 16px 0 32px;
}
.story__body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--espresso-soft);
  text-wrap: pretty;
}
.story__sign {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--espresso-soft);
}

.amenities {
  padding: 100px 96px;
  max-width: 1600px;
  margin: 0 auto;
}
.amenities__head { text-align: center; margin-bottom: 64px; }
.amenities__head .eyebrow { margin-bottom: 20px; }
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px 48px;
}
.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.amenity__icon {
  width: 56px; height: 56px;
  color: var(--accent-gilt);
  stroke: var(--accent-gilt);
  stroke-width: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s ease;
}
.amenity:hover .amenity__icon { transform: translateY(-4px); }
.amenity__label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--espresso);
}

.apt-preview {
  padding: 100px 96px;
  max-width: 1600px;
  margin: 0 auto;
}
.apt-preview__head { text-align: center; margin-bottom: 64px; }
.apt-preview__head .eyebrow { margin-bottom: 20px; }
.apt-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.apt-card {
  display: block;
  position: relative;
  background: transparent;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.apt-card:hover { transform: translateY(-6px); }
.apt-card__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  padding: 8px;
  background: var(--bone);
  box-shadow: 0 1px 0 var(--taupe-light), 0 24px 50px rgba(42,33,27,0.07);
  margin-bottom: 24px;
  position: relative;
}
.apt-card__photo::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--bone);
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(168,139,92,0.18);
}
.apt-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.apt-card:hover .apt-card__photo img { transform: scale(1.06); }
.apt-card__caption .eyebrow { margin-bottom: 8px; }
.apt-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.apt-card__meta {
  font-size: 13px;
  color: var(--espresso-soft);
  margin-bottom: 18px;
}
.apt-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--taupe);
}
.apt-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--espresso);
}
.apt-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.apt-preview__viewall { text-align: center; margin-top: 80px; }

.hood {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 96px;
  padding: 100px 96px;
  max-width: 1600px;
  margin: 0 auto;
  align-items: center;
}
.hood__photo {
  position: relative;
  padding: 8px;
  background: var(--bone);
  box-shadow: 0 1px 0 var(--taupe-light), 0 30px 60px rgba(42,33,27,0.07);
}
.hood__photo::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--bone);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(168,139,92,0.18);
}
.hood__photo img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.hood__text { max-width: 460px; }
.hood__text h2 { margin: 16px 0 28px; }
.hood__text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--espresso-soft);
  margin-bottom: 32px;
  text-wrap: pretty;
}

.packages {
  padding: 100px 96px;
  max-width: 100%;
  background: var(--cream);
}
.packages__head { text-align: center; margin-bottom: 64px; max-width: 1600px; margin-left: auto; margin-right: auto; }
.packages__head .eyebrow { margin-bottom: 20px; }
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.package {
  background: var(--bone);
  padding: 64px 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s;
}
.package:hover { transform: translateY(-4px); }
.package--feat {
  background: var(--espresso);
  color: var(--bone);
}
.package--feat .package__amount, .package--feat .package__name em { color: var(--bone); }
.package--feat .package__list li { color: rgba(244, 239, 230, 0.85); }
.package--feat .package__list li::before { background: var(--accent-gilt); }
.package__badge {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gilt);
  font-weight: 500;
}
.package__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 32px;
  line-height: 1.1;
}
.package__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--taupe);
}
.package--feat .package__price { border-bottom-color: rgba(168,139,92,0.4); }
.package__amount {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--accent-primary);
  font-weight: 400;
}
.package__unit {
  font-size: 13px;
  color: var(--espresso-soft);
}
.package--feat .package__unit { color: rgba(244,239,230,0.7); }
.package__list {
  list-style: none;
  flex: 1;
  margin-bottom: 40px;
}
.package__list li {
  position: relative;
  padding-left: 18px;
  padding-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--espresso-soft);
}
.package__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  background: var(--accent-primary);
  border-radius: 50%;
}
.package__cta { width: 100%; }
.package--feat .btn--solid {
  background: var(--bone);
  color: var(--espresso);
  border-color: var(--bone);
}
.package--feat .btn--solid:hover { background: var(--accent-primary); color: var(--bone); border-color: var(--accent-primary); }
.package--feat .btn--solid span { color: inherit; }

.video-tour { padding: 100px 96px; }
.video-tour__photo {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 8px;
  background: var(--bone);
  box-shadow: 0 1px 0 var(--taupe-light), 0 40px 80px rgba(42,33,27,0.12);
}
.video-tour__photo::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--bone);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(168,139,92,0.18);
  z-index: 1;
}
.video-tour__photo img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; filter: brightness(0.85); }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 1px solid var(--accent-gilt);
  background: rgba(244,239,230,0.18);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  color: var(--bone);
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.play-btn:hover { background: var(--accent-gilt); color: var(--espresso); transform: translate(-50%, -50%) scale(1.05); }
.video-tour__caption {
  position: absolute;
  bottom: 32px; left: 0; right: 0;
  text-align: center;
  z-index: 3;
  color: var(--bone);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
}

.modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(42, 33, 27, 0.55);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
}
.modal__card {
  position: relative;
  width: min(560px, calc(100% - 64px));
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: var(--bone);
  padding: 56px;
  z-index: 2;
  animation: rise 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal__close {
  position: absolute;
  top: 18px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--espresso-soft);
  line-height: 1;
  width: 32px; height: 32px;
}
.modal__close:hover { color: var(--accent-primary); }
.modal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  margin: 12px 0 36px;
}
.booking-form { display: grid; gap: 24px; }
.booking-form label { display: block; }
.booking-form .eyebrow { margin-bottom: 8px; }
.booking-form input, .booking-form select {
  width: 100%;
  border-bottom: 1px solid var(--taupe);
  padding: 8px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--espresso);
  font-style: italic;
  transition: border-color 0.3s;
}
.booking-form input:focus, .booking-form select:focus {
  border-bottom-color: var(--accent-gilt);
}
.booking-form input:invalid:not(:focus):not(:placeholder-shown) { border-bottom-color: var(--accent-primary); }
.booking-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.modal__note {
  font-size: 11px;
  color: var(--espresso-soft);
  letter-spacing: 0.08em;
  margin-top: 8px;
  text-align: center;
}
.modal__success { text-align: center; padding: 40px 0; }
.modal__success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  margin-bottom: 16px;
  color: var(--accent-primary);
}

.site-footer {
  background: var(--cream);
  padding: 120px 96px 64px;
  position: relative;
}
.footer-monogram {
  text-align: center;
  color: var(--accent-gilt);
  margin-bottom: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col .eyebrow { margin-bottom: 16px; }
.footer-col p { font-size: 14px; line-height: 1.9; color: var(--espresso-soft); }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-primary); }
.footer-bottom { text-align: center; margin-top: 96px; }
.footer-signoff {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--espresso);
  margin-bottom: 32px;
}
.footer-copyright {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tweak-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 80;
  width: 48px; height: 48px;
  background: var(--accent-primary);
  color: var(--bone);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(42,33,27,0.25);
  transition: transform 0.3s, background 0.3s;
}
.tweak-fab:hover { transform: scale(1.08); }
.tweak-fab svg { width: 20px; height: 20px; }

.tweak-panel {
  position: fixed;
  bottom: 88px; right: 24px;
  width: 320px;
  background: var(--bone);
  border: 1px solid var(--taupe);
  z-index: 80;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(42,33,27,0.16);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.tweak-panel.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.tweak-panel__head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--taupe);
}
.tweak-panel__title { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; }
.tweak-panel__close { font-size: 20px; color: var(--espresso-soft); }
.tweak-group { margin-bottom: 24px; }
.tweak-group__label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--accent-gilt);
  font-weight: 500;
}
.swatch-row { display: flex; gap: 12px; flex-wrap: wrap; }
.swatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--taupe);
  cursor: none;
  position: relative;
  transition: transform 0.2s;
}
@media (hover: none) { .swatch { cursor: pointer; } }
.swatch:hover { transform: scale(1.1); }
.swatch.is-active { border: 1px solid var(--espresso); box-shadow: 0 0 0 2px var(--bone), 0 0 0 3px var(--espresso); }

@media (max-width: 1100px) {
  .site-header { padding: 20px 32px; }
  .site-header.is-scrolled { padding: 14px 32px; }
  .hero__content { padding: 0 32px; }
  .story, .hood { padding: 64px 32px; grid-template-columns: 1fr; gap: 56px; }
  .amenities, .apt-preview, .packages, .video-tour, .site-footer { padding: 64px 32px; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
  .apt-preview__grid, .packages__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .header-utils .dir-back { display: none; }
  .mobile-nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    width: 28px; height: 22px;
    background: none;
    justify-content: center; align-items: center;
    flex-shrink: 0;
  }
  .mobile-nav-toggle span {
    display: block;
    width: 24px; height: 1px;
    background: var(--espresso);
    transition: transform 0.3s;
  }
  .mobile-nav-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
  .mobile-nav-toggle.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 96px 32px 48px;
    gap: 18px;
    position: fixed;
    inset: 0;
    background: var(--bone);
    z-index: 95;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-nav.is-open { transform: translateY(0); }
  .mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 34px;
    font-weight: 400;
    color: var(--espresso);
    line-height: 1.1;
  }
  .mobile-nav__back {
    font-family: 'Inter', sans-serif !important;
    font-style: normal !important;
    font-size: 12px !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-gilt) !important;
    margin-top: 32px;
  }
  .mobile-nav__group {
    margin: -8px 0 8px 0;
  }
  .mobile-nav__group-label {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gilt);
    margin-bottom: 8px;
    display: block;
  }
  .mobile-nav__sub {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 400;
    color: var(--espresso-soft);
    padding: 4px 0 4px 20px;
  }
}
@media (min-width: 1600px) {
  .hero__content { padding-top: 104px; }
}
@media (max-width: 600px) {
  .hero__title { font-size: 56px; }
  .modal__card { padding: 32px; }
}

/* Mobile hero: less zoom, smaller height, focal point higher */
@media (max-width: 1100px) {
  .hero { min-height: 560px; height: 90vh; }
  .hero__photo img {
    transform: none;
    animation: none;
    object-position: center 35%;
  }
}
