@charset "UTF-8";
/*
Theme Name: Buildings
Author: Developer
Description: A custom classic theme for WordPress.
Version: 1.1
*/
:root {
  --navy: #263a8a;
  --royal: #2b49a3;
  --cobalt: #2c56b1;
  --azure: #316ec0;
  --sky: #3c85d8;
  --slate: #51669f;
  --mist: #8e9fcc;
  --ice: #d9e5f7;
  --white: #ffffff;
  --offwhite: #f8faff;
  --fog: #edf2fb;
  --text: #0f1c47;
  --body: #2a3560;
  --subtle: #5a6a9a;
  --gold: #e8c96e;
  --gold-dark: #c8a940;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* PROTOTYPE BANNER */
.proto-banner {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  z-index: 999;
}

/* SECTION LABEL */
.sec-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 0.9rem;
  font-weight: 500;
}

.sec-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--sky);
  display: block;
  flex-shrink: 0;
}

.sec-label.inv {
  color: var(--gold);
}

.sec-label.inv::before {
  background: var(--gold);
}

/* TRUST BAR */
.trust-bar {
  background: var(--navy);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.ti {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1.8rem;
  font-size: 0.73rem;
  letter-spacing: 0.05em;
  color: rgba(217, 229, 247, 0.72);
}

.ti + .ti {
  border-left: 1px solid rgba(142, 159, 204, 0.18);
}

.ti svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

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

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: fuAnim 0.68s ease forwards;
}

@keyframes fuAnim {
  to {
    opacity: 1;
    transform: none;
  }
}
.d1 {
  animation-delay: 0.12s;
}

.d2 {
  animation-delay: 0.26s;
}

.d3 {
  animation-delay: 0.42s;
}

.d4 {
  animation-delay: 0.58s;
}

/* SOCIAL FLOATS */
.social-floats {
  position: fixed;
  bottom: calc(2rem + 64px);
  right: 2.35rem;
  z-index: 199;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.sf-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.sf-item:hover {
  transform: scale(1.1);
  color: white;
}

.sf-item svg {
  width: 20px;
  height: 20px;
}

.sf-facebook {
  background: #1877F2;
}

.sf-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.sf-tiktok {
  background: #000000;
}

.sf-gmail {
  background: #EA4335;
}

/* WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.38);
  transition: transform 0.2s;
  animation: wapulse 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 26px;
  height: 26px;
}

@keyframes wapulse {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.38);
  }
  50% {
    box-shadow: 0 4px 26px rgba(37, 211, 102, 0.62), 0 0 0 7px rgba(37, 211, 102, 0.07);
  }
}
/* ── GLOBAL BUTTONS ── */
.btn-primary {
  background: var(--royal);
  color: var(--white);
  border: none;
  padding: 0.88rem 1.9rem;
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(43, 73, 163, 0.28);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--ice);
  color: var(--body);
  padding: 0.88rem 1.5rem;
  background: var(--white);
  font-size: 0.77rem;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
}

.btn-wa:hover {
  border-color: #25D366;
  color: #1a9c4a;
}

.btn-wa svg {
  width: 16px;
  height: 16px;
}

/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  /* Proto banner */
  .proto-banner {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    padding: 0.45rem 0.8rem;
  }
  /* Trust bar */
  .trust-bar {
    flex-direction: column;
    gap: 0;
    padding: 0.6rem 1.2rem;
    align-items: flex-start;
  }
  .ti {
    padding: 0.45rem 0;
    border-left: none !important;
  }
  .ti + .ti {
    border-top: 1px solid rgba(142, 159, 204, 0.15);
    width: 100%;
  }
  /* WhatsApp and Social floats — move up from bottom edge */
  .social-floats {
    bottom: calc(1.4rem + 58px);
    right: 1.6rem;
  }
  .sf-item {
    width: 36px;
    height: 36px;
  }
  .sf-item svg {
    width: 18px;
    height: 18px;
  }
  .wa-float {
    bottom: 1.4rem;
    right: 1.4rem;
    width: 50px;
    height: 50px;
  }
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .fade-up, .wa-float {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* NAVBAR */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 4.5rem;
  background: rgba(237, 242, 250, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(46, 108, 179, 0.15);
  box-shadow: 0 2px 16px rgba(44, 86, 177, 0.07);
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #1a2e6e;
  text-decoration: none;
}

.nav-logo span {
  color: var(--azure);
}

.custom-logo-link {
  display: block;
}

.custom-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 46, 110, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--azure);
}

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

.nav-langs {
  display: flex;
  gap: 0.35rem;
}

.lang-btn {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 46, 110, 0.55);
  background: none;
  border: 1px solid rgba(46, 108, 179, 0.25);
  padding: 0.26rem 0.56rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}

.lang-btn.active, .lang-btn:hover {
  color: var(--azure);
  border-color: var(--azure);
}

.nav-cta {
  background: var(--azure);
  color: #fff;
  border: none;
  padding: 0.52rem 1.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: "DM Sans", sans-serif;
}

.nav-cta:hover {
  background: var(--royal);
}

/* ── MOBILE MENU TOGGLE ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a2e6e;
  border-radius: 2px;
  transition: all 0.3s;
}

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

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile drawer — keeps dark for full-screen impact */
.nav-drawer {
  display: flex;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: var(--text);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav-drawer.open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.nav-drawer .nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.nav-drawer .nav-links a {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: rgba(237, 242, 250, 0.85);
}

.nav-drawer .nav-langs {
  justify-content: center;
}

.nav-drawer .nav-cta {
  width: 100%;
  text-align: center;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
}

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  nav {
    padding: 1rem 2.5rem;
  }
  .nav-links {
    gap: 1.5rem;
  }
  .nav-cta {
    display: none;
  }
}
/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.8rem;
  }
  .nav-links {
    display: none;
  }
  .nav-right {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}
