/* ==========================================================================
   Samtastic Properties
   ========================================================================== */

:root {
	--ink: #0b1626;
	--ink-2: #16283f;
	--ink-soft: #5b6879;
	--line: #e4e8ee;
	--line-dark: rgba(255, 255, 255, .16);
	--paper: #ffffff;
	--wash: #f6f8fb;
	--gold: #a9812f;
	--gold-light: #c9a44c;
	--green: #0e7a45;

	--display: "Fraunces", "Iowan Old Style", Georgia, serif;
	--sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--radius: 16px;
	--radius-sm: 10px;
	--shadow: 0 1px 2px rgba(11, 22, 38, .05), 0 14px 34px -20px rgba(11, 22, 38, .4);
	--shadow-lg: 0 2px 4px rgba(11, 22, 38, .05), 0 30px 60px -30px rgba(11, 22, 38, .5);
	--header-h: 76px;

	/* Feed the plugin's shortcode styles from the theme palette. */
	--sam-ink: var(--ink);
	--sam-ink-soft: var(--ink-soft);
	--sam-line: var(--line);
	--sam-gold: var(--gold);
	--sam-radius: var(--radius);
	--sam-shadow: var(--shadow);
}

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

body {
	margin: 0;
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--ink); }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.15; letter-spacing: -.012em; margin: 0 0 .5em; }

