/* Bayu Asli MVP — Industrial / editorial (avoid generic AI template look) */
:root {
  --ink: #1a1c1e;
  --ink-soft: #3a3f45;
  --muted: #646b73;
  --line: #d2d0cb;
  --paper: #eceae4;
  --paper-2: #e3e0d8;
  --white: #f7f6f2;
  --navy: #0c1b33;
  --navy-deep: #081222;
  --sea: #2f4a55;
  --teal: #3d5c67;
  --signal: #c4122f;
  --signal-soft: #e03a52;
  --sand: #c4122f;
  --sand-bright: #e03a52;
  --ok: #2f5d45;
  --radius: 0;
  --max: 1140px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(180deg, rgba(236, 234, 228, 0.92), rgba(227, 224, 216, 0.96)),
    var(--grain);
  background-size: auto, 180px 180px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.brand-logo {
  height: 44px;
  width: auto;
  max-width: min(260px, 55vw);
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-bright);
  margin-top: 4px;
}

.brand--logo-only .brand-text { display: none; }

@media (max-width: 520px) {
  .brand-logo { height: 36px; }
  .brand-tag { display: none; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav a:hover,
.nav a[aria-current="page"] { color: var(--white); }

.nav .btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  background: var(--sand);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav .btn-nav:hover { background: var(--sand-bright); color: var(--navy-deep); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0 1rem;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 0.85rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav .btn-nav { margin: 0.75rem 1.25rem 0; justify-content: center; }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.is-active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 23, 31, 0.55) 0%, rgba(18, 23, 31, 0.82) 58%, rgba(18, 23, 31, 0.95) 100%),
    linear-gradient(90deg, rgba(18, 23, 31, 0.72) 0%, rgba(18, 23, 31, 0.25) 48%, rgba(18, 23, 31, 0.15) 100%);
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: max(1.25rem, calc((100% - var(--max)) / 2 + 1.25rem));
  bottom: 1.5rem;
  display: flex;
  gap: 0.35rem;
}

.hero-dots button {
  width: 28px;
  height: 3px;
  border: 0;
  padding: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots button.is-active { background: var(--signal); }

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 7rem 0 4.5rem;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-soft);
  margin-bottom: 1.1rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--signal);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 12ch;
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: 38rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--sand);
  color: var(--navy-deep);
}

.btn-primary:hover { background: var(--sand-bright); }

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

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

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

.btn-dark:hover { background: var(--sea); }

/* ——— Sections ——— */
.section {
  padding: 5rem 0;
}

.section-tight { padding: 3.5rem 0; }

.section-dark {
  background:
    linear-gradient(180deg, rgba(18, 23, 31, 0.97), rgba(28, 36, 48, 0.98)),
    var(--grain);
  background-size: auto, 160px 160px;
  color: #fff;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(227, 224, 216, 0.95), rgba(236, 234, 228, 0.9)),
    var(--grain);
  background-size: auto, 160px 160px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 0.65rem;
}

.section-dark .eyebrow { color: var(--signal-soft); }

.section-head {
  margin-bottom: 2.25rem;
  max-width: 42rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  padding: 1.5rem 1.4rem;
  box-shadow: none;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
}

.feature-block {
  border-left: 3px solid var(--signal);
  padding-left: 1.25rem;
}

.feature-block p { margin: 0; color: rgba(255, 255, 255, 0.72); }
.section:not(.section-dark) .feature-block p { color: var(--muted); }

.section-head h2,
.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.05;
}

.section-head p,
.lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

/* ——— Cards / grids ——— */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  padding: 1.5rem 1.4rem;
  box-shadow: none;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
}

.feature-block {
  border-left: 3px solid var(--signal);
  padding-left: 1.25rem;
}

.feature-block h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ——— Page hero ——— */
.page-hero {
  position: relative;
  color: #fff;
  padding: 4.5rem 0 3.25rem;
  overflow: hidden;
  background: var(--navy-deep);
}

.page-hero--image {
  min-height: 280px;
  display: grid;
  align-items: end;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 23, 31, 0.72), rgba(18, 23, 31, 0.9));
}

.media-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: none;
}

.media-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #cfcbc3;
}

.media-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
}

.media-card:hover .media-card__img img {
  transform: none;
}