/* ══════════════════════════════════════
   FRONT-PAGE HERO — template-parts/hero.php
   Full-screen background image, text overlaid on the LEFT.
   Scoped under .hero-fullscreen to prevent bleeding into
   .page-hero and .gal-hero sections on other pages.
══════════════════════════════════════ */
.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Background image set inline by PHP; fallback gradient when none */
  background-color: var(--text);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* Fallback when no image is uploaded */
}
.hero-fullscreen.no-bg-img {
  background-image: linear-gradient(155deg, var(--text) 0%, #1a2d6e 35%, var(--cobalt) 70%, var(--azure) 100%);
}
.hero-fullscreen.no-bg-img .hero-overlay {
  background: linear-gradient(105deg, rgba(8, 14, 35, 0.65) 0%, rgba(15, 28, 71, 0.35) 100%);
}
.hero-fullscreen {
  /* ── Dark gradient overlay for text legibility ── */
}
.hero-fullscreen .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 14, 35, 0.82) 0%, rgba(15, 28, 71, 0.52) 45%, rgba(8, 14, 35, 0.08) 100%);
  z-index: 1;
}
.hero-fullscreen {
  /* ── Subtle grid texture for depth ── */
}
.hero-fullscreen .hero-grid-texture {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(217, 229, 247, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(217, 229, 247, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
  pointer-events: none;
}
.hero-fullscreen {
  /* ── Visual column (holds badge only — overlays are absolute) ── */
}
.hero-fullscreen .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-fullscreen {
  /* ── Badge — top right corner ── */
}
.hero-fullscreen .hero-badge {
  position: absolute;
  top: 5.5rem;
  right: 0;
  z-index: 4;
  background: var(--gold);
  color: var(--navy);
  padding: 1.1rem 1.6rem;
  text-align: center;
  pointer-events: auto;
}
.hero-fullscreen .hero-badge-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
}
.hero-fullscreen .hero-badge-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.hero-fullscreen {
  /* ── Main content block — LEFT side, above overlays ── */
}
.hero-fullscreen .hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 7rem 5vw 5rem;
}
.hero-fullscreen .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  font-weight: 600;
}
.hero-fullscreen .hero-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}
.hero-fullscreen .hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 500;
  line-height: 1.06;
  color: var(--offwhite);
  margin-bottom: 1.6rem;
}
.hero-fullscreen .hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-fullscreen .hero-title-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(217, 229, 247, 0.88);
  margin-bottom: 1.8rem;
  display: block;
}
.hero-fullscreen .hero-desc {
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.82;
  color: rgba(217, 229, 247, 0.78);
  max-width: 48ch;
  margin-bottom: 2.4rem;
  border-left: 3px solid rgba(232, 201, 110, 0.45);
  padding-left: 1.1rem;
}
.hero-fullscreen .hero-ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  /* Override global .btn-wa colours inside the dark hero */
}
.hero-fullscreen .hero-ctas .btn-wa {
  border-color: rgba(217, 229, 247, 0.3);
  color: rgba(217, 229, 247, 0.85);
  background: rgba(255, 255, 255, 0.06);
}
.hero-fullscreen .hero-ctas .btn-wa:hover {
  border-color: #25D366;
  color: #25D366;
  background: rgba(37, 211, 102, 0.08);
}
.hero-fullscreen {
  /* ── Stats bar ── */
}
.hero-fullscreen .hero-stats {
  display: flex;
  border-top: 1px solid rgba(217, 229, 247, 0.15);
  padding-top: 2rem;
}
.hero-fullscreen .hstat {
  padding-right: 2.2rem;
  margin-right: 2.2rem;
  border-right: 1px solid rgba(217, 229, 247, 0.15);
}
.hero-fullscreen .hstat:last-child {
  border-right: none;
}
.hero-fullscreen .hstat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-fullscreen .hstat-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(217, 229, 247, 0.52);
  margin-top: 0.25rem;
}
.hero-fullscreen {
  /* ── Scroll hint ── */
}
.hero-fullscreen .hero-scroll-hint {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 4;
}
.hero-fullscreen .hero-scroll-hint span {
  display: block;
  width: 2px;
  height: 7px;
  background: var(--gold);
  opacity: 0.45;
  animation: scrollHint 1.5s ease-in-out infinite;
}
.hero-fullscreen .hero-scroll-hint span:nth-child(2) {
  animation-delay: 0.2s;
}
.hero-fullscreen .hero-scroll-hint span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes scrollHint {
  0%, 100% {
    opacity: 0.18;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 0.75;
    transform: scaleY(1.3);
  }
}
.hero-fullscreen {
  /* ══════════════════════════════════════
     RESPONSIVE — TABLET (≤1024px)
  ══════════════════════════════════════ */
}
@media (max-width: 1024px) {
  .hero-fullscreen .hero-content {
    padding: 6rem 3rem 4rem;
    max-width: 680px;
  }
  .hero-fullscreen .hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  }
}
.hero-fullscreen {
  /* ══════════════════════════════════════
     RESPONSIVE — MOBILE (≤768px)
  ══════════════════════════════════════ */
}
@media (max-width: 768px) {
  .hero-fullscreen {
    min-height: 85vh;
  }
  .hero-fullscreen .hero-overlay {
    background: linear-gradient(to bottom, rgba(8, 14, 35, 0.6) 0%, rgba(8, 14, 35, 0.78) 100%);
  }
  .hero-fullscreen .hero-content {
    padding: 5rem 1.6rem 3.5rem;
    max-width: 100%;
  }
  .hero-fullscreen .hero-badge {
    top: 1.4rem;
    padding: 0.8rem 1.1rem;
  }
  .hero-fullscreen .hero-badge-num {
    font-size: 1.6rem;
  }
  .hero-fullscreen .hero-title {
    font-size: clamp(2.2rem, 7vw, 3rem);
  }
  .hero-fullscreen .hero-title-sub {
    margin-bottom: 1.2rem;
  }
  .hero-fullscreen .hero-desc {
    max-width: 100%;
    margin-bottom: 1.8rem;
  }
  .hero-fullscreen .hero-ctas {
    flex-direction: column;
    margin-bottom: 2.5rem;
  }
  .hero-fullscreen .hero-stats {
    flex-wrap: wrap;
    gap: 1rem 0;
  }
  .hero-fullscreen .hstat {
    padding-right: 1.4rem;
    margin-right: 1.4rem;
  }
  .hero-fullscreen .hstat-num {
    font-size: 1.7rem;
  }
}
.hero-fullscreen {
  /* ══════════════════════════════════════
     RESPONSIVE — SMALL PHONE (≤480px)
  ══════════════════════════════════════ */
}
@media (max-width: 480px) {
  .hero-fullscreen {
    min-height: 80vh;
  }
  .hero-fullscreen .hero-content {
    padding: 4.5rem 1.2rem 3rem;
  }
  .hero-fullscreen .hero-title {
    font-size: clamp(1.9rem, 8.5vw, 2.6rem);
  }
  .hero-fullscreen .hstat {
    padding-right: 1rem;
    margin-right: 1rem;
  }
  .hero-fullscreen .hstat-num {
    font-size: 1.5rem;
  }
  .hero-fullscreen .hstat-label {
    font-size: 0.6rem;
  }
}

/* SERVICES */
.services {
  padding: 7rem 3rem;
  background: var(--fog);
}

.services-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.services-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--navy);
}

.services-desc {
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--subtle);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(142, 159, 204, 0.2);
}

.svc {
  background: var(--white);
  padding: 2.8rem 2.3rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s;
}

.svc:hover {
  background: var(--navy);
}

.svc:hover .svc-n {
  color: var(--white);
}

.svc:hover .svc-d {
  color: rgba(217, 229, 247, 0.58);
}

.svc:hover .svc-num {
  color: rgba(232, 201, 110, 0.15);
}

.svc:hover .svc-ico {
  color: var(--gold);
}

.svc:hover .svc-ln {
  background: var(--gold);
}

.svc-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: rgba(43, 73, 163, 0.055);
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  line-height: 1;
  transition: color 0.3s;
  user-select: none;
}

.svc-ico {
  width: 34px;
  height: 34px;
  color: var(--azure);
  margin-bottom: 1.1rem;
  transition: color 0.3s;
}

.svc-ln {
  width: 26px;
  height: 2px;
  background: var(--ice);
  margin-bottom: 0.9rem;
  transition: background 0.3s;
}

.svc-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.55rem;
  transition: color 0.3s;
}

.svc-d {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--subtle);
  transition: color 0.3s;
}

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .services-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  .services {
    padding: 4.5rem 1.4rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5px;
  }
  .svc {
    padding: 2.2rem 1.8rem;
  }
}
/* ── SMALL PHONE (≤480px) ── */
@media (max-width: 480px) {
  .services-head > div {
    text-align: left;
  }
  .services {
    padding: 3.5rem 1rem;
  }
  .svc {
    padding: 1.8rem 1.4rem;
  }
}
/* PROCESS */
.process {
  padding: 7rem 3rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3070 50%, var(--royal) 100%);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(217, 229, 247, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(217, 229, 247, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.process::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 133, 216, 0.12) 0%, transparent 70%);
}

.process-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-head {
  margin-bottom: 4rem;
}

.process-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
  margin-top: 0.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 201, 110, 0.35) 20%, rgba(232, 201, 110, 0.65) 50%, rgba(232, 201, 110, 0.35) 80%, transparent 100%);
}

.step {
  padding: 0 1.1rem;
  padding-top: 4.5rem;
  position: relative;
  text-align: center;
}

.step-dot {
  position: absolute;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(232, 201, 110, 0.14), 0 0 0 8px rgba(232, 201, 110, 0.05);
}

