/* ==========================================================
   Lumière Square — Premium Officetel & Retail
   Palette: Navy #0E1E3A / Gold #C9A961 / Ivory #F7F4EC / Text #2A2A2A
========================================================== */

:root {
  --navy: #0E1E3A;
  --navy-2: #172845;
  --navy-3: #0a1631;
  --gold: #C9A961;
  --gold-2: #b1904a;
  --ivory: #F7F4EC;
  --ivory-2: #efeadd;
  --text: #2A2A2A;
  --text-soft: #5b5b5b;
  --text-muted: #8a8a8a;
  --line: rgba(14, 30, 58, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --white: #ffffff;

  --serif: "Noto Serif KR", "Nanum Myeongjo", ui-serif, Georgia, serif;
  --sans: "Noto Sans KR", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Apple SD Gothic Neo", sans-serif;

  --nav-h: 76px;
  --radius: 6px;
  --shadow-sm: 0 8px 20px rgba(14, 30, 58, 0.06);
  --shadow-md: 0 20px 40px rgba(14, 30, 58, 0.10);
  --shadow-lg: 0 30px 60px rgba(14, 30, 58, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}
.container--narrow { max-width: 780px; }

/* =====================
   NAV
====================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 60;
  background: rgba(247, 244, 236, 0);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(247, 244, 236, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(14,30,58,0.05);
}
.nav__inner {
  width: min(1240px, 100% - 40px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ivory);
  transition: color .3s ease;
}
.nav.is-scrolled .brand,
.nav.is-scrolled .nav__links a { color: var(--navy); }
.brand__mark {
  width: 34px; height: 34px;
  display: inline-grid; place-items: center;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0;
  border-radius: 2px;
}
.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 14px;
}
.brand__name span { color: var(--gold); margin-left: 4px; }

.nav__links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px;
  color: var(--ivory);
}
.nav__links a { position: relative; padding: 6px 0; transition: color .2s; }
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  padding: 10px 20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: background .2s, transform .2s;
}
.nav__cta:hover { background: var(--gold-2); }

.nav__toggle {
  display: none;
  background: none; border: 0; padding: 6px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ivory);
  transition: background .3s, transform .3s, opacity .3s;
}
.nav.is-scrolled .nav__toggle span { background: var(--navy); }
.nav__mobile {
  display: none;
  position: absolute;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 30px rgba(14,30,58,0.1);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  padding: 12px 6px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 500;
}
.nav__mobile a:last-child { border-bottom: 0; }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
}

/* =====================
   HERO
====================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__img {
  position: absolute; inset: -6%;
  background-image:
    linear-gradient(180deg, rgba(14,30,58,0.35), rgba(14,30,58,0.55) 60%, rgba(10,22,49,0.85)),
    url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  animation: kenburns 24s ease-in-out infinite alternate;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 20% 30%, rgba(201, 169, 97, 0.16), transparent 60%),
    radial-gradient(900px 500px at 90% 90%, rgba(14, 30, 58, 0.45), transparent 65%);
  pointer-events: none;
}
@keyframes kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.08) translate(-1.2%, -0.8%); }
  100% { transform: scale(1.12) translate(1.4%, 1%); }
}
.hero__content {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
  position: relative;
}
.hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(201, 169, 97, 0.5);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.24em;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--serif);
  color: var(--ivory);
  font-size: clamp(36px, 6.4vw, 78px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero__project {
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 20px);
  color: var(--ivory);
  margin: 0 0 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero__project strong { color: var(--gold); font-weight: 700; }
.hero__divider { color: rgba(255,255,255,0.4); margin: 0 12px; }
.hero__desc {
  color: rgba(247,244,236,0.86);
  font-size: clamp(14px, 1.4vw, 17px);
  max-width: 640px;
  margin: 0 0 36px;
  line-height: 1.75;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.16);
  max-width: 720px;
}
.hero__meta > div { display: flex; flex-direction: column; gap: 6px; }
.hero__meta span {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
}
.hero__meta strong {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--ivory);
  font-weight: 600;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 20px; height: 40px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  display: grid; place-items: start center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 2px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  display: block;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { opacity: 0; transform: translateY(0); }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* =====================
   BUTTONS
====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  min-width: 180px;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--ivory); }
.btn--wide { width: 100%; padding: 17px 30px; font-size: 15px; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* =====================
   SECTIONS
====================== */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.section--ivory { background: var(--ivory); }
.section--navy  { background: var(--navy); color: var(--ivory); }
.section--dark  { background: #0a1631; color: var(--ivory); }

.section__head { text-align: center; margin-bottom: 64px; }
.section__tag {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.28em;
  font-weight: 600;
  margin-bottom: 14px;
}
.section__title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  margin-bottom: 18px;
  font-weight: 700;
}
.section__head--light .section__title { color: var(--ivory); }
.section__lead {
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.85;
}
.section__head--light .section__lead { color: rgba(247,244,236,0.75); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__img { animation: none; }
}

/* =====================
   OVERVIEW
====================== */
.overview__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.stat:last-child { border-right: 0; }
.stat__label {
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
}
.stat__value {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--navy);
  font-weight: 700;
  display: inline-flex; align-items: baseline; justify-content: center; gap: 3px;
}
.stat__value em { font-style: normal; font-size: 14px; font-weight: 500; color: var(--text-soft); margin-left: 3px; }

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.feature {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  text-align: left;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 169, 97, 0.4);
}
.feature__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  color: var(--gold);
  background: rgba(201, 169, 97, 0.10);
  border-radius: 4px;
  margin-bottom: 20px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--navy);
}
.feature p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.75;
  margin: 0;
}

