:root {
  --ink: #14181f;
  --ink-soft: #2a313c;
  --paper: #f3f4f6;
  --paper-deep: #e6e8ec;
  --white: #ffffff;
  --brand: #9e1717;
  --brand-deep: #7a1010;
  --gold: #b8943a;
  --muted: #5c6573;
  --line: rgba(20, 24, 31, 0.1);
  --shadow: 0 24px 60px rgba(20, 24, 31, 0.14);
  --radius: 2px;
  --header-h: 4.5rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #f7f7f8;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--brand);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container--wide {
  width: min(1280px, calc(100% - 2rem));
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-head {
  max-width: 40rem;
  margin: 0 auto clamp(2.25rem, 4vw, 3.25rem);
  text-align: center;
}

.section-head h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-head p {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

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

.btn-primary {
  background: var(--brand);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brand-deep);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
}

.btn-lg {
  min-height: 3.25rem;
  padding-inline: 1.5rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(247, 248, 250, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-text em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-header:not(.is-scrolled) .brand-text strong,
.site-header:not(.is-scrolled) .brand-text em,
.site-header:not(.is-scrolled) .nav-desktop a,
.site-header:not(.is-scrolled) .btn-ghost {
  color: var(--white);
}

.site-header:not(.is-scrolled) .brand-text em {
  color: rgba(255, 255, 255, 0.72);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-desktop a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: none;
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.site-header:not(.is-scrolled) .nav-toggle span {
  background: var(--white);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-mobile {
  display: grid;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem 1.25rem;
  background: rgba(247, 248, 250, 0.98);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile a {
  padding: 0.85rem 0.25rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.nav-mobile .btn {
  margin-top: 0.75rem;
  border-bottom: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
}

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

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fallback {
  background-size: cover;
  background-position: center top;
  display: none;
}

.hero-media.is-fallback .hero-video {
  display: none;
}

.hero-media.is-fallback .hero-fallback {
  display: block;
  animation: heroKen 28s ease-in-out infinite alternate;
}

@keyframes heroKen {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 16, 0.52) 0%, rgba(10, 12, 16, 0.35) 42%, rgba(10, 12, 16, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(740px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: calc(var(--header-h) + 4rem) 0 5.5rem;
  text-align: center;
  justify-self: center;
  align-self: center;
  animation: rise 1s var(--ease) both;
}

.hero-seal {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
  animation: sealIn 1.1s var(--ease) 0.15s both;
}

.hero-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-lead {
  margin: 0 auto 1.75rem;
  max-width: 30rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.hero-stats {
  list-style: none;
  margin: 2.5rem auto 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem 2.5rem;
  max-width: 40rem;
}

.hero-stats li {
  display: grid;
  gap: 0.2rem;
  text-align: center;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}

.hero-stats span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 2;
  width: 1.5rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 4px;
  height: 4px;
  margin: 0.45rem auto 0;
  border-radius: 50%;
  background: var(--white);
  animation: cue 1.6s ease-in-out infinite;
}

@keyframes cue {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sealIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* About */
.about-figure {
  margin: 0 auto 2.75rem;
  max-width: 56rem;
  overflow: hidden;
  background: var(--paper-deep);
}

.about-figure img {
  width: 100%;
  height: min(32rem, 66vw);
  object-fit: cover;
  object-position: center top;
}

.about-figure figcaption {
  margin: 0;
  padding: 0.9rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Promo video */
.promo-video {
  background: var(--ink);
  color: var(--white);
}

.promo-video .section-kicker {
  color: var(--gold);
}

.promo-video .section-head h2 {
  color: var(--white);
}

.promo-video .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.video-frame {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

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

.video-frame--native {
  box-shadow: 0 18px 40px rgba(20, 24, 31, 0.12);
}

.video-frame--native video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

.trust-row {
  display: grid;
  gap: 1.5rem;
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.trust-row article {
  padding: 0 0.5rem;
}

.trust-row h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.trust-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Amenities */
.amenities {
  background: var(--white);
}

.amenity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.amenity-card {
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.5rem 1.15rem 1.35rem;
  text-align: center;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.amenity-card:hover {
  border-color: rgba(158, 23, 23, 0.28);
  box-shadow: 0 12px 28px rgba(20, 24, 31, 0.06);
}

.amenity-card__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(158, 23, 23, 0.18);
  background: rgba(158, 23, 23, 0.04);
  color: var(--brand);
}

.amenity-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.amenity-card__body {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 0;
}

.amenity-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
}

.amenity-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.amenity-card ul {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.amenity-card li {
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(158, 23, 23, 0.18);
  background: rgba(158, 23, 23, 0.04);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Spaces / Yaşam Alanları */
.facilities {
  background: #f5f6f7;
}

.space-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.space-tile {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  height: 100%;
  background: transparent;
  color: var(--ink);
}

.space-frame--fit .space-frame__media img {
  object-fit: contain;
  transform: none;
}

.space-frame--fit:hover .space-frame__media img,
.space-frame--fit:focus-visible .space-frame__media img {
  transform: none;
}

.space-frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 14px;
  margin: 0;
  background: #fff;
  border: 1px solid #d8dbe0;
  box-shadow: 0 12px 32px rgba(20, 24, 31, 0.07);
  cursor: zoom-in;
  text-align: left;
  color: inherit;
  font: inherit;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.space-frame::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(158, 23, 23, 0.35);
  pointer-events: none;
  z-index: 2;
}

.space-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid #e5e7eb;
  pointer-events: none;
  z-index: 2;
}

.space-frame__media {
  overflow: hidden;
  background: #e8eaed;
  border: 1px solid #cfd3d9;
}

.space-frame__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
  transform-origin: center;
}

.space-frame__hint {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 3;
  padding: 0.4rem 0.7rem;
  background: rgba(20, 24, 31, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.25s var(--ease);
  pointer-events: none;
}

@media (hover: hover) {
  .space-frame__hint {
    opacity: 0;
  }

  .space-tile:hover .space-frame__hint,
  .space-frame:focus-visible .space-frame__hint {
    opacity: 1;
  }
}

.space-caption {
  text-align: center;
  padding: 0 0.25rem;
  display: grid;
  align-content: start;
  gap: 0.35rem;
  min-height: 4.25rem;
}

.space-caption h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

.space-caption p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--muted);
}

.space-tile:hover .space-frame,
.space-frame:focus-visible {
  border-color: #b9bec7;
  box-shadow: 0 16px 36px rgba(20, 24, 31, 0.12);
  outline: none;
}

.space-tile:hover .space-frame__media img,
.space-frame:focus-visible .space-frame__media img {
  transform: scale(1.03);
}

/* Process */
.process {
  background: #eef0f2;
}

.process-steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  max-width: 52rem;
  text-align: center;
  counter-reset: none;
}

.process-steps li {
  padding: 0 0.75rem;
}

.process-steps span {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--brand);
}

.process-steps h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
}

/* Location */
.location {
  background: var(--ink);
  color: var(--white);
}

.location .section-kicker {
  color: var(--gold);
}

.location .section-head h2 {
  color: var(--white);
}

.location .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.location-list {
  display: none;
}

/* University transport cards */
.uni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.25rem;
  margin: 2.5rem auto 0;
  max-width: 66rem;
}

.uni-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.6rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}

.uni-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.uni-card__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.uni-card__logo {
  flex: none;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  padding: 0.25rem;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
}

.uni-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.uni-card__logo--dark {
  background: #0b0d12;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  width: 4.25rem;
  height: 3.4rem;
  padding: 0.4rem;
}

.uni-card__logo--dark img {
  object-fit: contain;
}

.uni-card__dist {
  margin-left: auto;
  flex: none;
  align-self: flex-start;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(212, 175, 122, 0.14);
  border: 1px solid rgba(212, 175, 122, 0.28);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.uni-card__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

.uni-card__head p {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.uni-card__desc {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.transport-strip {
  list-style: none;
  margin: 2.75rem auto 0;
  padding: 0;
  max-width: 66rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}

.transport-strip li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.transport-strip__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  background: rgba(212, 175, 122, 0.14);
  color: var(--gold);
}

.transport-strip__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.transport-strip strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.transport-strip span {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
}

.uni-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold);
  transition: gap 0.2s var(--ease), opacity 0.2s var(--ease);
}

.uni-card__link svg {
  width: 1.05rem;
  height: 1.05rem;
}

.uni-card__link:hover {
  gap: 0.7rem;
  opacity: 0.85;
}

.location-actions {
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}

.location-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.location-map {
  min-height: 22rem;
  overflow: hidden;
  max-width: 56rem;
  margin: 2.75rem auto 0;
  border-radius: 16px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

/* Contact */
.contact-details {
  margin: 0 auto 2rem;
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  text-align: center;
}

.contact-details a,
.contact-details > div {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  padding: 1.15rem 0.75rem;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s var(--ease);
}

.contact-card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.contact-details a:hover {
  color: var(--brand);
}

.contact-card:hover .contact-icon {
  transform: translateY(-2px) scale(1.06);
}

.contact-card:hover .contact-icon--whatsapp {
  background: rgba(37, 211, 102, 0.2);
}

.contact-card:hover .contact-icon--phone {
  background: rgba(158, 23, 23, 0.14);
}

.contact-card:hover .contact-icon--address {
  background: rgba(20, 24, 31, 0.1);
  color: var(--brand);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.2rem;
  border-radius: 50%;
  background: rgba(158, 23, 23, 0.08);
  color: var(--brand);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.contact-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}

.contact-icon--whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #1f9e4d;
}

.contact-icon--address {
  background: rgba(20, 24, 31, 0.06);
  color: var(--ink-soft);
}

.contact-details > span,
.contact-details a > span:not(.contact-icon),
.contact-details > div > span:not(.contact-icon) {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-details strong {
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 34rem;
  margin-inline: auto;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(158, 23, 23, 0.25);
  border-color: var(--brand);
}

.contact-form .btn {
  width: 100%;
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

/* Footer */
.site-footer {
  background: #0e1218;
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
}

.footer-brand img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.footer-brand p,
.footer-copy {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.site-footer nav a:hover {
  color: var(--white);
}

.footer-copy {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* WhatsApp */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #ffffff;
  border: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.whatsapp-fab:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

.whatsapp-fab svg {
  width: 2rem;
  height: 2rem;
  display: block;
}

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  max-width: min(1200px, 96vw);
  width: min(1200px, 96vw);
  background: transparent;
  margin: auto;
}

.lightbox::backdrop {
  background: rgba(8, 10, 14, 0.92);
}

.lightbox img {
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
  background: #000;
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(20, 24, 31, 0.65);
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(20, 24, 31, 0.9);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .header-phone {
    display: inline-flex;
  }

  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line);
  }

  .amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .space-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 1.75rem;
  }

  .space-frame {
    padding: 16px;
  }

  .space-frame::before {
    inset: 8px;
  }

  .space-frame::after {
    inset: 12px;
  }

  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .contact-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .contact-details a,
  .contact-details > div {
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .contact-details > :nth-child(3n) {
    border-right: 0;
  }

  .contact-details > :nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .contact-details > :last-child {
    border-right: 0;
    border-bottom: 0;
  }
}

@media (min-width: 960px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .amenity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .space-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 2rem;
  }

  .space-frame__media img {
    aspect-ratio: 16 / 10;
  }

  .space-caption h3 {
    font-size: 1.55rem;
  }
}

/* Mobile: show full drone frame instead of heavy side-crop */
@media (max-width: 719px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    min-height: 100dvh;
    place-items: stretch;
    background: var(--ink);
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex: 0 0 auto;
    margin-top: var(--header-h);
    background: #000;
  }

  .hero-video,
  .hero-fallback {
    object-fit: cover;
    object-position: center center;
  }

  .hero-fallback {
    background-position: center center;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(10, 12, 16, 0.15) 0%, rgba(10, 12, 16, 0.25) 55%, rgba(10, 12, 16, 0.92) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: min(740px, calc(100% - 2rem));
    margin: -2.5rem auto 0;
    padding: 0 0 2.75rem;
    align-self: stretch;
    justify-self: stretch;
  }

  .hero-seal {
    width: 4.25rem;
    height: 4.25rem;
    margin-bottom: 0.85rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 2.8rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-stats {
    margin-top: 1.75rem;
    gap: 1.1rem 1.5rem;
    padding-top: 1rem;
  }

  .hero-stats strong {
    font-size: 1.45rem;
  }

  .scroll-cue {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-content,
  .hero-seal,
  .scroll-cue span,
  .hero-media.is-fallback .hero-fallback {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