.step-num {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.step-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.55rem;
  line-height: 1.2;
}

.step-desc {
  font-size: 0.76rem;
  line-height: 1.6;
  color: rgba(142, 159, 204, 0.78);
}

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.5rem;
  }
  .steps::before {
    display: none;
  }
  .step {
    padding-top: 4rem;
  }
}
/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  .process {
    padding: 4.5rem 1.4rem;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .steps::before {
    display: none;
  }
  .step {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 1.2rem;
    padding: 1.5rem 0;
    text-align: left;
    border-bottom: 1px solid rgba(217, 229, 247, 0.08);
  }
  .step:last-child {
    border-bottom: none;
  }
  .step-dot {
    position: static;
    transform: none;
    grid-column: 1;
    grid-row: 1/4;
    align-self: start;
    margin-top: 0.2rem;
    width: 14px;
    height: 14px;
    justify-self: center;
  }
  .step-num {
    grid-column: 2;
    grid-row: 1;
    padding-top: 0;
  }
  .step-name {
    grid-column: 2;
    grid-row: 2;
    padding-top: 0;
  }
  .step-desc {
    grid-column: 2;
    grid-row: 3;
    padding-top: 0;
  }
}
/* ── SMALL PHONE (≤480px) ── */
@media (max-width: 480px) {
  .process {
    padding: 3.5rem 1rem;
  }
}
/* PORTFOLIO */
.portfolio {
  padding: 7rem 3rem;
  background: var(--white);
}

.portfolio-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.portfolio-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.8rem;
}

.portfolio-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  font-weight: 500;
  color: var(--navy);
}

.filters {
  display: flex;
  gap: 0.35rem;
}

.ftab {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--ice);
  background: none;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--mist);
  font-family: "DM Sans", sans-serif;
}

.ftab.active {
  background: var(--royal);
  color: var(--white);
  border-color: var(--royal);
}

.ftab:hover:not(.active) {
  border-color: var(--azure);
  color: var(--azure);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 10px;
}

.pcard {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.pcard:first-child {
  grid-row: 1/3;
}

.pbg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  position: relative;
}

.pcard:hover .pbg {
  transform: scale(1.04);
}

.p1 {
  background: linear-gradient(145deg, var(--text) 0%, #1e3070 45%, var(--royal) 80%, var(--sky) 100%);
}

.p2 {
  background: linear-gradient(145deg, #1a2856 0%, var(--cobalt) 55%, var(--azure) 100%);
}

.p3 {
  background: linear-gradient(145deg, #0a1535 0%, var(--navy) 50%, var(--slate) 100%);
}

.p4 {
  background: linear-gradient(145deg, #162045 0%, var(--royal) 55%, var(--mist) 100%);
}

.p5 {
  background: linear-gradient(145deg, #1e3070 0%, var(--azure) 50%, var(--sky) 100%);
}

.pbg-svg {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  opacity: 0.16;
}

.povl {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 28, 71, 0.94) 0%, rgba(15, 28, 71, 0.35) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.pcard:hover .povl {
  opacity: 1;
}

.ptype {
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.28rem;
}

.pname {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.28rem;
}

.pmeta {
  font-size: 0.68rem;
  color: rgba(217, 229, 247, 0.48);
  display: flex;
  gap: 0.9rem;
}

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
  }
  .pcard:first-child {
    grid-row: auto;
  }
}
/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  .portfolio {
    padding: 4.5rem 1.4rem;
  }
  .portfolio-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .filters {
    flex-wrap: wrap;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }
  .pcard:first-child {
    grid-row: auto;
  }
}
/* ── SMALL PHONE (≤480px) ── */
@media (max-width: 480px) {
  .portfolio {
    padding: 3.5rem 1rem;
  }
}
/* ══════════════════════════════════════
   DESIGN LANGUAGE TEASER — template-parts/design-teaser.php
   Shows up to 6 global_design CPT items in a 3-column grid.
   Section auto-hides when no designs are published.
══════════════════════════════════════ */
.design-teaser {
  padding: 7rem var(--gutter, 5vw);
  background: var(--fog);
}

.design-teaser-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.design-teaser-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.design-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ── Thumbnail card ── */
.design-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.design-thumb-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(49, 110, 192, 0.08);
  border: 1px solid rgba(49, 110, 192, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.design-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.design-thumb-img:hover img {
  transform: scale(1.06);
}

.design-thumb-placeholder {
  background: rgba(49, 110, 192, 0.06);
}

/* Hover overlay */
.design-thumb-ovl {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 17, 32, 0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 1.2rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.design-thumb-img:hover .design-thumb-ovl,
.design-thumb-img:focus-within .design-thumb-ovl {
  opacity: 1;
}

.design-thumb-type {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.design-thumb-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--offwhite);
  line-height: 1.3;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .design-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .design-teaser-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .design-teaser {
    padding: 4rem 1.2rem;
  }
  .design-teaser-grid {
    grid-template-columns: 1fr;
  }
}
/* BRIDGE */
.bridge {
  padding: 5.5rem 3rem;
  background: var(--royal);
  position: relative;
  overflow: hidden;
}

.bridge::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 133, 216, 0.22) 0%, transparent 60%);
}

.bridge::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(217, 229, 247, 0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(217, 229, 247, 0.022) 1px, transparent 1px);
  background-size: 60px 60px;
}

.bridge-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bridge-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.bridge-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.3rem;
}

.bridge-desc {
  font-size: 0.86rem;
  line-height: 1.8;
  color: rgba(217, 229, 247, 0.68);
}

.bridge-points {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.bpoint {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.1rem 1.4rem;
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid rgba(232, 201, 110, 0.45);
  transition: background 0.2s;
}

.bpoint:hover {
  background: rgba(255, 255, 255, 0.12);
}

.bpoint-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bpoint-title {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.bpoint-desc {
  font-size: 0.77rem;
  color: rgba(217, 229, 247, 0.58);
  line-height: 1.5;
}

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .bridge-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  .bridge {
    padding: 4rem 1.4rem;
  }
  .bridge-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bridge-title {
    font-size: clamp(1.7rem, 5vw, 2.2rem);
  }
}
/* ── SMALL PHONE (≤480px) ── */
@media (max-width: 480px) {
  .bridge {
    padding: 3.5rem 1rem;
  }
  .bpoint {
    padding: 0.9rem 1rem;
  }
}
/* TESTIMONIALS */
.testimonials {
  padding: 7rem 3rem;
  background: var(--fog);
}

.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.testi-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testi-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.7vw, 2.6rem);
  font-weight: 500;
  color: var(--navy);
  margin: 0.5rem 0 0.55rem;
}

.testi-sub {
  font-size: 0.83rem;
  color: var(--mist);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.tcard {
  background: var(--white);
  padding: 2.4rem;
  border-top: 3px solid var(--ice);
  transition: border-color 0.22s, transform 0.22s;
  display: flex;
  flex-direction: column;
}

.tcard:hover {
  border-top-color: var(--azure);
  transform: translateY(-3px);
}

.tcard.feat {
  background: var(--navy);
  border-top-color: var(--gold);
}

.tcard.feat .ttext {
  color: rgba(217, 229, 247, 0.78);
}

.tcard.feat .tname {
  color: var(--white);
}

.tcard.feat .torigin {
  color: var(--gold);
}

.tcard.feat .tproject {
  color: rgba(217, 229, 247, 0.85);
}

.tcard.feat .tq {
  color: rgba(232, 201, 110, 0.35);
}

.tq {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  line-height: 0.8;
  color: var(--ice);
  margin-bottom: 0.9rem;
  display: block;
}

.ttext {
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--body);
  font-style: italic;
  margin-bottom: 1.4rem;
}