.wrap { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.wrap--narrow { width: min(760px, calc(100% - 44px)); }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link:focus {
	position: fixed; top: 8px; left: 8px; z-index: 999; width: auto; height: auto;
	clip: auto; padding: 10px 16px; background: var(--ink); color: #fff; border-radius: 8px;
}

/* Buttons ---------------------------------------------------------------- */

.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 13px 26px; border: 1px solid transparent; border-radius: 999px;
	font-family: var(--sans); font-size: .93rem; font-weight: 600; letter-spacing: .01em;
	text-decoration: none; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--sm { padding: 9px 18px; font-size: .85rem; }
.btn--primary { background: var(--gold); color: #fff; }
.btn--primary:hover { background: #916d24; color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); color: #fff; }
.btn--ghost { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .5); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost-dark:hover { border-color: var(--ink); }
.btn--whatsapp { background: #1faa59; color: #fff; width: 100%; }
.btn--whatsapp:hover { background: #178645; color: #fff; }

/* Header ----------------------------------------------------------------- */

.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid var(--line);
	backdrop-filter: saturate(180%) blur(12px);
	transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header__inner { display: flex; align-items: center; gap: 28px; height: var(--header-h); }

.brand__text { display: block; text-decoration: none; line-height: 1.15; }
.brand__name { display: block; font-family: var(--display); font-size: 1.22rem; font-weight: 600; letter-spacing: -.01em; color: var(--ink); }
.brand__tag { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }
.custom-logo { max-height: 48px; width: auto; }

.site-nav { margin-left: auto; }
.nav-menu { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { text-decoration: none; font-size: .92rem; font-weight: 500; color: var(--ink); padding: 6px 0; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: var(--gold); border-color: var(--gold); }
.nav-menu .sub-menu { display: none; }

.site-header__actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; font-weight: 600; font-size: .9rem; color: var(--ink); white-space: nowrap; }
.header-phone:hover { color: var(--gold); }

.nav-toggle { display: none; width: 42px; height: 38px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; padding: 10px 9px; flex-direction: column; justify-content: space-between; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Transparent header while the hero is under it. */
body.has-hero .site-header:not(.is-stuck) {
	background: transparent; border-color: transparent; backdrop-filter: none;
}
body.has-hero .site-header:not(.is-stuck) .brand__name,
body.has-hero .site-header:not(.is-stuck) .nav-menu a,
body.has-hero .site-header:not(.is-stuck) .header-phone { color: #fff; }
body.has-hero .site-header:not(.is-stuck) .brand__tag { color: rgba(255, 255, 255, .72); }
body.has-hero .site-header:not(.is-stuck) .nav-toggle { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .4); }
body.has-hero .site-header:not(.is-stuck) .nav-toggle span { background: #fff; }
body.has-hero .site-header { position: fixed; left: 0; right: 0; }
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
body.has-hero .site-header.is-stuck { box-shadow: 0 1px 20px rgba(11, 22, 38, .08); }

/* Hero ------------------------------------------------------------------- */

.hero { position: relative; }
.hero__slides { position: relative; }
.hero__slide {
	position: relative; min-height: min(86vh, 780px);
	display: flex; align-items: flex-end; padding: calc(var(--header-h) + 40px) 0 190px;
	overflow: hidden;
}
.hero--slider .hero__slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .8s ease; }
.hero--slider .hero__slide.is-active { position: relative; opacity: 1; pointer-events: auto; }

.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--ink-2); transform: scale(1.02); }
.hero--slider .hero__slide.is-active .hero__bg { animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.1); } }
.hero__bg--plain { background: linear-gradient(140deg, #1d3557 0%, #16283f 45%, #0b1626 100%); }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,22,38,.72) 0%, rgba(11,22,38,.28) 38%, rgba(11,22,38,.86) 100%); }

.hero__inner { position: relative; }
.hero__content { max-width: 720px; color: #fff; }
.hero__eyebrow { display: flex; align-items: center; gap: 14px; margin: 0 0 16px; font-size: .84rem; }
.hero__district { color: rgba(255, 255, 255, .85); letter-spacing: .04em; }
.hero__title { font-size: clamp(2.4rem, 6vw, 4.1rem); color: #fff; margin: 0 0 12px; letter-spacing: -.02em; }
.hero__tagline { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255, 255, 255, .84); margin: 0 0 28px; max-width: 46ch; }

.hero__facts { display: flex; flex-wrap: wrap; gap: 14px 42px; list-style: none; margin: 0 0 30px; padding: 0; }
.hero__facts li { display: flex; flex-direction: column; gap: 2px; }
.hero__facts span { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }
.hero__facts strong { font-family: var(--display); font-size: 1.3rem; font-weight: 500; color: #fff; }
.hero__facts em { font-style: normal; font-size: .78rem; color: var(--gold-light); font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: 168px; display: flex; gap: 9px; z-index: 3; }
.hero__dot { width: 32px; height: 3px; border: 0; padding: 0; border-radius: 3px; background: rgba(255, 255, 255, .38); cursor: pointer; transition: background .3s; }
.hero__dot.is-active { background: var(--gold-light); }

/* Search bar ------------------------------------------------------------- */

.hero__search { position: relative; z-index: 4; margin-top: -78px; }
.launch-search {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) auto; gap: 18px;
	align-items: end; background: #fff; border-radius: var(--radius);
	padding: 22px 24px; box-shadow: var(--shadow-lg);
}
.launch-search--compact { box-shadow: none; border: 1px solid var(--line); padding: 18px 20px; }
.launch-search__field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.launch-search__field label { font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.launch-search__field select {
	appearance: none; width: 100%; padding: 12px 38px 12px 14px; border: 1px solid var(--line);
	border-radius: var(--radius-sm); font: inherit; font-size: .93rem; background: #fff; color: var(--ink);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%235b6879' stroke-width='2'%3E%3Cpath d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 14px center;
}
.launch-search__field select:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: transparent; }
.launch-search__submit { height: 47px; white-space: nowrap; }

.archive-filter { margin: -26px auto 0; position: relative; z-index: 3; }

/* Sections --------------------------------------------------------------- */

.section { padding: 84px 0; }
.section--launches { padding-top: 96px; }
.section--calendar { background: var(--wash); }
.section--about { background: var(--ink); color: rgba(255, 255, 255, .82); }
.section--related { background: var(--wash); }
.section--archive { padding-top: 56px; }

.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 38px; flex-wrap: wrap; }
.section__eyebrow { margin: 0 0 8px; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.section__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0; }
.section--about .section__title { color: #fff; }
.section__more { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; font-weight: 600; font-size: .92rem; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 4px; }
.section__more:hover { color: var(--gold); border-color: var(--gold); }

/* Launch cards ----------------------------------------------------------- */

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

.launch-card {
	display: flex; flex-direction: column; background: #fff;
	border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease;
}
.launch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.launch-card__media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--wash); }
.launch-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.launch-card:hover .launch-card__media img { transform: scale(1.05); }
.launch-card__placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #e8ecf2, #dbe2ec); }

.badge {
	display: inline-block; padding: 6px 12px; border-radius: 999px;
	font-family: var(--sans); font-size: .66rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
	background: rgba(255, 255, 255, .95); color: var(--ink);
}
.launch-card__media .badge { position: absolute; top: 14px; left: 14px; }
.badge--selling { background: var(--green); color: #fff; }
.badge--launching { background: #b8791b; color: #fff; }
.badge--preview { background: #4a3fa5; color: #fff; }
.badge--upcoming { background: #1f4f82; color: #fff; }
.badge--top_soon { background: #0f6d7d; color: #fff; }
.badge--fully_sold { background: #6b7280; color: #fff; }

.launch-card__countdown {
	position: absolute; bottom: 14px; left: 14px;
	background: rgba(11, 22, 38, .82); color: #fff; backdrop-filter: blur(4px);
	padding: 6px 12px; border-radius: 999px; font-size: .72rem; font-weight: 600; letter-spacing: .02em;
}

.launch-card__body { display: flex; flex-direction: column; gap: 6px; padding: 20px 22px 22px; flex: 1; }
.launch-card__district { margin: 0; font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.launch-card__title { margin: 0; font-size: 1.32rem; }
.launch-card__title a { text-decoration: none; }
.launch-card__title a:hover { color: var(--gold); }
.launch-card__tagline { margin: 0; color: var(--ink-soft); font-size: .9rem; line-height: 1.5; }

.launch-card__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 18px; margin: 14px 0 0; }
.launch-card__facts > div { display: flex; flex-direction: column; min-width: 0; }
.launch-card__facts dt { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin: 0; }
.launch-card__facts dd { margin: 2px 0 0; font-weight: 600; font-size: .96rem; }

.launch-card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.launch-card__date { margin: 16px 0 0; display: flex; flex-direction: column; }
.launch-card__foot .launch-card__date { margin: 0; }
.launch-card__date span { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.launch-card__date strong { font-size: .98rem; font-weight: 600; }
.launch-card__link { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; font-size: .88rem; font-weight: 600; color: var(--gold); white-space: nowrap; }
.launch-card__link:hover { gap: 10px; }

/* Calendar --------------------------------------------------------------- */

.calendar-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.calendar-intro__text { color: var(--ink-soft); margin: 0 0 24px; max-width: 42ch; }

.calendar { list-style: none; margin: 0; padding: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.calendar__row { display: grid; grid-template-columns: 84px 1fr auto; gap: 22px; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.calendar__row:last-child { border-bottom: 0; }
.calendar__date { text-align: center; line-height: 1.05; padding: 8px 0; border-right: 1px solid var(--line); }
.calendar__day { display: block; font-family: var(--display); font-size: 1.9rem; font-weight: 600; }
.calendar__month { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.calendar__year { display: block; font-size: .68rem; color: var(--ink-soft); }
.calendar__body h3 { margin: 0 0 2px; font-size: 1.12rem; }
.calendar__body h3 a { text-decoration: none; }
.calendar__body h3 a:hover { color: var(--gold); }
.calendar__body p { margin: 0; font-size: .86rem; color: var(--ink-soft); }
.calendar__countdown { font-size: .78rem; font-weight: 600; color: var(--ink); background: var(--wash); border-radius: 999px; padding: 7px 14px; white-space: nowrap; }

/* About ------------------------------------------------------------------ */

.about-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: start; }
.about-copy__text p { color: rgba(255, 255, 255, .78); margin: 0 0 16px; }
.about-points { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 18px; }
.about-points li { display: flex; flex-direction: column; gap: 3px; padding-left: 20px; border-left: 2px solid var(--gold); }
.about-points strong { color: #fff; font-size: .98rem; }
.about-points span { color: rgba(255, 255, 255, .66); font-size: .9rem; }

.about-card { --sam-paper: #fff; }
.section--about .sam-form { border: 0; box-shadow: var(--shadow-lg); }

/* CTA -------------------------------------------------------------------- */

.section--cta { background: var(--wash); }
.cta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cta-text { color: var(--ink-soft); max-width: 44ch; }

/* Page heads ------------------------------------------------------------- */

.page-head { background: var(--ink); color: #fff; padding: calc(var(--header-h) + 46px) 0 74px; }
body:not(.has-hero) .page-head { padding-top: 60px; }
.page-head__title { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); margin: 0 0 10px; }
.page-head__intro { color: rgba(255, 255, 255, .74); margin: 0; max-width: 60ch; }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .8rem; margin-bottom: 18px; color: rgba(255, 255, 255, .6); }
.crumbs a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.crumbs a:hover { color: #fff; }
.crumbs__current { color: rgba(255, 255, 255, .6); }

.archive-count { color: var(--ink-soft); font-size: .88rem; margin: 34px 0 20px; }

/* Single launch ---------------------------------------------------------- */

.launch-hero { position: relative; padding: calc(var(--header-h) + 60px) 0 68px; overflow: hidden; }
.launch-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--ink-2); }
.launch-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,22,38,.78) 0%, rgba(11,22,38,.4) 40%, rgba(11,22,38,.88) 100%); }
.launch-hero__inner { position: relative; color: #fff; }
.launch-hero__eyebrow { display: flex; align-items: center; gap: 14px; margin: 0 0 14px; color: rgba(255, 255, 255, .85); font-size: .85rem; }
.launch-hero__title { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 0 0 10px; }
.launch-hero__tagline { color: rgba(255, 255, 255, .8); font-size: 1.05rem; margin: 0; max-width: 52ch; }

.launch-layout { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 56px; align-items: start; padding: 56px 0 80px; }
.launch-aside__sticky { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 20px; }

.launch-keyfacts {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1px;
	background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 46px;
}
.keyfact { background: #fff; padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; }
.keyfact:last-child { grid-column: auto / -1; }
.keyfact__label { font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); }
.keyfact__value { font-family: var(--display); font-size: 1.2rem; font-weight: 500; }

.launch-section { margin-bottom: 52px; }
.launch-section > h2 { font-size: 1.6rem; margin: 0 0 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }

.prose { line-height: 1.75; color: #26364a; }
.prose p { margin: 0 0 1.1em; }
.prose h2 { font-size: 1.5rem; margin: 1.6em 0 .5em; }
.prose h3 { font-size: 1.22rem; margin: 1.4em 0 .5em; }
.prose ul, .prose ol { padding-left: 22px; }
.prose a { color: var(--gold); }
.prose blockquote { margin: 1.5em 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--gold); color: var(--ink-soft); font-style: italic; }
.prose img { border-radius: var(--radius-sm); }

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; line-height: 1.55; }
.ticks li::before {
	content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
	background: rgba(169, 129, 47, .12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a9812f' stroke-width='3.2'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center no-repeat;
}

.table-scroll { overflow-x: auto; }
.unit-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.unit-table th, .unit-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.unit-table th { font-family: var(--sans); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; background: var(--wash); }
.unit-table tbody tr:hover { background: var(--wash); }
.fineprint { font-size: .78rem; color: var(--ink-soft); margin: 12px 0 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-grid__item { display: block; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid__item:hover img { transform: scale(1.06); }

.plan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.plan { margin: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.plan img { display: block; width: 100%; background: #fff; }
.plan figcaption { padding: 10px 14px; font-size: .82rem; color: var(--ink-soft); border-top: 1px solid var(--line); }

.location-list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 14px; }
.location-list li { display: grid; grid-template-columns: 190px 1fr; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.location-list strong { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; padding-top: 3px; }

.map-embed, .video-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.video-embed iframe { width: 100%; aspect-ratio: 16/9; height: auto; display: block; border: 0; }

.launch-price-card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 26px; }
.launch-price-card__label { margin: 0; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }
.launch-price-card__price { margin: 4px 0 18px; font-family: var(--display); font-size: 2.2rem; color: #fff; line-height: 1; }
.launch-countdown { display: flex; flex-direction: column; gap: 3px; padding: 16px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); margin-bottom: 18px; }
.launch-countdown__label { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .58); }
.launch-countdown__date { font-size: 1.05rem; font-weight: 600; }
.launch-countdown__days { font-size: .82rem; color: var(--gold-light); font-weight: 600; }
.launch-preview-date { margin: -8px 0 18px; font-size: .84rem; color: rgba(255, 255, 255, .7); }
.launch-price-card__actions { display: grid; gap: 10px; }
.launch-price-card__actions .btn--ghost-dark { color: #fff; border-color: rgba(255, 255, 255, .34); }
.launch-price-card__actions .btn--ghost-dark:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }

/* Blog / pages ----------------------------------------------------------- */

.post-list { display: grid; gap: 30px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.post-item { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.post-item__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.post-item__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-item__date { margin: 0; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.post-item__title { margin: 0; font-size: 1.24rem; }
.post-item__title a { text-decoration: none; }
.post-item__excerpt { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.post-item__link { margin-top: auto; font-weight: 600; font-size: .88rem; color: var(--gold); text-decoration: none; }

.page-thumb { margin: 0 0 32px; border-radius: var(--radius); overflow: hidden; }

.pagination { display: flex; justify-content: center; margin-top: 46px; }
.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px;
	padding: 0 12px; margin: 0 4px; border: 1px solid var(--line); border-radius: 10px;
	text-decoration: none; font-size: .92rem; font-weight: 600; color: var(--ink);
}
.pagination .page-numbers.current { background: var(--ink); border-color: var(--ink); color: #fff; }
.pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold); }

.empty-state { text-align: center; padding: 70px 20px; }
.empty-state h1, .empty-state h2 { font-size: 1.8rem; margin-bottom: 10px; }
.empty-state p { color: var(--ink-soft); margin: 0 0 20px; }

/* Footer ----------------------------------------------------------------- */

.site-footer { background: var(--ink); color: rgba(255, 255, 255, .72); padding: 66px 0 30px; }
.site-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); }
.site-footer__name { font-family: var(--display); font-size: 1.35rem; color: #fff; margin: 0 0 4px; }
.site-footer__tag { margin: 0 0 18px; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); }
.site-footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.site-footer__contact a, .footer-menu a { color: rgba(255, 255, 255, .78); text-decoration: none; font-size: .92rem; }
.site-footer__contact a:hover, .footer-menu a:hover { color: var(--gold-light); }
.site-footer__links h4 { color: #fff; font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 14px; }
.footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-menu .muted { color: rgba(255, 255, 255, .45); font-size: .9rem; }
.site-footer__widgets { display: grid; gap: 22px; }
.site-footer__widgets ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer__widgets a { color: rgba(255, 255, 255, .78); text-decoration: none; font-size: .92rem; }
.site-footer__widgets a:hover { color: var(--gold-light); }
.widget-title { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 14px; }
.site-footer__legal { padding-top: 24px; font-size: .8rem; color: rgba(255, 255, 255, .5); }
.site-footer__legal p { margin: 0 0 8px; }
.site-footer__disclaimer { max-width: 100ch; line-height: 1.6; font-size: .74rem; }
.widget-title { color: #fff; }

.wa-float {
	position: fixed; right: 20px; bottom: 20px; z-index: 90;
	width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
	background: #1faa59; color: #fff; box-shadow: 0 10px 26px -8px rgba(31, 170, 89, .8);
	transition: transform .2s;
}
.wa-float:hover { transform: scale(1.06); }

/* Responsive ------------------------------------------------------------- */

@media (max-width: 1080px) {
	.launch-layout { grid-template-columns: 1fr; }
	.launch-aside__sticky { position: static; }
	.calendar-layout, .about-layout, .cta-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
	.launch-grid, .post-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.launch-search { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.launch-search__submit { grid-column: 1 / -1; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
	.nav-toggle { display: flex; }
	.site-nav {
		position: fixed; inset: var(--header-h) 0 auto; background: #fff; border-bottom: 1px solid var(--line);
		padding: 18px 22px 26px; display: none; box-shadow: var(--shadow-lg);
	}
	.site-nav.is-open { display: block; }
	.nav-menu { flex-direction: column; align-items: stretch; gap: 4px; }
	.nav-menu a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink) !important; }
	body.has-hero .site-header:not(.is-stuck) .site-nav.is-open .nav-menu a { color: var(--ink) !important; }
	.header-phone span { display: none; }
	.hero__slide { min-height: 74vh; padding-bottom: 220px; }
	.hero__dots { bottom: 196px; }
	.hero__facts { gap: 12px 26px; }
}

@media (max-width: 620px) {
	.wrap { width: calc(100% - 32px); }
	.site-header__inner { gap: 12px; }
	.site-header__actions .btn--sm { display: none; }
	.brand__name { font-size: 1.02rem; }
	.brand__tag { font-size: .58rem; letter-spacing: .12em; }
	.hero__title { font-size: 2.1rem; }
	.launch-card__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.section { padding: 60px 0; }
	.launch-grid, .post-list { grid-template-columns: 1fr; }
	.launch-search { grid-template-columns: 1fr; }
	.hero__search { margin-top: -60px; }
	.calendar__row { grid-template-columns: 62px 1fr; row-gap: 10px; padding: 18px; }
	.calendar__countdown { grid-column: 2; justify-self: start; }
	.location-list li { grid-template-columns: 1fr; gap: 4px; }
	.gallery-grid { grid-template-columns: 1fr 1fr; }
	.site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
	.launch-keyfacts { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; }
}