.service-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--signal);
  overflow: hidden;
}

.photo-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  overflow: hidden;
  box-shadow: none;
}

.image-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 23, 31, 0.9) 0%, rgba(18, 23, 31, 0.62) 45%, rgba(18, 23, 31, 0.4) 100%);
}

.mvp-banner {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  text-align: left;
  padding: 0.45rem 1.25rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form {
  display: grid;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  padding: 1.5rem;
  box-shadow: none;
}

.spec-table th {
  width: 34%;
  background: var(--paper-2);
  font-weight: 700;
  color: var(--ink-soft);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ——— Media cards & image blocks ——— */
.media-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.media-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d7dee6;
}

.media-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.media-card__body {
  padding: 1.35rem 1.25rem 1.45rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.media-card__body h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.media-card__body .card-link { margin-top: auto; padding-top: 1rem; }

.service-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.service-row__img {
  min-height: 200px;
  background: #d7dee6;
}

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

.service-row__body {
  padding: 1.4rem 1.5rem;
}

.service-row__body h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-row__body p { margin: 0; color: var(--muted); }

@media (max-width: 760px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row__img { aspect-ratio: 16 / 9; min-height: 0; }
}

.equip-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d7dee6;
  border: 1px solid var(--line);
  border-bottom: 0;
}

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

.photo-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.photo-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.photo-card__body { padding: 1.25rem 1.3rem 1.4rem; }

.photo-card__body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.photo-card__body p { margin: 0; color: var(--muted); }

.image-band {
  position: relative;
  min-height: 340px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.image-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.image-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 24, 40, 0.88) 0%, rgba(6, 24, 40, 0.55) 55%, rgba(6, 24, 40, 0.35) 100%);
}

.image-band .container { position: relative; z-index: 1; }

.image-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.image-band p {
  margin: 0 0 1.25rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.82);
}

.about-visual {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.about-visual__photo {
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
}

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

.about-visual__map {
  background: var(--navy);
  border: 1px solid var(--line);
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 0.75rem;
}

.about-visual__map img,
.about-visual__map svg {
  width: 100%;
  height: auto;
  max-height: 100%;
}

@media (max-width: 860px) {
  .about-visual { grid-template-columns: 1fr; }
}

.contact-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  background: #d7dee6;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.img-caption {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.footer-logo {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}

/* ——— Specs table ——— */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  background: #eef3f7;
  font-weight: 700;
  color: var(--ink-soft);
}

/* ——— Contact form ——— */
.form {
  display: grid;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem 0.85rem;
  border: 1px solid var(--line);
  background: #fbfcfd;
  font: inherit;
  color: var(--ink);
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(26, 122, 140, 0.35);
  border-color: var(--teal);
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.form-success {
  display: none;
  padding: 1rem 1.1rem;
  background: #e8f5ee;
  border: 1px solid #9dceb5;
  color: var(--ok);
  font-weight: 600;
}

.form-success.show { display: block; }

/* ——— Gallery ——— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  color: inherit;
  text-align: left;
  cursor: zoom-in;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: var(--navy);
  transform: translateY(-2px);
  outline: none;
}

.gallery-item__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
}

.gallery-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-item__media img {
  transform: scale(1.04);
}

.gallery-item__caption {
  display: block;
  padding: 0.75rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.gallery-more {
  margin: 1.5rem 0 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(8, 18, 34, 0.92);
}

.lightbox[hidden] { display: none; }

body.lightbox-open { overflow: hidden; }

.lightbox__figure {
  margin: 0;
  max-width: min(1100px, 100%);
  width: 100%;
}

.lightbox__img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox__caption {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover { background: rgba(0, 0, 0, 0.55); }

/* ——— Footer ——— */
.site-footer {
  position: relative;
  overflow: hidden;
  background-color: #0e1218;
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2rem;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__culture {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center 62%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.site-footer__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14, 18, 24, 0.78), rgba(14, 18, 24, 0.9)),
    var(--grain);
  background-size: auto, 160px 160px;
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.site-footer h4 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer a:hover { color: var(--sand-bright); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-sabah {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.mvp-banner {
  background: #163a52;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  text-align: center;
  padding: 0.45rem 1rem;
  letter-spacing: 0.04em;
}