.tauthor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.tavatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--azure), var(--cobalt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--white);
  overflow: hidden;
}

.tavatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.tname {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

.torigin {
  font-size: 0.8rem;
  color: var(--azure);
  margin-top: 0.1rem;
}

.tproject {
  font-size: 0.78rem;
  color: var(--mist);
  margin-top: 0.08rem;
}

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .testi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .tcard:last-child {
    grid-column: 1/-1;
  }
}
/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  .testimonials {
    padding: 4.5rem 1.4rem;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .tcard:last-child {
    grid-column: auto;
  }
  .tcard.feat {
    order: -1;
  }
}
/* ── SMALL PHONE (≤480px) ── */
@media (max-width: 480px) {
  .testimonials {
    padding: 3.5rem 1rem;
  }
  .tcard {
    padding: 1.8rem 1.4rem;
  }
}
/* TEAM */
.team {
  padding: 7rem 3rem;
  background: var(--white);
}

.team-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.team-head {
  margin-bottom: 3rem;
}

.team-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  font-weight: 500;
  color: var(--navy);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.tmember-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.1rem;
}

.tmember-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s;
}

.tmember:hover .tmember-bg {
  transform: scale(1.03);
}

.tm1 {
  background: linear-gradient(170deg, var(--text) 0%, var(--royal) 60%, var(--sky) 100%);
}

.tm2 {
  background: linear-gradient(170deg, #1a2856 0%, var(--cobalt) 60%, var(--azure) 100%);
}

.tm3 {
  background: linear-gradient(170deg, #0a1535 0%, var(--navy) 60%, var(--slate) 100%);
}

.tm4 {
  background: linear-gradient(170deg, #162045 0%, var(--royal) 60%, var(--mist) 100%);
}

.person-svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 58%;
  opacity: 0.18;
}

.tmember-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.18rem;
}

.tmember-role {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 0.28rem;
}

.tmember-base {
  font-size: 0.76rem;
  color: var(--mist);
}

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  .team {
    padding: 4.5rem 1.4rem;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
  .tmember-name {
    font-size: 1.05rem;
  }
}
/* ── SMALL PHONE (≤480px) ── */
@media (max-width: 480px) {
  .team {
    padding: 3.5rem 1rem;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
/* FAQ */
.faq {
  padding: 7rem 3rem;
  background: var(--ice);
}

.faq-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5.5rem;
}

.faq-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  margin: 0.5rem 0 1.1rem;
}

.faq-sub {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--subtle);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.fqi {
  border-bottom: 1px solid rgba(142, 159, 204, 0.22);
  cursor: pointer;
}

.fqi-q {
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}

.fqi-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(43, 73, 163, 0.08);
  border: 1.5px solid rgba(142, 159, 204, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--azure);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.25s;
}

.fqi.open .fqi-icon {
  transform: rotate(45deg);
  background: var(--royal);
  color: var(--white);
  border-color: var(--royal);
}

.fqi-a {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--subtle);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding-bottom 0.3s;
}

.fqi.open .fqi-a {
  max-height: 200px;
  padding-bottom: 1.3rem;
}

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  .faq {
    padding: 4.5rem 1.4rem;
  }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq-title {
    font-size: clamp(1.7rem, 5vw, 2.2rem);
  }
}
/* ── SMALL PHONE (≤480px) ── */
@media (max-width: 480px) {
  .faq {
    padding: 3.5rem 1rem;
  }
}
/* CTA FINAL */
.cta-final {
  padding: 7rem 3rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3070 40%, var(--royal) 100%);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(217, 229, 247, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(217, 229, 247, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
}

.cta-final::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(circle, rgba(60, 133, 216, 0.16) 0%, transparent 65%);
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 2.9vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.1rem;
}

.cta-title em {
  font-style: italic;
  color: var(--sky);
}

.cta-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(142, 159, 204, 0.78);
}

.cform {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(142, 159, 204, 0.18);
  padding: 2.4rem;
  backdrop-filter: blur(8px);
}

.cform-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.28rem;
}

.cform-sub {
  font-size: 0.73rem;
  color: rgba(217, 229, 247, 0.85);
  margin-bottom: 1.8rem;
}

.fg {
  margin-bottom: 0.9rem;
}

.fg label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(217, 229, 247, 0.95);
  margin-bottom: 0.38rem;
  font-weight: 500;
}

.fg input, .fg select, .fg textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.78rem 0.88rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(142, 159, 204, 0.16);
  border-radius: 0; /* match inputs — no browser default radius */
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  line-height: 1.6;
  outline: none;
  box-shadow: none; /* kill browser inset shadow on some OSes */
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--sky);
}

.fg input::placeholder, .fg textarea::placeholder {
  color: rgba(217, 229, 247, 0.6);
}

.fg textarea {
  display: block; /* prevent inline gap below element */
  resize: vertical;
  min-height: 110px;
  vertical-align: top;
}

.fg select option {
  background: var(--navy, #0a192f);
  color: #fff;
}

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

.fsub {
  width: 100%;
  padding: 0.92rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.4rem;
}

.fsub:hover {
  background: var(--gold-dark);
}

.fnote {
  font-size: 0.68rem;
  color: rgba(142, 159, 204, 0.38);
  text-align: center;
  margin-top: 0.75rem;
}

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .cta-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
  }
}
/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  .cta-final {
    padding: 4.5rem 1.4rem;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .fr {
    grid-template-columns: 1fr;
  }
  .cta-title {
    font-size: clamp(1.9rem, 5vw, 2.4rem);
  }
  .cform {
    padding: 1.8rem 1.4rem;
  }
}
/* ── SMALL PHONE (≤480px) ── */
@media (max-width: 480px) {
  .cta-final {
    padding: 3.5rem 1rem;
  }
}
/* FOOTER */
footer {
  background: var(--fog); /* Match navbar/light sections */
  padding: 4.5rem 3rem 2rem;
  border-top: 1px solid rgba(46, 108, 179, 0.12);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  text-decoration: none;
}

.footer-logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--navy);
}

.footer-logo-text span {
  color: var(--azure);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.footer-contact-list {
  list-style: none;
  margin-top: 1.5rem;
}

.footer-contact-list li {
  margin-bottom: 0.75rem;
}

.footer-contact-list a, .footer-contact-list .ft-text {
  font-size: 0.85rem;
  color: var(--body);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-list a:hover {
  color: var(--azure);
}

.fcol h5 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.fcol ul {
  list-style: none;
}

.fcol li {
  margin-bottom: 0.85rem;
}

.fcol a, .fcol .ft-text {
  font-size: 0.85rem;
  color: var(--body);
  text-decoration: none;
  transition: all 0.22s;
  display: inline-block;
}

.fcol a:hover {
  color: var(--azure);
  transform: translateX(3px);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(46, 108, 179, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--subtle);
}

.footer-flags {
  font-size: 1.15rem;
  display: flex;
  gap: 0.45rem;
}

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  footer {
    padding: 3.5rem 2rem 2rem;
  }
}
/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  footer {
    padding: 3rem 1.5rem 1.8rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
/* ══════════════════════════════════════
   PAGE HERO — /projets
══════════════════════════════════════ */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--text) 0%, #142455 45%, var(--navy) 100%);
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(222, 233, 249, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(222, 233, 249, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

.page-hero-inner {
  padding: 6rem 3.5rem 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 500;
  color: var(--offwhite);
  line-height: 1.07;
  margin-top: 0.5rem;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-desc {
  font-size: 0.88rem;
  line-height: 1.82;
  color: rgba(222, 233, 249, 0.62);
  max-width: 44ch;
  margin-top: 1rem;
  border-left: 3px solid rgba(49, 110, 192, 0.35);
  padding-left: 1.1rem;
}

.page-hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(49, 110, 192, 0.15);
  padding-top: 2rem;
  flex-wrap: wrap;
}

.phs {
  padding-right: 2rem;
  margin-right: 2rem;
  border-right: 1px solid rgba(49, 110, 192, 0.15);
}
.phs:last-child {
  border-right: none;
}

.phs-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.phs-label {
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(222, 233, 249, 0.45);
  margin-top: 0.25rem;
}

.page-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-visual svg {
  width: 90%;
  opacity: 0.55;
}
.page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(60, 133, 216, 0.18) 0%, transparent 70%);
}

/* ══════════════════════════════════════
   PROJECTS SECTION
══════════════════════════════════════ */
.projets-section {
  padding: 6rem 3rem;
  background: var(--offwhite);
}

.projets-inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* ── Filter Tabs ── */
.projects-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--fog);
}