/* =====================
   LOCATION
====================== */
.location {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.location__map {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-2);
  border: 1px solid rgba(201, 169, 97, 0.25);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
}
.location__mapImg {
  flex: 1;
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(10,22,49,0.35), rgba(10,22,49,0.72)),
    url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}
.location__mapImg::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(201,169,97,0.35), 0 0 0 14px rgba(201,169,97,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 6px rgba(201,169,97,0.35), 0 0 0 14px rgba(201,169,97,0.18); }
  50%     { box-shadow: 0 0 0 10px rgba(201,169,97,0.45), 0 0 0 22px rgba(201,169,97,0.08); }
}
.location__map figcaption {
  padding: 18px 24px;
  color: var(--ivory);
  font-size: 13px;
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.15);
}

.location__lists { display: flex; flex-direction: column; gap: 28px; }
.loc-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: border-color .3s;
}
.loc-block:hover { border-color: rgba(201, 169, 97, 0.4); }
.loc-block h3 {
  color: var(--ivory);
  font-size: 18px;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.loc-block__badge {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  border: 1px solid rgba(201,169,97,0.45);
  font-weight: 600;
  border-radius: 2px;
}
.loc-block ul { margin: 0; padding: 0; list-style: none; }
.loc-block li {
  padding: 8px 0 8px 18px;
  color: rgba(247,244,236,0.82);
  font-size: 14.5px;
  position: relative;
  line-height: 1.7;
}
.loc-block li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.loc-block li strong { color: var(--ivory); font-weight: 600; }

/* =====================
   TYPES
====================== */
.types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.type-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow .4s ease, border-color .3s ease;
  position: relative;
}
.type-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 169, 97, 0.55);
}
.type-card__img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-2);
  position: relative;
  overflow: hidden;
}
.type-card__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,30,58,0) 40%, rgba(14,30,58,0.6));
}
.type-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  border-radius: 2px;
  z-index: 1;
}
.type-card__body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.type-card h3 {
  font-size: 22px;
  color: var(--navy);
  display: flex; align-items: baseline; gap: 10px;
}
.type-card h3 small {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.type-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 6px 0 4px;
}
.type-card__specs div {
  font-size: 13px;
  color: var(--text-soft);
  display: flex; justify-content: space-between;
}
.type-card__specs strong { color: var(--navy); font-weight: 600; }
.type-card p {
  font-size: 14.5px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.75;
}
.type-card__cta {
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold-2);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .2s, gap .2s;
}
.type-card:hover .type-card__cta { color: var(--gold); gap: 12px; }
.type-card__cta::after { content: "→"; font-size: 15px; }

