
/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-900: #0a1e38;
  --blue-800: #0d2d4f;
  --blue-700: #12406e;
  --blue-600: #1a5fa8;
  --blue-500: #2176c9;
  --blue-400: #3a8ed4;
  --blue-300: #6aafe2;
  --blue-100: #ddeeff;
  --blue-50:  #f0f7ff;

  --neutral-900: #111827;
  --neutral-700: #374151;
  --neutral-500: #6b7280;
  --neutral-300: #d1d5db;
  --neutral-100: #f3f4f6;
  --neutral-50:  #f9fafb;
  --white: #ffffff;

  --success: #16a34a;
  --warning: #d97706;
  --error:   #dc2626;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 16px rgba(0,0,0,.10), 0 1px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--neutral-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}
.btn--primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: 0 6px 20px rgba(26,95,168,.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn--nav {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
  padding: 9px 22px;
  font-size: .875rem;
}
.btn--nav:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.btn--lg { padding: 16px 40px; font-size: 1rem; }

.section-tag {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--neutral-500);
  line-height: 1.65;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-300);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-800);
  font-size: 1rem;
  font-weight: 500;
}
.navbar__brand strong { font-weight: 700; }

.brand-icon {
  width: 32px;
  height: 32px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__links a:not(.btn) {
  padding: 8px 16px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--neutral-700);
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.navbar__links a:not(.btn):hover {
  color: var(--blue-600);
  background: var(--blue-50);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,30,56,.82) 0%,
    rgba(13,45,79,.72) 50%,
    rgba(18,64,110,.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 100px;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 20px 32px;
  width: fit-content;
  flex-wrap: wrap;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child  { padding-right: 0; }

.stat__number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat__label {
  font-size: .8125rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  white-space: nowrap;
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

.intro-strip {
  background: var(--blue-800);
  padding: 20px 0;
}

.intro-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.intro-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: .9375rem;
  font-weight: 500;
}

.intro-strip__icon {
  color: #4ade80;
  font-size: 1rem;
  font-weight: 700;
}

.spaces {
  padding: 96px 0 80px;
  background: var(--neutral-50);
}

.spaces__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.space-card {
  background: var(--white);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.space-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--blue-300);
}

.space-card--featured {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 1px var(--blue-600), var(--shadow);
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 60%);
}
.space-card--featured:hover {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 1px var(--blue-700), var(--shadow-lg);
}

.space-card--large {
  background: linear-gradient(135deg, #f0f7ff 0%, var(--white) 60%);
}

.space-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.space-card__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.space-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue-600);
}

.space-card__tag {
  font-size: .75rem;
  font-weight: 600;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 3px 10px;
  border-radius: 100px;
}
.space-card__tag--accent {
  color: var(--blue-800);
  background: var(--blue-100);
  border-color: var(--blue-300);
}

.space-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.space-card__area {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.area-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-600);
  line-height: 1;
}
.area-unit {
  font-size: .9375rem;
  color: var(--neutral-500);
  font-weight: 500;
}

.space-card__extra {
  font-size: .875rem;
  color: var(--neutral-500);
  margin-bottom: 20px;
}
.space-card__extra strong { color: var(--blue-700); }

.space-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.space-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--neutral-700);
}
.space-card__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue-500);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.summary-table {
  background: var(--white);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.summary-table__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-900);
  padding: 20px 28px 16px;
  border-bottom: 1px solid var(--neutral-300);
}

.summary-table__grid {
  display: flex;
  flex-direction: column;
}

.summary-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.75fr 1fr;
  padding: 14px 28px;
  gap: 16px;
  font-size: .9375rem;
  border-bottom: 1px solid var(--neutral-100);
  transition: background .15s;
}
.summary-table__row:last-child { border-bottom: none; }
.summary-table__row:not(.summary-table__head):hover {
  background: var(--blue-50);
}

.summary-table__head {
  background: var(--neutral-50);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--neutral-500);
}

.summary-table__row--highlight {
  background: var(--blue-50);
  font-weight: 600;
  color: var(--blue-800);
}