.ftab {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--subtle);
  background: var(--white);
  border: 1px solid rgba(43, 73, 163, 0.12);
  border-radius: 100px;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.ftab:hover {
  border-color: var(--cobalt);
  color: var(--cobalt);
  background: rgba(44, 86, 177, 0.04);
}
.ftab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(38, 58, 138, 0.25);
}

/* ── Projects Grid ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  background: transparent;
}

/* ── PROJECT CARD ── */
.pj-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(43, 73, 163, 0.07);
  box-shadow: 0 2px 16px rgba(38, 58, 138, 0.06);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.25s ease;
}
.pj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(38, 58, 138, 0.14);
  border-color: rgba(43, 73, 163, 0.15);
}
.pj-card:hover .pj-visual img,
.pj-card:hover .pj-visual video {
  transform: scale(1.04);
}
.pj-card:hover .pj-cta-arrow {
  transform: translateX(4px);
}

/* ── Card Visual (image/video) ── */
.pj-visual {
  position: relative;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--navy) 0%, #1a2f70 100%);
}
.pj-visual img,
.pj-visual video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 0;
}
.pj-visual {
  /* Subtle gradient overlay on images for text readability */
}
.pj-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(15, 28, 71, 0.55) 100%);
  z-index: 2;
  pointer-events: none;
}

/* SVG Fallback */
.pbg-svg {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  opacity: 0.18;
}

/* Year Badge */
.pj-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--text);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 360° badge */
.badge-360 {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 28, 71, 0.7);
  backdrop-filter: blur(8px);
  color: var(--ice);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 3;
  border: 1px solid rgba(222, 233, 249, 0.2);
}

/* ── Card Info ── */
.pj-info {
  padding: 1.6rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pj-cat {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 0.55rem;
  font-weight: 600;
}

.pj-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.pj-loc {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--subtle);
  margin-bottom: 1rem;
}
.pj-loc::before {
  content: "📍";
  font-size: 0.7rem;
}

/* Meta chips (surface, rooms, duration) */
.pj-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.85rem 0;
  border-top: 1px solid var(--fog);
  border-bottom: 1px solid var(--fog);
  margin-bottom: 1rem;
}
.pj-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--offwhite);
  border: 1px solid rgba(43, 73, 163, 0.09);
  border-radius: 6px;
  padding: 0.25rem 0.6rem;
  font-size: 0.69rem;
  color: var(--subtle);
  font-weight: 400;
}
.pj-meta span strong {
  color: var(--navy);
  font-weight: 700;
}

.pj-desc {
  font-size: 0.81rem;
  line-height: 1.75;
  color: var(--subtle);
  flex: 1;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA link */
.pj-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cobalt);
  text-decoration: none;
  transition: color 0.25s ease;
  margin-top: auto;
}
.pj-cta .pj-cta-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.pj-cta:hover {
  color: var(--navy);
}

.projects-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: var(--subtle);
  font-size: 0.9rem;
}

/* ── CTA BAND ── */
.projets-cta-band {
  padding: 6rem 3rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.projets-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(222, 233, 249, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(222, 233, 249, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.projets-cta-band::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 133, 216, 0.25) 0%, transparent 65%);
}

.projets-cta-band-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.projets-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 500;
  color: var(--offwhite);
  line-height: 1.15;
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
}

.projets-cta-desc {
  font-size: 0.86rem;
  color: rgba(222, 233, 249, 0.6);
  max-width: 46ch;
}

.projets-cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .page-hero-inner {
    padding: 5rem 2.5rem 3rem;
  }
  .page-hero-visual {
    display: none;
  }
  .projets-section {
    padding: 5rem 2rem;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .projets-cta-band {
    padding: 4.5rem 2rem;
  }
}
@media (max-width: 768px) {
  .page-hero-inner {
    padding: 3.5rem 1.5rem 2.5rem;
  }
  .phs {
    padding-right: 1.2rem;
    margin-right: 1.2rem;
  }
  .phs-num {
    font-size: 1.6rem;
  }
  .projets-section {
    padding: 4rem 1.4rem;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .projets-cta-band {
    padding: 4rem 1.4rem;
  }
  .projets-cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .page-hero-inner {
    padding: 2.8rem 1.1rem 2rem;
  }
  .page-hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
  .projets-section {
    padding: 3.5rem 1rem;
  }
  .pj-info {
    padding: 1.3rem 1.4rem 1.5rem;
  }
  .pj-visual {
    height: 220px;
  }
  .projets-cta-band {
    padding: 3.5rem 1rem;
  }
  .projets-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .projets-cta-actions .btn-primary,
  .projets-cta-actions .btn-wa {
    text-align: center;
  }
}
/* ══════════════════════════════════════
   GALLERY PAGE — /gallery
══════════════════════════════════════ */
/* ── HERO ── */
.gal-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--text) 0%, #162045 40%, var(--navy) 100%);
  position: relative;
}
.gal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(222, 233, 249, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(222, 233, 249, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

.gal-hero-inner {
  padding: 6rem 3.5rem 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.gal-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 3.8vw, 4rem);
  font-weight: 500;
  color: var(--offwhite);
  line-height: 1.08;
  margin-top: 0.5rem;
}
.gal-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.gal-hero-desc {
  font-size: 0.88rem;
  line-height: 1.82;
  color: rgba(222, 233, 249, 0.6);
  max-width: 44ch;
  margin-top: 1rem;
  border-left: 3px solid rgba(49, 110, 192, 0.35);
  padding-left: 1.1rem;
}

/* Filter tabs in hero */
.gal-tabs-nav {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.gtab {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.46rem 1.1rem;
  border: 1.5px solid rgba(49, 110, 192, 0.25);
  background: none;
  cursor: pointer;
  color: rgba(222, 233, 249, 0.5);
  font-family: var(--font-sans);
  transition: all 0.25s;
}
.gtab.active, .gtab:hover {
  background: var(--gold);
  color: var(--text);
  border-color: var(--gold);
}

.gal-hero-bg {
  position: relative;
  overflow: hidden;
}
.gal-hero-bg .gal-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.82) saturate(0.9);
}
.gal-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 17, 40, 0.55) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.gal-hero-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(49, 110, 192, 0.04);
  border-left: 1px dashed rgba(49, 110, 192, 0.18);
}
.gal-hero-img-placeholder .gal-placeholder-icon {
  width: 72px;
  height: 72px;
  opacity: 0.7;
}
.gal-hero-img-placeholder .gal-placeholder-hint {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(222, 233, 249, 0.38);
  text-align: center;
  max-width: 22ch;
  line-height: 1.6;
  padding: 0 1rem;
}

/* ── SECTION ── */
.gal-section {
  padding: 7rem 3rem;
  background: var(--offwhite);
}

.gal-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ── GRID ── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ice);
}

/* ── ITEM ── */
.gal-item {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gal-item.large {
  grid-column: span 2;
}
.gal-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(36, 57, 131, 0.12);
  z-index: 1;
}

