/* =========================================================
   AKIDA HILLS — Redesign (fresh HTML build)
   Brand: dark navy / gold / cream · Montserrat + Cormorant
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --ink: #121F2D;
  --ink-2: #1B2C3D;
  --ink-3: #24394D;
  --gold: #bd9460;
  --gold-2: #E4C663;
  --cream: #F7F5F0;
  --paper: #FFFFFF;
  --muted: #5A6B7B;
  --muted-light: #8FA0B0;
  --line: rgba(18, 31, 45, 0.12);
  --line-light: rgba(247, 245, 240, 0.18);

  --font-head: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --pad-section: clamp(72px, 9vw, 140px);
  --radius: 10px;

  --shadow-1: 0 20px 50px -20px rgba(18, 31, 45, 0.35);
  --shadow-2: 0 40px 80px -30px rgba(18, 31, 45, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

button,
input,
textarea {
  font-family: inherit;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
.h-display {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.h-display {
  font-size: clamp(2.6rem, 6vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--muted);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--pad-section) 0;
  position: relative;
}

.section--dark {
  background: var(--ink);
  color: var(--cream);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--paper);
}

.section--dark .lead {
  color: var(--muted-light);
}

.section--cream {
  background: var(--cream);
}

.section--flush {
  padding: 0;
}

.centered {
  text-align: center;
}

.centered .kicker::before,
.centered .kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.centered .kicker {
  justify-content: center;
}

.hero__body .kicker,
.media-block__cap .kicker {
  justify-content: center;
}

.hero__body .kicker::after,
.media-block__cap .kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.max-720 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.max-860 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, box-shadow 0.35s;
  white-space: nowrap;
}

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

.btn--gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(201, 162, 39, 0.7);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
}

.btn--ghost:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}

.btn--dark:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}

.btn--navy {
  background: var(--ink);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn--navy:hover {
  background: var(--ink-3);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--sm {
  padding: 12px 24px;
  font-size: 0.74rem;
}

.btn--block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 26px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}

.site-header.is-scrolled {
  background: rgba(18, 31, 45, 0.96);
  padding: 14px 0;
  box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 40px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  padding: 6px 0;
  transition: color 0.3s;
}

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

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 28px;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px var(--gutter) 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav nav a {
  display: block;
  font-family: var(--font-head);
  font-size: 2.1rem;
  color: var(--paper);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  transition: color 0.3s, padding-left 0.3s var(--ease);
}

.mobile-nav nav a:hover {
  color: var(--gold);
  padding-left: 10px;
}

.mobile-nav nav a.active {
  color: var(--gold);
}

.mobile-nav .mobile-cta {
  margin-top: 40px;
  width: 100%;
}

/* ---------- Hero (video) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 31, 45, 0.62) 0%, rgba(18, 31, 45, 0.38) 45%, rgba(18, 31, 45, 0.78) 100%);
}

.hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px var(--gutter) 60px;
}

.hero__body h1,
.hero__body .h-display {
  color: #fff;
}

.hero__body p:not(.kicker) {
  color: rgba(255, 255, 255, 0.88);
}

.media-block__cap h1,
.media-block__cap h2,
.media-block__cap .h-display {
  color: #fff;
}

.hero__cta {
  display: flex;
  justify-content: center;
}

.hero--small {
  min-height: 68vh;
}

.hero--small .hero__body {
  padding-top: 160px;
}

/* Home hero: headline centred, CTA pinned to the bottom of the video */
.hero--home {
  align-items: stretch;
}

.hero--home .hero__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 48px;
}

.hero--home .hero__main {
  margin: auto 0;
}

/* ---------- Section intro / typographic blocks ---------- */
.section-head {
  margin-bottom: 64px;
}

.typo-block {
  padding: var(--pad-section) 0;
  text-align: center;
}

.typo-block .kicker::before,
.typo-block .kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.typo-block .kicker {
  justify-content: center;
}

.typo-block h2 {
  max-width: 900px;
  margin: 0 auto 26px;
}

.typo-block p {
  max-width: 720px;
  margin: 0 auto;
}

.typo-block--dark {
  background: var(--ink);
  color: var(--cream);
}

.typo-block--dark h2 {
  color: var(--paper);
}

/* ---------- Full-bleed media ---------- */
.media-block {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.media-block video,
.media-block img {
  width: 100%;
  height: clamp(420px, 66vw, 680px);
  object-fit: cover;
  display: block;
}

.media-block--tall video,
.media-block--tall img {
  height: clamp(520px, 80vw, 860px);
}

.media-block__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 90px var(--gutter) 40px;
  background: linear-gradient(180deg, transparent, rgba(18, 31, 45, 0.8));
  color: #fff;
  text-align: center;
}

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 32px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.contact-grid {
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
}

.card {
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 46px 40px;
  color: var(--cream);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-1);
  border-color: rgba(201, 162, 39, 0.5);
}

.card__icon {
  width: 88px;
  height: 88px;
  border-radius: 20%;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  margin: 0 0 24px;
}

.centered .card__icon {
  margin-left: auto;
  margin-right: auto;
}

.card__icon img {
  height: 64px;
  object-fit: contain;
  display: block;
}

.card__icon i {
  color: var(--ink);
}

.card h3 {
  margin-bottom: 14px;
  color: var(--paper);
}

.card p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.card .btn {
  margin-top: 26px;
}

.card--accent h3,
.card--accent p {
  font-weight: 600;
}

.card--dark {
  background: var(--ink);
  border-color: var(--line-light);
}

.card--dark h3 {
  color: var(--paper);
}