/* =====================
   GALLERY
====================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
}
.gal {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/3;
  background-color: #0a1631;
}
.gal--tall { grid-row: span 2; aspect-ratio: auto; }
.gal--wide { grid-column: span 2; aspect-ratio: 16/9; }
.gal__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.gal:hover .gal__img { transform: scale(1.08); }
.gal__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 22px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
  color: var(--ivory);
  font-size: 14px;
  letter-spacing: 0.04em;
  display: flex; justify-content: space-between; align-items: end; gap: 12px;
}
.gal__cap span { color: var(--gold); font-size: 11px; letter-spacing: 0.24em; font-weight: 700; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgba(5, 12, 28, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox__stage {
  width: min(1200px, 100%);
  height: 100%;
  display: grid; place-items: center;
}
.lightbox__figure {
  margin: 0;
  width: 100%;
  max-width: 1100px;
  display: flex; flex-direction: column; gap: 16px;
}
.lightbox__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: #000;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.lightbox__figure figcaption {
  color: var(--ivory);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.04em;
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--ivory);
  font-size: 22px;
  line-height: 1;
  border-radius: 50%;
  z-index: 2;
  transition: background .2s, border-color .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.1); border-color: var(--ivory); }

/* =====================
   FORM
====================== */
.form {
  background: var(--white);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 20px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 0.06em;
  font-weight: 600;
}
.field__label em {
  font-style: normal;
  color: #c94f4f;
  margin-left: 2px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fafaf6;
  border-radius: 3px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%230E1E3A' stroke-width='1.6' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.16);
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #c94f4f;
  background: #fdf6f6;
}

.check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.6;
  cursor: pointer;
  user-select: none;
}
.check input {
  margin-top: 3px;
  accent-color: var(--gold);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.form__actions { margin-top: 6px; }
.form__note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.form__note.is-error { color: #c94f4f; }
.form__note.is-success { color: #2f7a52; }

/* =====================
   FOOTER
====================== */
.footer {
  background: var(--navy-3);
  color: rgba(247,244,236,0.75);
  padding: 60px 0 24px;
  font-size: 13.5px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand { display: flex; align-items: center; gap: 10px; color: var(--ivory); }
.footer__meta p { margin: 0 0 8px; line-height: 1.75; }
.footer__meta strong { color: var(--ivory); font-weight: 600; }
.footer__meta a { color: var(--gold); }
.footer__disclaimer { color: rgba(247,244,236,0.5); font-size: 12.5px; margin-top: 12px; }
.footer__copy {
  width: min(1200px, 100% - 40px);
  margin: 20px auto 0;
  padding-top: 12px;
  font-size: 12px;
  color: rgba(247,244,236,0.4);
  text-align: center;
  letter-spacing: 0.1em;
}

/* =====================
   MODAL
====================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 49, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn .3s ease;
}
.modal__panel {
  position: relative;
  width: min(460px, 100%);
  background: var(--ivory);
  border-radius: 8px;
  padding: 44px 32px 32px;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
  border: 1px solid rgba(201, 169, 97, 0.35);
  animation: rise .35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.modal__close {
  position: absolute; top: 12px; right: 14px;
  width: 34px; height: 34px;
  background: transparent;
  border: 0;
  font-size: 24px; color: var(--text-muted);
  border-radius: 50%;
  line-height: 1;
}
.modal__close:hover { background: rgba(14,30,58,0.06); color: var(--navy); }
.modal__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201,169,97,0.16);
  color: var(--gold-2);
  margin: 0 auto 20px;
  display: grid; place-items: center;
}
.modal__icon svg { width: 34px; height: 34px; }
.modal__panel h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.modal__panel p {
  color: var(--text-soft);
  margin: 0 0 8px;
  line-height: 1.7;
}
.modal__panel p strong { color: var(--navy); }
.modal__sub { font-size: 13.5px; color: var(--text-muted) !important; margin-top: 14px !important; padding-top: 14px; border-top: 1px solid var(--line); }
.modal__panel .btn { margin-top: 20px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

/* =====================
   RESPONSIVE
====================== */
.only-md { display: inline; }
.hero__br { display: inline; }

@media (max-width: 1024px) {
  .overview__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location { grid-template-columns: 1fr; gap: 40px; }
  .types { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gal--wide { grid-column: span 2; }
  .gal--tall { grid-row: auto; aspect-ratio: 4/3; }
}

@media (max-width: 720px) {
  .only-md { display: none; }
  .hero__br { display: none; }
  .hero__meta {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 100%;
  }
  .hero__actions .btn { flex: 1; min-width: 0; padding: 14px 20px; }
  .section { padding: 72px 0; }
  .section__head { margin-bottom: 48px; }
  .overview__stats {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }
  .stat { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .features { grid-template-columns: 1fr; }
  .types { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gal, .gal--wide, .gal--tall { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; }

  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__brand { justify-content: flex-start; }

  .lightbox { padding: 16px; }
  .lightbox__close { top: 12px; right: 12px; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 34px; }
  .hero__meta { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .btn { min-width: 0; }
  .modal__panel { padding: 36px 22px 26px; }
}