.gal-item-visual {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.gal-item-visual svg, .gal-item-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Visual backgrounds per type */
.gi-plan {
  background: linear-gradient(145deg, #0f1c47 0%, var(--navy) 60%, #142455 100%);
  height: 280px;
}

.gi-render-out {
  background: linear-gradient(145deg, var(--text) 0%, #142455 50%, var(--cobalt) 100%);
  height: 240px;
}

.gi-render-in {
  background: linear-gradient(145deg, #101e40 0%, var(--slate) 55%, var(--sky) 100%);
  height: 240px;
}

.gi-section {
  background: linear-gradient(145deg, #162045 0%, var(--navy) 55%, var(--cobalt) 100%);
  height: 240px;
}

.gi-kitchen {
  background: linear-gradient(145deg, #091230 0%, #142455 50%, var(--slate) 100%);
  height: 240px;
}

.gi-terrace {
  background: linear-gradient(145deg, var(--text) 0%, #142455 40%, var(--cobalt) 80%, var(--sky) 100%);
  height: 280px;
}

/* Type tag */
.gal-type-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(36, 57, 131, 0.85);
  border: 1px solid rgba(49, 110, 192, 0.25);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  backdrop-filter: blur(4px);
}

.gal-badge-out,
.gal-badge-in {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
}

.gal-badge-out {
  background: rgba(49, 110, 192, 0.9);
  color: var(--text);
}

.gal-badge-in {
  background: rgba(60, 133, 216, 0.85);
  color: var(--offwhite);
}

/* Item info */
.gal-item-info {
  padding: 1.6rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gal-item-cat {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.gal-item-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.gal-item-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.gal-item-name a:hover {
  color: var(--cobalt);
}

.gal-item-desc {
  font-size: 0.8rem;
  line-height: 1.72;
  color: var(--body);
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gal-item-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cobalt);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s, letter-spacing 0.2s;
}

.gal-item-cta:hover {
  color: var(--navy);
  letter-spacing: 0.15em;
}

/* Image link wrapper — fixed height so all cards are uniform */
.gal-item-img-link {
  display: block;
  position: relative;
  overflow: hidden;
  height: 240px;
}

.gal-item-img-link img,
.gal-item-img-link video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gal-item-img-link:hover img,
.gal-item-img-link:hover video {
  transform: scale(1.06);
}

/* Hover overlay */
.gal-item-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 17, 32, 0.78) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.1rem 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gal-item-img-link:hover .gal-item-img-overlay {
  opacity: 1;
}

.gal-item-view-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.1);
}

/* No-image placeholder */
.gal-item-no-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(49, 110, 192, 0.06);
  border: 1px solid rgba(49, 110, 192, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(49, 110, 192, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── CTA ── */
.gal-cta {
  padding: 7rem 3rem;
  background: linear-gradient(135deg, var(--text) 0%, #142455 45%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gal-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(222, 233, 249, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(222, 233, 249, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
}
.gal-cta::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 133, 216, 0.18) 0%, transparent 65%);
}

.gal-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gal-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  color: var(--offwhite);
  line-height: 1.1;
  margin: 0.5rem 0 1.2rem;
}
.gal-cta-title em {
  font-style: italic;
  color: var(--gold);
}

.gal-cta-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(222, 233, 249, 0.6);
  margin-bottom: 2.2rem;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .gal-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .gal-hero-inner {
    padding: 5rem 2.5rem 3rem;
  }
  .gal-hero-bg {
    display: none;
  }
  .gal-section {
    padding: 5rem 2rem;
  }
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-item.large {
    grid-column: span 2;
  }
  .gal-cta {
    padding: 5rem 2rem;
  }
}
@media (max-width: 768px) {
  .gal-hero-inner {
    padding: 3.5rem 1.5rem 2.5rem;
  }
  .gal-section {
    padding: 4rem 1.4rem;
  }
  .gal-grid {
    grid-template-columns: 1fr;
  }
  .gal-item.large {
    grid-column: span 1;
  }
  .gi-plan, .gi-terrace {
    height: 220px;
  }
  .gal-cta {
    padding: 4.5rem 1.4rem;
  }
}
@media (max-width: 480px) {
  .gal-hero-inner {
    padding: 2.8rem 1.1rem 2rem;
  }
  .gal-hero-title {
    font-size: clamp(2.1rem, 8.5vw, 2.8rem);
  }
  .gal-section {
    padding: 3.5rem 1rem;
  }
  .gal-item-info {
    padding: 1.2rem 1.4rem 1.5rem;
  }
  .gal-cta {
    padding: 3.5rem 1rem;
  }
}
/* ══════════════════════════════════════
   360° VIRTUAL TOUR — template-parts/tour360.php
   Two-column layout: editorial left + viewer right.
   Consistent with the theme design system (bridge, process…).
   Uses Pannellum (loaded via functions.php enqueue).
══════════════════════════════════════ */
/* ── Section wrapper ── */
.tour360 {
  position: relative;
  background: var(--text);
  overflow: hidden;
  padding: 0;
  /* Grid texture — matches bridge/process */
}
.tour360::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(217, 229, 247, 0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(217, 229, 247, 0.022) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.tour360 {
  /* Radial glow — left side */
}
.tour360::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 110, 192, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── Two-column inner grid ── */
.tour360-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 600px;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   LEFT COLUMN — Editorial
══════════════════════════════════════ */
.tour360-editorial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 5.5rem 3rem 5.5rem 4.5rem;
  border-right: 1px solid rgba(49, 110, 192, 0.14);
  position: relative;
}

/* Section label */
.tour360-editorial .sec-label {
  margin-bottom: 1.1rem;
}

/* Section title */
.tour360-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--offwhite);
  line-height: 1.12;
  margin: 0 0 1.3rem;
}
.tour360-title em {
  color: var(--gold);
  font-style: italic;
  display: block;
}

/* Subtitle / description */
.tour360-sub {
  font-size: 0.88rem;
  color: rgba(217, 229, 247, 0.58);
  line-height: 1.82;
  max-width: 38ch;
  margin-bottom: 2.4rem;
  border-left: 3px solid rgba(49, 110, 192, 0.3);
  padding-left: 1rem;
}

/* Feature list */
.tour360-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.8rem;
}
.tour360-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(217, 229, 247, 0.72);
  font-weight: 400;
}
.tour360-features li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.85;
}

/* Slide selector pills (only shown when multiple slides) */
.tour360-selector {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 2rem;
}

.tour360-pill {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(217, 229, 247, 0.1);
  border-left: 3px solid rgba(217, 229, 247, 0.12);
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: left;
  font-family: var(--font-sans);
}
.tour360-pill.is-active, .tour360-pill:hover {
  background: rgba(49, 110, 192, 0.12);
  border-color: rgba(49, 110, 192, 0.35);
  border-left-color: var(--gold);
}
.tour360-pill.is-active .tour360-pill-num {
  color: var(--gold);
}

.tour360-pill-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(217, 229, 247, 0.28);
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.22s;
}

.tour360-pill-title {
  font-size: 0.78rem;
  color: rgba(217, 229, 247, 0.68);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Navigation arrows + counter */
.tour360-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.tour360-prev,
.tour360-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(217, 229, 247, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(217, 229, 247, 0.65);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
  flex-shrink: 0;
}
.tour360-prev svg,
.tour360-next svg {
  width: 14px;
  height: 14px;
}
.tour360-prev:hover,
.tour360-next:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232, 201, 110, 0.08);
}
.tour360-prev:disabled,
.tour360-next:disabled {
  opacity: 0.22;
  cursor: not-allowed;
}
.tour360-prev:disabled:hover,
.tour360-next:disabled:hover {
  border-color: rgba(217, 229, 247, 0.18);
  color: rgba(217, 229, 247, 0.65);
  background: none;
}