.card--dark p {
  color: rgba(255, 255, 255, 0.92);
}

.card--link {
  display: block;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease);
}

.card__link:hover {
  gap: 14px;
}

/* ---------- Split layout (image + content) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.split__media img {
  width: 100%;
  height: clamp(360px, 48vw, 560px);
  object-fit: cover;
  display: block;
}

.split__content h2 {
  margin-bottom: 22px;
}

.split__content .lead {
  margin-bottom: 26px;
}

.check-list {
  margin: 0 0 34px;
}

.check-list li {
  position: relative;
  padding: 8px 0 8px 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}

.split__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Image card (Home S5 / apartments) ---------- */
.image-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.image-card:hover img {
  transform: scale(1.04);
}

.image-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 31, 45, 0.05) 40%, rgba(18, 31, 45, 0.82));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.image-card h3 {
  color: #fff;
  margin-bottom: 22px;
}

/* ---------- Projects ---------- */
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.project-card .image-card__overlay {
  padding: 32px;
}

.project-card h3 {
  margin-bottom: 8px;
}

.project-card .project-card__loc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.project-card .btn {
  margin-top: 0;
}

/* Feature project card (Jabi Waterfront on Projects page) */
.project-feature {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: clamp(420px, 60vw, 640px);
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.project-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 31, 45, 0.15) 30%, rgba(18, 31, 45, 0.9));
}

.project-feature>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-feature__body {
  position: relative;
  z-index: 2;
  padding: 52px;
  max-width: 760px;
}

.project-feature__status {
  display: inline-block;
  background: var(--gold);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.project-feature__status-ongoing {
  display: block;
  width: fit-content;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.project-feature h3 {
  color: #fff;
  margin-bottom: 10px;
}

.project-feature__loc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.project-feature p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
}

.project-feature .btn {
  margin-top: 30px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px;
}

.stat {
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
}

.stat__num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1.05;
}

.stat__label {
  margin-top: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px 24px;
  list-style: none;
}

.amenities li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  color: var(--cream);
  font-size: 0.95rem;
}

.amenities li::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  flex: 0 0 auto;
}

.amen-icon {
  height: 46px;
  width: 46px;
  object-fit: contain;
  margin-bottom: 18px;
}

.amenity-card {
  text-align: center;
  padding: 40px 24px;
}

.amenity-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.amenity-card p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 8px;
}

/* ---------- Feature list (principles / why choose) ---------- */
.feature {
  display: flex;
  gap: 26px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.feature:last-child {
  border-bottom: 1px solid var(--line);
}

.feature__num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  min-width: 60px;
  line-height: 1;
}

.feature h3 {
  margin-bottom: 10px;
}

.feature p {
  color: var(--muted);
}

.section--dark .feature {
  border-top-color: var(--line-light);
}

.section--dark .feature:last-child {
  border-bottom-color: var(--line-light);
}

.section--dark .feature p {
  color: var(--muted-light);
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.tl-item {
  position: relative;
  padding-bottom: 52px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 8px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--gold);
}

.tl-phase {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.5);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.tl-item h3 {
  margin-bottom: 12px;
}

.tl-item p {
  color: var(--muted);
  max-width: 640px;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: zoom-in;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery figure:hover img {
  transform: scale(1.06);
}

.gallery figure::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(18, 31, 45, 0.55);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}

.gallery figure:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8, 13, 20, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 6px;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.8);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.lightbox__close {
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.5rem;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 1.9rem;
}

.lightbox__nav--prev {
  left: 24px;
}

.lightbox__nav--next {
  right: 24px;
}

.lightbox__counter {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
}

/* ---------- Slider (About flagship) ---------- */
.slider {
  position: relative;
  height: clamp(480px, 74vh, 820px);
  overflow: hidden;
  background: var(--ink);
}

.slider__track {
  position: absolute;
  inset: 0;
}

.slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}

.slider__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__cap {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.slider .media-block__cap {
  z-index: 3;
}

.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(18, 31, 45, 0.35);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.slider__arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.slider__arrow--prev {
  left: 24px;
}

.slider__arrow--next {
  right: 24px;
}

.slider__dots {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.slider__dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.slider__dots button.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

/* ---------- Video play button ---------- */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(18, 31, 45, 0.45);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s var(--ease), border-color 0.3s;
  backdrop-filter: blur(4px);
}

.play-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.06);
}

.play-btn span {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 28px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 6px;
}

.play-btn.is-playing {
  display: none;
}

/* ---------- Forms ---------- */
.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 18px;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 90px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 56px;
}

.site-footer h4 {
  color: var(--gold-2);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.site-footer p {
  color: var(--muted-light);
  font-size: 0.92rem;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--muted-light);
  font-size: 0.92rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold-2);
}

.footer-links a.active {
  color: var(--gold-2);
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.9rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.footer-social i {
  font-size: 1.1rem;
  line-height: 1;
}

.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted-light);
  font-size: 0.82rem;
}

.brand--footer img {
  height: 54px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}

@media (max-width: 860px) {

  .main-nav,
  .header-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .grid--3 {
    grid-template-columns: 1fr;
  }

  .grid--4 {
    grid-template-columns: 1fr;
  }

  .grid--2 {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .hero--small {
    min-height: 70vh;
  }

  .hero--home {
    min-height: 70vh;
    align-items: center;
  }

  .hero--home .hero__body {
    min-height: 70vh;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .btn {
    padding: 14px 22px;
    font-size: 0.74rem;
    white-space: normal;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .image-card img {
    height: 400px;
  }
}