.gallery {
  padding: 96px 0 0;
  background: var(--white);
}

.gallery .section-header { margin-bottom: 48px; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}

.gallery__item {
  overflow: hidden;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item--main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery__item--wide {
  grid-column: 2 / 4;
}

.location {
  padding: 96px 0;
  background: var(--neutral-50);
}

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.location__text .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.location__text .section-tag { margin-bottom: 12px; }

.location__text > p {
  font-size: 1.0625rem;
  color: var(--neutral-700);
  line-height: 1.7;
  margin-bottom: 28px;
}

.location__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9375rem;
  color: var(--neutral-700);
}

.location__icon {
  color: var(--blue-600);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.location__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.location__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform .5s;
}
.location__image:hover img { transform: scale(1.02); }

.cta-banner {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 100%);
  padding: 64px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-banner__text p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  line-height: 1.6;
}

.cta-banner .btn--primary {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--white);
  flex-shrink: 0;
}
.cta-banner .btn--primary:hover {
  background: var(--blue-50);
  border-color: var(--blue-50);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}

.contact {
  padding: 96px 0;
  background: var(--white);
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.contact__card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.contact__card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.contact__card--phone {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  border-color: var(--blue-700);
}

.contact__card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact__card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue-600);
}
.contact__card-icon--secondary svg { color: var(--blue-500); }

.contact__card--phone .contact__card-icon {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.3);
}
.contact__card--phone .contact__card-icon svg { color: var(--white); }

.contact__label {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--neutral-500);
  margin-bottom: 8px;
}
.contact__card--phone .contact__label { color: rgba(255,255,255,.75); }

.contact__value {
  display: block;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--blue-800);
  margin-bottom: 6px;
  transition: color .15s;
}
a.contact__value:hover { color: var(--blue-500); }
.contact__card--phone .contact__value { color: var(--white); }
.contact__card--phone a.contact__value:hover { color: rgba(255,255,255,.85); }

.contact__value--text { font-size: 1.375rem; }

.contact__note {
  font-size: .875rem;
  color: var(--neutral-500);
}
.contact__card--phone .contact__note { color: rgba(255,255,255,.65); }

.footer {
  background: var(--blue-900);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer .navbar__brand,
.footer .brand-text {
  color: rgba(255,255,255,.85);
}
.footer .brand-icon {
  background: var(--blue-600);
}

.footer__copy {
  font-size: .875rem;
  color: rgba(255,255,255,.4);
}

.footer__tel a, 
.footer a {
  font-size: .9375rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.footer__tel a:hover,
.footer a:hover { color: var(--white); }

@media (max-width: 1024px) {
  .spaces__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-rows: 220px 220px; }
}

@media (max-width: 768px) {
  .navbar__links a:not(.btn) { display: none; }
  .hero__stats { padding: 16px 20px; }
  .stat { padding: 0 16px; }
  .stat__number { font-size: 1.5rem; }
  .spaces__grid { grid-template-columns: 1fr; }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery__item--main { grid-column: 1 / 2; grid-row: 1 / 2; }
  .gallery__item--wide { grid-column: 1 / 3; }
  .location__inner { grid-template-columns: 1fr; gap: 40px; }
  .location__image { order: -1; }
  .location__image img { height: 280px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .contact__cards { grid-template-columns: 1fr; max-width: 400px; }
  .summary-table__row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .summary-table__head { display: none; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__stats { flex-direction: column; width: 100%; gap: 16px; }
  .stat { padding: 0; }
  .stat__divider { width: 40px; height: 1px; }
  .intro-strip__inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .gallery__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery__item,
  .gallery__item--main,
  .gallery__item--wide { grid-column: 1; grid-row: auto; }
  .gallery__item img { height: 220px; }
  .summary-table__row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: no-preference) {
  .space-card,
  .contact__card,
  .gallery__item {
    animation: fadeUp .5s ease both;
  }
  .space-card:nth-child(2) { animation-delay: .1s; }
  .space-card:nth-child(3) { animation-delay: .15s; }
  .space-card:nth-child(4) { animation-delay: .2s; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