.tour360-counter {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(217, 229, 247, 0.38);
}

/* ══════════════════════════════════════
   RIGHT COLUMN — Viewer stage
══════════════════════════════════════ */
.tour360-stage {
  position: relative;
  overflow: hidden;
}

.tour360-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}
.tour360-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.tour360-viewer {
  width: 100%;
  height: 100%;
}

.tour360-cta {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 0.8rem 2rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  transition: all 0.22s ease;
  background: var(--gold);
  width: max-content;
}
.tour360-cta:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

/* Drag hint */
.tour360-drag-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 10, 28, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(217, 229, 247, 0.12);
  border-radius: 40px;
  padding: 0.8rem 1.4rem;
  color: rgba(217, 229, 247, 0.88);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 8;
  white-space: nowrap;
  animation: hintFade 3s ease 2s forwards;
  opacity: 1;
}
.tour360-drag-hint svg {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

@keyframes hintFade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}
/* ── 360° Badge on archive cards ── */
.badge-360 {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  background: rgba(8, 14, 35, 0.84);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(232, 201, 110, 0.55);
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 4px;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.badge-360::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: dot360pulse 2s ease-in-out infinite;
}

@keyframes dot360pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
/* ── Single post: full-width 360 viewer block ── */
.pnlm-single-wrap {
  position: relative;
  width: 100%;
  height: 540px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(49, 110, 192, 0.18);
}

.pnlm-single-viewer {
  width: 100%;
  height: 100%;
}

.pnlm-hint-banner {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 14, 35, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(49, 110, 192, 0.3);
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  font-size: 0.72rem;
  color: rgba(217, 229, 247, 0.8);
  letter-spacing: 0.06em;
  pointer-events: none;
  z-index: 10;
  animation: hintFade 4s ease 2s forwards;
  white-space: nowrap;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1200px) {
  .tour360-inner {
    grid-template-columns: 360px 1fr;
  }
  .tour360-editorial {
    padding: 4.5rem 2.5rem 4.5rem 3rem;
  }
}
@media (max-width: 1024px) {
  .tour360-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 480px;
  }
  .tour360-editorial {
    border-right: none;
    border-bottom: 1px solid rgba(49, 110, 192, 0.14);
    padding: 4rem 2.5rem 3rem;
  }
  .tour360-stage {
    position: relative;
  }
  .tour360-slide {
    position: absolute;
  }
}
@media (max-width: 768px) {
  .tour360-inner {
    grid-template-rows: auto 360px;
  }
  .tour360-editorial {
    padding: 3.5rem 1.5rem 2.5rem;
  }
  .tour360-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }
  .tour360-info {
    left: 1rem;
    right: 1rem;
    max-width: none;
    padding: 0.9rem 1.2rem;
    bottom: 1rem;
  }
  .tour360-name {
    font-size: 1rem;
  }
  .pnlm-single-wrap {
    height: 400px;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .tour360-inner {
    grid-template-rows: auto 300px;
  }
  .tour360-editorial {
    padding: 3rem 1.2rem 2rem;
  }
  .tour360-features {
    display: none;
  }
  .pnlm-single-wrap {
    height: 300px;
  }
}
/* ══════════════════════════════════════
   LEGAL PAGES — page-legal.php
══════════════════════════════════════ */
.legal-hero {
  background: var(--fog);
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(49, 110, 192, 0.1);
}

.legal-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.legal-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--subtle);
  background: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.legal-hero-meta svg {
  color: var(--azure);
}

.legal-content-section {
  padding: 5rem 2rem;
  background: white;
}

.legal-content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── Sticky Sidebar TOC ── */
.legal-toc {
  position: sticky;
  top: 100px; /* Accounts for sticky navbar */
  background: var(--fog);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(49, 110, 192, 0.08);
}

.legal-toc-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

#legalTocNav {
  display: flex;
  flex-direction: column;
}

.legal-toc-link {
  font-size: 0.85rem;
  color: var(--body);
  text-decoration: none;
  padding: 0.6rem 0 0.6rem 1rem;
  border-left: 2px solid rgba(49, 110, 192, 0.15);
  transition: all 0.2s;
  line-height: 1.4;
}
.legal-toc-link:hover {
  color: var(--navy);
  border-left-color: rgba(49, 110, 192, 0.4);
}
.legal-toc-link.is-active {
  color: var(--azure);
  border-left-color: var(--azure);
  font-weight: 600;
}

/* ── Main Article Typography ── */
.legal-article {
  max-width: 800px;
}
.legal-article h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  margin-top: 3.5rem;
  margin-bottom: 1.2rem;
  scroll-margin-top: 100px; /* Anchor offset for sticky header */
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 0.5rem;
}
.legal-article h2:first-child {
  margin-top: 0;
}
.legal-article h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.legal-article p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--body);
  margin-bottom: 1.5rem;
}
.legal-article ul, .legal-article ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.legal-article ul li, .legal-article ol li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--body);
  margin-bottom: 0.5rem;
}
.legal-article strong {
  color: var(--navy);
  font-weight: 600;
}
.legal-article a {
  color: var(--azure);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-article a:hover {
  color: var(--royal);
}

.legal-back {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.legal-back a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--subtle);
  text-decoration: none;
  text-transform: uppercase;
}
.legal-back a:hover {
  color: var(--navy);
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .legal-content-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .legal-toc {
    position: static;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .legal-hero {
    padding: 6rem 1.5rem 3rem;
  }
  .legal-content-section {
    padding: 3rem 1.5rem;
  }
  .legal-article h2 {
    font-size: 1.6rem;
  }
}
/* ══════════════════════════════════════
   LANGUAGE SWITCHER — navbar + RTL support
   Works with Polylang plugin. Gracefully
   hidden when plugin is not active.
══════════════════════════════════════ */
/* ── Wrapper ── */
.lang-switcher {
  position: relative;
  z-index: 200;
}

/* ── Toggle button ── */
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--bld-nav-text, #1a2e6e);
  border-radius: 6px;
  padding: 0.38rem 0.6rem;
  cursor: pointer;
  color: var(--bld-nav-text, #1a2e6e);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 0.85;
}
.lang-btn .lang-flag {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}
.lang-btn .lang-chevron {
  width: 11px;
  height: 11px;
  transition: transform 0.25s ease;
  opacity: 0.85;
  flex-shrink: 0;
}
.lang-btn:hover {
  background: rgba(128, 128, 128, 0.15);
  border-color: var(--bld-nav-text, #1a2e6e);
  color: var(--bld-nav-text, #1a2e6e);
  opacity: 1;
}

.lang-switcher.is-open .lang-btn {
  border-color: var(--bld-nav-text, #1a2e6e);
  background: rgba(128, 128, 128, 0.2);
  color: var(--bld-nav-text, #1a2e6e);
  opacity: 1;
}
.lang-switcher.is-open .lang-btn .lang-chevron {
  transform: rotate(180deg);
}

/* ── Dropdown panel ── */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 170px;
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  background: rgba(44, 51, 62, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(49, 110, 192, 0.28);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.lang-switcher.is-open .lang-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.lang-dropdown li {
  margin: 0;
  padding: 0;
}
.lang-dropdown::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 14px;
  width: 10px;
  height: 10px;
  background: rgba(44, 51, 62, 0.97);
  border-left: 1px solid rgba(49, 110, 192, 0.28);
  border-top: 1px solid rgba(49, 110, 192, 0.28);
  transform: rotate(45deg);
}

/* ── Individual language option ── */
.lang-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  color: rgba(217, 229, 247, 0.7);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-option .lang-flag {
  width: 18px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}
.lang-option .lang-check {
  width: 13px;
  height: 13px;
  margin-left: auto;
  color: var(--gold);
  flex-shrink: 0;
}
.lang-option:hover {
  background: rgba(49, 110, 192, 0.15);
  color: var(--offwhite);
}
.lang-option.is-current {
  color: var(--offwhite);
  font-weight: 500;
}

/* ── Mobile drawer: flat pill links ── */
.drawer-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(49, 110, 192, 0.12);
  margin-top: 1rem;
}
.drawer-lang a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(217, 229, 247, 0.18);
  border-radius: 5px;
  text-decoration: none;
  color: rgba(217, 229, 247, 0.65);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.drawer-lang a img {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.drawer-lang a:hover, .drawer-lang a.is-current {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232, 201, 110, 0.07);
}

/* ── Hide desktop switcher on mobile ── */
@media (max-width: 768px) {
  .lang-switcher {
    display: none;
  }
}
/* ═══════════════════════════════════════
   RTL SUPPORT — dir="rtl" (Arabic, etc.)
   WordPress sets this on <html> automatically
   when the active language is RTL.
═══════════════════════════════════════ */
[dir=rtl] {
  /* Nav */
}
[dir=rtl] nav .nav-links {
  flex-direction: row-reverse;
}
[dir=rtl] {
  /* Language dropdown opens left in RTL */
}
[dir=rtl] .lang-dropdown {
  right: auto;
  left: 0;
}
[dir=rtl] .lang-dropdown::before {
  right: auto;
  left: 14px;
}
[dir=rtl] {
  /* Hero */
}
[dir=rtl] .hero-fullscreen .hero-content {
  text-align: right;
  left: auto;
  right: 0;
}
[dir=rtl] {
  /* Virtual tour info panel */
}
[dir=rtl] .tour360-info {
  left: auto;
  right: 2rem;
}
[dir=rtl] {
  /* Badge */
}
[dir=rtl] .badge-360 {
  left: auto;
  right: 0.65rem;
}
[dir=rtl] {
  /* Page hero */
}
[dir=rtl] .page-hero-inner,
[dir=rtl] .gal-hero-inner {
  text-align: right;
}
[dir=rtl] {
  /* Process steps */
}
[dir=rtl] .step {
  text-align: right;
}
[dir=rtl] {
  /* Bridge points */
}
[dir=rtl] .bpoint {
  flex-direction: row-reverse;
  text-align: right;
}
[dir=rtl] {
  /* Card info */
}
[dir=rtl] .pj-info,
[dir=rtl] .gal-item-info,
[dir=rtl] .povl {
  text-align: right;
}
[dir=rtl] {
  /* Mobile drawer */
}
[dir=rtl] .nav-drawer {
  text-align: right;
}
[dir=rtl] .drawer-lang {
  justify-content: flex-end;
}
[dir=rtl] {
  /* General text */
}
[dir=rtl] p, [dir=rtl] h1, [dir=rtl] h2, [dir=rtl] h3, [dir=rtl] h4, [dir=rtl] li {
  text-align: start;
}
[dir=rtl] {
  /* Form inputs */
}
[dir=rtl] input, [dir=rtl] textarea, [dir=rtl] select {
  direction: rtl;
  text-align: right;
}

/* ═══════════════════════════════════════
   RTL SUPPORT — dir="rtl" (Arabic, etc.)
   WordPress sets this on <html> automatically
   when the active language is RTL.
═══════════════════════════════════════ */
[dir=rtl] {
  /* ── Nav ── */
}
[dir=rtl] nav .nav-links {
  flex-direction: row-reverse;
}
[dir=rtl] nav .nav-links a {
  font-size: 0.85rem;
}
[dir=rtl] {
  /* ── Language dropdown opens on the left in RTL ── */
}
[dir=rtl] .lang-dropdown {
  right: auto;
  left: 0;
}
[dir=rtl] .lang-dropdown::before {
  right: auto;
  left: 14px;
}
[dir=rtl] {
  /* ── Hero ── */
}
[dir=rtl] .hero-fullscreen .hero-content {
  text-align: right;
  left: auto;
  right: 0;
}
[dir=rtl] .hero-fullscreen {
  /* Badge moves to the LEFT in RTL */
}
[dir=rtl] .hero-fullscreen .hero-badge {
  right: auto;
  left: 0;
}
[dir=rtl] .hero-fullscreen {
  /* Decorative left-border accent on desc → flip to right */
}
[dir=rtl] .hero-fullscreen .hero-desc {
  border-left: none;
  border-right: 3px solid rgba(232, 201, 110, 0.45);
  padding-left: 0;
  padding-right: 1.1rem;
}
[dir=rtl] .hero-fullscreen {
  /* Eyebrow line :: before stays at start of text */
}
[dir=rtl] .hero-fullscreen .hero-eyebrow::before {
  order: 1; /* push line after the text in RTL flex row */
}
[dir=rtl] {
  /* ── Feature (Services) cards — number moves to the LEFT corner ── */
}
[dir=rtl] .svc-num {
  right: auto;
  left: 1.2rem;
}
[dir=rtl] {
  /* ── Virtual tour info panel ── */
}
[dir=rtl] .tour360-info {
  left: auto;
  right: 2rem;
}
[dir=rtl] {
  /* ── 360° badge ── */
}
[dir=rtl] .badge-360 {
  left: auto;
  right: 0.65rem;
}
[dir=rtl] {
  /* ── Hero overlay gradient — reverse direction so dark side is on the right (where RTL text sits) ── */
}
[dir=rtl] .hero-fullscreen .hero-overlay {
  background: linear-gradient(to left, rgba(8, 14, 35, 0.82) 0%, rgba(15, 28, 71, 0.52) 45%, rgba(8, 14, 35, 0.08) 100%);
}
[dir=rtl] {
  /* ── Social floats — move to the LEFT in RTL ── */
}
[dir=rtl] .social-floats {
  right: auto;
  left: 2.35rem;
}
[dir=rtl] .wa-float {
  right: auto;
  left: 2rem;
}
@media (max-width: 768px) {
  [dir=rtl] .social-floats {
    left: 1.6rem;
    right: auto;
  }
  [dir=rtl] .wa-float {
    left: 1.4rem;
    right: auto;
  }
}
[dir=rtl] {
  /* ── Page hero (archive/gallery pages) ── */
}
[dir=rtl] .page-hero-inner,
[dir=rtl] .gal-hero-inner {
  text-align: right;
}
[dir=rtl] {
  /* ── Process steps ── */
}
[dir=rtl] .step {
  text-align: right;
}
[dir=rtl] {
  /* ── Bridge points ── */
}
[dir=rtl] .bpoint {
  flex-direction: row-reverse;
  text-align: right;
}
[dir=rtl] {
  /* ── Card info overlays ── */
}
[dir=rtl] .pj-info,
[dir=rtl] .gal-item-info,
[dir=rtl] .povl {
  text-align: right;
}
[dir=rtl] {
  /* ── Mobile drawer ── */
}
[dir=rtl] .nav-drawer {
  text-align: right;
}
[dir=rtl] .nav-drawer .nav-links a {
  font-size: 1.25rem;
}
[dir=rtl] .drawer-lang {
  justify-content: flex-end;
}
[dir=rtl] {
  /* ── Section Label ── */
}
[dir=rtl] .sec-label {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}
[dir=rtl] {
  /* ── General text ── */
}
[dir=rtl] p, [dir=rtl] h1, [dir=rtl] h2, [dir=rtl] h3, [dir=rtl] h4, [dir=rtl] li {
  text-align: start;
}
[dir=rtl] {
  /* ── Form inputs ── */
}
[dir=rtl] input, [dir=rtl] textarea, [dir=rtl] select {
  direction: rtl;
  text-align: right;
}

/*# sourceMappingURL=style.css.map */
