/* =====================================================
   KAKA'S BUSINESS INC. (KB) — style.css
   Design Reference: lxcostarica.com
   Luxury Real Estate · Editorial Minimalism
   ===================================================== */


/* =====================================================
   GOOGLE FONTS
   Place these <link> tags in every HTML <head>:

   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;1,400&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap" rel="stylesheet">

   @import kept here as CSS fallback:
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;1,400&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');


/* =====================================================
   1. CSS RESET
   ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

address {
  font-style: normal;
}

hr {
  border: none;
}


/* =====================================================
   2. :ROOT DESIGN TOKENS
   ===================================================== */
:root {

  /* --- Color Palette --- */
  --color-black:          #0C0C0C;          /* Near-black — body text, footer */
  --color-white:          #FFFFFF;          /* Pure white */
  --color-cream:          #FFFFFF;          /* Warm off-white — section backgrounds */
  --color-sand:           #E8DDD0;          /* Warmer cream — alternate sections */
  --color-gold:           #0069b4;          /* Muted warm gold — accents, lines, hovers */
  --color-gold-dark:      #8A6D3B;          /* Deeper gold — hover states */
  --color-charcoal:       #1A1A1A;          /* Nav background when scrolled */

  --color-overlay-dark:   rgba(0, 0, 0, 0.45);   /* Hero overlay — standard */
  --color-overlay-heavy:  rgba(0, 0, 0, 0.60);   /* Hero overlay — heavy */
  --color-overlay-light:  rgba(0, 0, 0, 0.25);   /* Overlay — lighter text sections */

  --color-border:         rgba(184, 150, 90, 0.30); /* Subtle gold rule lines */
  --color-border-dark:    rgba(184, 150, 90, 0.15); /* Even subtler on dark */

  --color-text-muted:     rgba(255, 255, 255, 0.72); /* Muted white on dark overlays */
  --color-text-dim:       rgba(12, 12, 12, 0.60);    /* Dimmed black on light sections */

  /* --- Typography --- */
  --font-display: 'Bodoni Moda', serif;     /* Headlines, hero text, pull quotes */
  --font-body:    'Lato', sans-serif;       /* Navigation, body, labels, buttons */

  /* --- Spacing Scale --- */
  --space-xs:    0.5rem;    /*  8px */
  --space-sm:    1rem;      /* 16px */
  --space-md:    2.5rem;    /* 40px */
  --space-lg:    5rem;      /* 80px */
  --space-xl:    8rem;      /* 128px */
  --space-2xl:   12rem;     /* 192px */

  /* --- Layout --- */
  --container:   1200px;
  --gutter:      clamp(1.5rem, 5vw, 4rem);

  /* --- Transition Presets --- */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}


/* =====================================================
   3. BASE TYPOGRAPHY
   ===================================================== */

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-black);
  background-color: var(--color-white);

  /* Page-load fade-in — see section 10 */
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

/* --- Headings --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 8vw, 6.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 500;
}

/* --- Body Text --- */
p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 65ch;
}

/* Override max-width for paragraphs that should fill their container */
p.p--full { max-width: none; }

/* --- Inline --- */
strong { font-weight: 500; }
em     { font-style: italic; }


/* =====================================================
   4. UTILITY CLASSES
   ===================================================== */

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

/* Section label — small uppercase gold tag */
.label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 1.2rem;
}

.label--white  { color: rgba(255, 255, 255, 0.72); letter-spacing: 0.35em; }
.label--muted  { color: var(--color-text-dim); }
.label--center { text-align: center; }

/* Text utilities */
.text-white   { color: var(--color-white); }
.text-gold    { color: var(--color-gold); }
.text-black   { color: var(--color-black); }
.text-muted   { color: var(--color-text-muted); }
.text-center  { text-align: center; }
.text-italic  { font-style: italic; }
.text-upper   { text-transform: uppercase; letter-spacing: 0.15em; }

/* Display font utility */
.font-display { font-family: var(--font-display); }
.font-body    { font-family: var(--font-body); }

/* Spacing utility */
.mt-lg { margin-top: var(--space-lg); }

/* Visibility / overflow */
.overflow-hidden { overflow: hidden; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* =====================================================
   5. SECTION GOLD RULE
   ===================================================== */

/* Short decorative gold line — used below .label elements */
.gold-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  border: none;
  margin: 1.5rem 0;
}

/* Variants */
.gold-rule--full   { width: 100%; background: var(--color-border); }
.gold-rule--center { margin-left: auto; margin-right: auto; }
.gold-rule--sm     { width: 40px; margin: var(--space-sm) 0; }
.gold-rule--lg     { width: 80px; }


/* =====================================================
   6. BUTTON STYLES
   ===================================================== */

/* Base shared properties */
.btn-primary,
.btn-dark,
.btn-gold {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

/* Primary — white border/text, hover: filled white */
.btn-primary {
  border: 1px solid var(--color-white);
  color: var(--color-white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-white);
  color: var(--color-black);
}

/* Dark — black border/text, hover: filled black */
.btn-dark {
  border: 1px solid var(--color-black);
  color: var(--color-black);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-dark--full {
  width: 100%;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

/* Gold — gold border/text, hover: filled gold */
.btn-gold {
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--color-gold);
  color: var(--color-white);
}

/* Bare text link with border-bottom — no box */
.btn-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  transition: color 0.3s ease;
  line-height: 1;
}

.btn-text--white { color: var(--color-white); border-bottom-color: var(--color-gold); }
.btn-text--white:hover { color: var(--color-gold); }

.btn-text--dark  { color: var(--color-black); }
.btn-text--dark:hover { color: var(--color-gold); border-bottom-color: var(--color-gold); }

.btn-text--gold  { color: var(--color-gold); }
.btn-text--gold:hover { color: var(--color-gold-dark); border-bottom-color: var(--color-gold-dark); }

/* Focus styles for accessibility */
.btn-primary:focus-visible,
.btn-dark:focus-visible,
.btn-gold:focus-visible,
.btn-text:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}


/* =====================================================
   7. KEYFRAME ANIMATIONS
   ===================================================== */

/* Ken Burns — slow zoom used on hero background images */
@keyframes kenBurns {
  from { transform: scale(1);    }
  to   { transform: scale(1.06); }
}

/* Hero content entrance — staggered per element */
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator pulse */
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1;    }
}

/* Fade in — simple opacity */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* =====================================================
   8. SCROLL REVEAL SYSTEM
   data-reveal attribute drives IntersectionObserver.
   JS adds class 'revealed' when element enters viewport.
   ===================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays — applied via attribute value */
[data-reveal="delay-1"] { transition-delay: 0.15s; }
[data-reveal="delay-2"] { transition-delay: 0.30s; }
[data-reveal="delay-3"] { transition-delay: 0.45s; }

/* Graceful fallback if JS disabled */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal].revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* =====================================================
   9. BODY PAGE LOAD FADE
   JS adds 'loaded' to <body> after 80ms on DOMContentLoaded.
   Prevents FOUC / flash on initial paint.
   ===================================================== */

/*
  body starts: opacity 0 (defined in section 3)
  body.loaded: opacity 1  (defined in section 3)

  In script.js, add:
    document.addEventListener('DOMContentLoaded', () => {
      setTimeout(() => document.body.classList.add('loaded'), 80);
    });
*/


/* =====================================================
   10. NAVIGATION
   Starts fully transparent over hero images.
   Transitions to --color-charcoal when scrollY > 80px.
   Full-screen overlay on mobile.
   ===================================================== */

/* --- Header wrapper --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
  background: var(--color-white);
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav.scrolled .nav__logo,
.nav.scrolled .nav__links a,
.nav.scrolled .nav__enquire {
  color: var(--color-black);
}

.nav.scrolled .nav__logo:hover,
.nav.scrolled .nav__links a:hover,
.nav.scrolled .nav__links a.active,
.nav.scrolled .nav__enquire:hover {
  color: var(--color-gold);
}

.nav.scrolled .nav__hamburger span {
  background: var(--color-black);
}

/* --- Logo --- */
.nav__logo {
  text-decoration: none;
  z-index: 1001;
  display: flex;
  align-items: center;
  margin-left: clamp(1.5rem, 16vw, 22rem);
}

.nav__logo img {
  height: clamp(50px, 7vw, 90px);
  width: auto;
  transition: transform 0.3s ease;
}

.nav__logo:hover img { 
  transform: scale(1.05); 
}

/* --- Desktop nav links --- */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  text-transform: none;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a:hover  { color: var(--color-gold); }
.nav__links a.active { color: var(--color-gold); }

/* --- Enquire link: gold bottom border --- */
.nav__enquire {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  text-transform: none;
  color: var(--color-white);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--color-gold);
  transition: color 0.3s ease;
}

.nav__enquire:hover  { color: var(--color-gold); }
.nav__enquire.active { color: var(--color-gold); }

/* --- Hamburger: hidden on desktop, visible on mobile --- */
.nav__hamburger {
  display: none;                /* Hidden above 768px */
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-white);
  transition: all 0.35s ease;
}

/* --- Full-screen overlay menu --- */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, 0.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav__overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Close button — top right */
.nav__overlay-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  color: var(--color-white);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.nav__overlay-close:hover { color: var(--color-gold); }

/* Overlay nav links: large italic Bodoni Moda */
.nav__overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav__overlay-links a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  display: block;
  margin: 0.8rem 0;
  text-align: center;
  transition: color 0.3s ease;
  line-height: 1.2;
}

.nav__overlay-links a:hover,
.nav__overlay-links a.active { color: var(--color-gold); }

/* Prevent scroll when overlay is open */
body.menu-open { overflow: hidden; }


/* =====================================================
   11. HERO SECTIONS
   Full-bleed 100vh images with Ken Burns zoom.
   Content fades in with staggered heroReveal animation.
   ===================================================== */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Use svh for mobile to account for browser chrome */
@supports (height: 100svh) {
  .hero        { height: 100svh; }
  .hero--inner { height: 70svh;  }
}

/* Variants */
.hero--bottom { align-items: flex-end; }
.hero--inner  { height: 70vh; }

/* Background image — Ken Burns zoom, NO loading="lazy" */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 18s ease-in-out infinite alternate;
}

/* Slideshow wrapper */
.hero__slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Crossfade Logic for Slideshow */
.hero__slideshow .slide {
  opacity: 0;
  /* 40s total (5s per slide * 8 slides) */
  animation: slideFade 40s infinite;
}

.hero__slideshow .slide:nth-child(1) { animation-delay: 0s; }
.hero__slideshow .slide:nth-child(2) { animation-delay: 5s; }
.hero__slideshow .slide:nth-child(3) { animation-delay: 10s; }
.hero__slideshow .slide:nth-child(4) { animation-delay: 15s; }
.hero__slideshow .slide:nth-child(5) { animation-delay: 20s; }
.hero__slideshow .slide:nth-child(6) { animation-delay: 25s; }
.hero__slideshow .slide:nth-child(7) { animation-delay: 30s; }
.hero__slideshow .slide:nth-child(8) { animation-delay: 35s; }

@keyframes slideFade {
  0%   { opacity: 0; transform: scale(1); }
  2.5% { opacity: 1; transform: scale(1.00625); }
  15%  { opacity: 1; transform: scale(1.0375); }
  17.5% { opacity: 0; transform: scale(1.04375); }
  100% { opacity: 0; transform: scale(1.04375); }
}
  2.5% { opacity: 1; transform: scale(1.00625); }
  10%  { opacity: 1; transform: scale(1.025); }
  12.5% { opacity: 0; transform: scale(1.03125); }
  100% { opacity: 0; transform: scale(1.03125); }
}
  4%   { opacity: 1; transform: scale(1.01); }
  16%  { opacity: 1; transform: scale(1.04); }
  20%  { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.1); }
}

/* Dark overlay for text legibility */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay-dark);
}

/* Content wrapper */
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: var(--gutter);
  max-width: 900px;
  text-align: center;
}

/* Left-aligned variant — for bottom-left hero text (LX style) */
.hero__content--left {
  text-align: left;
  max-width: 820px;
  width: 100%;
  padding: var(--gutter) var(--gutter) var(--space-xl);
  margin: 0;
}

/* Staggered entrance animations for hero elements */
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 1.6rem;
  animation: heroReveal 1.2s var(--ease-spring) 0.20s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem); /* Reduced from global 6.5rem max */
  font-style: normal;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 2.5rem; /* Increased to push subtext down */
  animation: heroReveal 1.2s var(--ease-spring) 0.45s both;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
}

.hero__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.8rem;
  max-width: 55ch;
  animation: heroReveal 1.2s var(--ease-spring) 0.65s both;
}

/* Center sub for centered heroes */
.hero__content .hero__sub { margin-left: auto; margin-right: auto; }

.hero__cta {
  animation: heroReveal 1.2s var(--ease-spring) 0.85s both;
}

/* Animated scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: heroReveal 1.2s var(--ease-spring) 1.2s both;
}

.hero__scroll-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--color-gold);
  animation: scrollPulse 2s ease-in-out infinite;
}


/* =====================================================
   12. CARDS — Portrait Image Cards (3:4 ratio)
   Image fills card, gradient overlay, text at bottom.
   Hover: image zooms 6%.
   ===================================================== */

.card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  display: block;
}

/* Landscape variant for project row 2 */
.card--landscape { aspect-ratio: 4 / 3; }

/* Background image */
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.card:hover .card__img,
.card:focus-within .card__img {
  transform: scale(1.06);
}

/* 8-Image Slideshow */
.slideshow-8 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  border-radius: inherit; /* Useful for cards */
}

.slideshow-8__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slideFade8 40s infinite;
}

.slideshow-8__img:nth-child(1) { animation-delay: 0s; }
.slideshow-8__img:nth-child(2) { animation-delay: 5s; }
.slideshow-8__img:nth-child(3) { animation-delay: 10s; }
.slideshow-8__img:nth-child(4) { animation-delay: 15s; }
.slideshow-8__img:nth-child(5) { animation-delay: 20s; }
.slideshow-8__img:nth-child(6) { animation-delay: 25s; }
.slideshow-8__img:nth-child(7) { animation-delay: 30s; }
.slideshow-8__img:nth-child(8) { animation-delay: 35s; }

@keyframes slideFade8 {
  0%    { opacity: 0; transform: scale(1); }
  2.5%  { opacity: 1; transform: scale(1.02); }
  12.5% { opacity: 1; transform: scale(1.04); }
  15.0% { opacity: 0; transform: scale(1.05); }
  100%  { opacity: 0; transform: scale(1.1); }
}

/* 21-Item Slideshow */
.slideshow-21 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  border-radius: inherit;
}

.slideshow-21__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slideFade21 105s infinite;
}

.slideshow-21__img:nth-child(1) { animation-delay: 0s; }
.slideshow-21__img:nth-child(2) { animation-delay: 5s; }
.slideshow-21__img:nth-child(3) { animation-delay: 10s; }
.slideshow-21__img:nth-child(4) { animation-delay: 15s; }
.slideshow-21__img:nth-child(5) { animation-delay: 20s; }
.slideshow-21__img:nth-child(6) { animation-delay: 25s; }
.slideshow-21__img:nth-child(7) { animation-delay: 30s; }
.slideshow-21__img:nth-child(8) { animation-delay: 35s; }
.slideshow-21__img:nth-child(9) { animation-delay: 40s; }
.slideshow-21__img:nth-child(10) { animation-delay: 45s; }
.slideshow-21__img:nth-child(11) { animation-delay: 50s; }
.slideshow-21__img:nth-child(12) { animation-delay: 55s; }
.slideshow-21__img:nth-child(13) { animation-delay: 60s; }
.slideshow-21__img:nth-child(14) { animation-delay: 65s; }
.slideshow-21__img:nth-child(15) { animation-delay: 70s; }
.slideshow-21__img:nth-child(16) { animation-delay: 75s; }
.slideshow-21__img:nth-child(17) { animation-delay: 80s; }
.slideshow-21__img:nth-child(18) { animation-delay: 85s; }
.slideshow-21__img:nth-child(19) { animation-delay: 90s; }
.slideshow-21__img:nth-child(20) { animation-delay: 95s; }
.slideshow-21__img:nth-child(21) { animation-delay: 100s; }

@keyframes slideFade21 {
  0%    { opacity: 0; transform: scale(1); }
  1%    { opacity: 1; transform: scale(1.01); }
  4.76% { opacity: 1; transform: scale(1.047); }
  5.76% { opacity: 0; transform: scale(1.057); }
  100%  { opacity: 0; transform: scale(1.1); }
}

/* 13-Item Slideshow */
.slideshow-13 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.slideshow-13__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slideFade13 65s infinite;
}

.slideshow-13__img:nth-child(1)  { animation-delay: 0s; }
.slideshow-13__img:nth-child(2)  { animation-delay: 5s; }
.slideshow-13__img:nth-child(3)  { animation-delay: 10s; }
.slideshow-13__img:nth-child(4)  { animation-delay: 15s; }
.slideshow-13__img:nth-child(5)  { animation-delay: 20s; }
.slideshow-13__img:nth-child(6)  { animation-delay: 25s; }
.slideshow-13__img:nth-child(7)  { animation-delay: 30s; }
.slideshow-13__img:nth-child(8)  { animation-delay: 35s; }
.slideshow-13__img:nth-child(9)  { animation-delay: 40s; }
.slideshow-13__img:nth-child(10) { animation-delay: 45s; }
.slideshow-13__img:nth-child(11) { animation-delay: 50s; }
.slideshow-13__img:nth-child(12) { animation-delay: 55s; }
.slideshow-13__img:nth-child(13) { animation-delay: 60s; }

@keyframes slideFade13 {
  0%    { opacity: 0; transform: scale(1); }
  1%    { opacity: 1; transform: scale(1.01); }
  7.69% { opacity: 1; transform: scale(1.04); }
  8.69% { opacity: 0; transform: scale(1.05); }
  100%  { opacity: 0; transform: scale(1.1); }
}

/* 10-Item Slideshow */
.slideshow-10 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.slideshow-10__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slideFade10 50s infinite;
}

.slideshow-10__img:nth-child(1)  { animation-delay: 0s; }
.slideshow-10__img:nth-child(2)  { animation-delay: 5s; }
.slideshow-10__img:nth-child(3)  { animation-delay: 10s; }
.slideshow-10__img:nth-child(4)  { animation-delay: 15s; }
.slideshow-10__img:nth-child(5)  { animation-delay: 20s; }
.slideshow-10__img:nth-child(6)  { animation-delay: 25s; }
.slideshow-10__img:nth-child(7)  { animation-delay: 30s; }
.slideshow-10__img:nth-child(8)  { animation-delay: 35s; }
.slideshow-10__img:nth-child(9)  { animation-delay: 40s; }
.slideshow-10__img:nth-child(10) { animation-delay: 45s; }

@keyframes slideFade10 {
  0%   { opacity: 0; transform: scale(1); }
  1%   { opacity: 1; transform: scale(1.01); }
  10%  { opacity: 1; transform: scale(1.04); }
  11%  { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.1); }
}

/* Gradient overlay — light at top, heavy at bottom */
.card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.10) 55%,
    transparent 100%
  );

  pointer-events: none;}

/* Text block at bottom */
.card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: var(--color-white);

  pointer-events: none;}

.card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.card__sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

/* "Explore →" appears on hover */
.card__explore {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.card:hover .card__explore,
.card:focus-within .card__explore {
  opacity: 1;
  transform: translateY(0);
}


/* =====================================================
   13. SPLIT SECTIONS — 50/50 Magazine Layout
   Image fills one half completely. Content on other.
   ===================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 35vh;
}

/* Image side — fills column with object-fit: cover */
.split__image {
  overflow: hidden;
  position: relative;
}

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

.split__image:hover img { transform: scale(1.03); }

/* Text content side */
.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-cream);
}

.split__content--white { background: var(--color-white); }
.split__content--sand  { background: var(--color-sand);  }

.split__content h2 { margin-bottom: 1.5rem; }
.split__content  p { color: var(--color-text-dim); margin-bottom: 2rem; }


/* =====================================================
   14. FULL-BLEED SECTIONS
   Background image fills section. Text overlaid.
   ===================================================== */

.fullbleed {
  position: relative;
  overflow: hidden;
}

/* Height variants */
.fullbleed--100 { height: 100vh; display: flex; align-items: center; }
.fullbleed--80  { height: 80vh;  display: flex; align-items: center; }
.fullbleed--60  { height: 60vh;  display: flex; align-items: center; justify-content: center; text-align: center; }
.fullbleed--50  { height: 50vh;  display: flex; align-items: center; }

/* Background image */
.fullbleed__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay layers */
.fullbleed__overlay        { position: absolute; inset: 0; background: var(--color-overlay-dark);  }
.fullbleed__overlay--heavy { background: var(--color-overlay-heavy); }
.fullbleed__overlay--light { background: var(--color-overlay-light); }

/* Constrained inner wrapper with z-index above overlay */
.fullbleed__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-xl) var(--gutter);
  display: flex;
  align-items: center;
  height: 100%;
}

.fullbleed__inner--center {
  justify-content: center;
  text-align: center;
}

/* Text block — constrained width, positioned left or right */
.fullbleed__text {
  color: var(--color-white);
  max-width: 500px;
}

.fullbleed__text--right  { margin-left: auto; }
.fullbleed__text--center { margin: 0 auto; text-align: center; max-width: 760px; }

.fullbleed__text h2 {
  color: var(--color-white);
  font-style: italic;
  margin-bottom: 1.4rem;
  line-height: 1.15;
}

.fullbleed__text p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 50ch;
}

/* Large editorial pull-quote style */
.fullbleed__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.35;
  max-width: 820px;
  margin: 0 auto;
}


/* =====================================================
   15. HOMEPAGE SECTIONS
   ===================================================== */

/* Centered editorial intro statement */
.intro {
  background: var(--color-cream);
  padding: var(--space-md) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro__rule {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--color-border);
  margin: 0 auto var(--space-md);
}

.intro__rule--bottom { margin: var(--space-md) auto 0; }

.intro__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  max-width: 720px;
  line-height: 1.65;
  color: var(--color-black);
}

/* 4-up portrait card grid */
.services-preview { background: var(--color-cream); padding: var(--space-md) var(--gutter); }
.services-preview__header { margin-bottom: var(--space-md); }

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


/* =====================================================
   16. ABOUT PAGE
   ===================================================== */

/* Story intro — centered, tall */
.story-intro {
  background: var(--color-cream);
  padding: var(--space-xl) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 35vh;
  justify-content: center;
}

.story-intro__rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-border);
  margin: 0 auto var(--space-md);
}

.story-intro__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 400;
  max-width: 700px;
  line-height: 1.65;
  color: var(--color-black);
}

/* Founder role tag */
.founder-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-top: var(--space-md);
}

/* Mission / Vision text on full-bleed */
.mission-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
  max-width: 800px;
  margin: var(--space-md) auto 0;
}

.vision-divider {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-border);
  margin: var(--space-md) auto;
}

.vision-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Values grid — typography only, no icons */
.values { background: var(--color-cream); padding: var(--space-xl) var(--gutter); }
.values__header { margin-bottom: var(--space-lg); }

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md) var(--space-lg);
}

.value-item {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.value-item__name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.value-item__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-dim);
  max-width: none;
}


/* =====================================================
   17. SERVICES PAGE
   ===================================================== */

.service-intro {
  background: var(--color-cream);
  padding: var(--space-sm) var(--gutter);
  min-height: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-intro__text {
  max-width: 640px;
  color: var(--color-text-dim);
  font-size: 1.05rem;
  max-width: 60ch;
}

/* Service Navigation Pills */
.service-pills {
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.service-pill {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  padding: 0.6rem 1.4rem;
  display: inline-flex;
  color: var(--color-text-dim);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.service-pill:hover,
.service-pill:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Dash-style bullet list: — Item */
.service-bullets { list-style: none; margin-bottom: 2rem; }

.service-bullets li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-dim);
  max-width: none;
}

.service-bullets li::before {
  content: '— ';
  color: var(--color-gold);
  font-weight: 400;
}

/* Light variant — white text on dark full-bleed */
.service-bullets--light li {
  color: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(184, 150, 90, 0.20);
}

/* FAQ Accordion */
.faq-section { background: var(--color-cream); padding: var(--space-md) var(--gutter); }
.faq-section__inner { max-width: 760px; margin: 0 auto; }
.faq-section__header { margin-bottom: var(--space-md); }
.faq__list { border-top: 1px solid var(--color-border); }
.faq__item { 
  border-bottom: 1px solid var(--color-border); 
  border-left: 2px solid transparent;
  transition: border-left-color 0.3s ease;
  padding-left: 1rem;
}
.faq__item.is-open { border-left-color: var(--color-gold); }

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 1.4rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-black);
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
  min-height: 44px;
}

.faq__icon {
  color: var(--color-gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }

.faq__answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.faq__answer.open { max-height: 300px; }

.faq__answer p {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-dim);
  line-height: 1.8;
  max-width: none;
}

/* Enquiry CTA */
.enquiry-cta {
  background: var(--color-cream);
  padding: var(--space-sm) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.enquiry-cta h2 { margin-bottom: 1rem; }
.enquiry-cta  p { color: var(--color-text-dim); max-width: 520px; margin: 0 auto var(--space-md); }


/* =====================================================
   18. PROJECTS PAGE
   ===================================================== */

.filter-bar {
  background: var(--color-cream);
  padding: 1.8rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 2.5rem;
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar { display: none; }

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(12, 12, 12, 0.40);
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.filter-btn.active,
.filter-btn:hover { color: var(--color-black); border-bottom-color: var(--color-gold); }

/* Editorial Grid — 12 column layout */
.projects-grid {
  background: var(--color-cream);
  padding: var(--space-xl) var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}

.project-card-item {
  position: relative;
  overflow: hidden;
  display: block;
}

/* Row 1 cards (tall 3:4) */
.project-card-item--tall-left {
  grid-column: 1 / span 7;
  aspect-ratio: 3 / 4;
}

.project-card-item--tall-right {
  grid-column: 8 / span 5;
  aspect-ratio: 3 / 4;
}

/* Row 2 cards (landscape 4:3) */
.project-card-item--third {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-card-item--tall-left,
  .project-card-item--tall-right,
  .project-card-item--third {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }
}

/* ── Project status badge ─────────────────────────────────── */
.proj-status {
  display: inline-block;
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.proj-status--done {
  background: rgba(201, 148, 26, 0.25);
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

.proj-status--ongoing {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Testimonials — italic editorial, no cards or stars */
.testimonials-section { background: var(--color-cream); border-top: 1px solid var(--color-border); }
.testimonials { max-width: 860px; margin: 0 auto; padding: var(--space-xl) var(--gutter); }
.testimonials__header { margin-bottom: var(--space-lg); }

.testimonial-item { padding: var(--space-md) 0; }
.testimonial-item:not(:last-child) { border-bottom: 1px solid var(--color-border); }

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-black);
  margin-bottom: 1.4rem;
  max-width: none;
}

.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }

.testimonial-attr {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}


/* =====================================================
   19. CONTACT PAGE
   ===================================================== */

.contact-split {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 80vh;
}

.contact-info {
  background: var(--color-cream);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info__item            { margin-bottom: var(--space-md); }
.contact-info__item:last-child { margin-bottom: 0; }

.contact-info__lbl {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-info__val {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-black);
}

.contact-form-wrap {
  background: var(--color-white);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrap h2 { margin-bottom: var(--space-md); }

/* Form fields — bottom-border lines only, no box borders */
.form-group { margin-bottom: 2rem; }

.form-group label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(12, 12, 12, 0.40);
  display: block;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-black);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(12, 12, 12, 0.20);
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  min-height: 44px;
}

.form-group select    { cursor: pointer; }
.form-group textarea  { resize: none; height: 110px; line-height: 1.6; min-height: unset; }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-bottom-color: var(--color-gold); }

/* Map embed */
.map-section        { height: 450px; overflow: hidden; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(25%) contrast(0.92); }

/* WhatsApp section CTA */
.wa-cta {
  background: var(--color-cream);
  padding: var(--space-lg) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.wa-cta h3 { margin-bottom: 0.8rem; }
.wa-cta  p { color: var(--color-text-dim); max-width: 480px; margin: 0 auto var(--space-md); }


/* =====================================================
   20. FOOTER
   ===================================================== */

.footer {
  background: var(--color-white);
  color: #000000;
  padding: var(--space-xl) var(--gutter) var(--space-md);
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.footer__logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: #000000;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  display: block;
}

.footer__logo img {
  height: clamp(80px, 12vw, 140px);
  width: auto;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 0;
}

/* 3-column info grid */
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 1.5rem;
  display: block;
}

.footer__col p,
.footer__col address {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.95;
  font-style: normal;
  max-width: none;
}

.footer__col a {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
  color: #000000;
  line-height: 2.3;
  display: block;
  transition: color 0.3s ease;
}

.footer__col a:hover {
  color: var(--color-gold);
}

.footer__phone {
  margin-top: 1rem;
}

/* Gold horizontal rule divider */
.footer__divider {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-border);
  border: none;
  margin-bottom: var(--space-md);
}

/* Bottom strip — copyright + social */
.footer__bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem; /* Extra padding so WhatsApp float doesn't overlap text on small screens */
}

.footer__copyright {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
}

.footer__social {
  display: flex;
  gap: 1.8rem;
  margin-top: 1.5rem;
}

.footer__social a {
  color: #000000;
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  transition: color 0.3s ease;
}

.footer__social a:hover {
  color: var(--color-gold);
}


/* =====================================================
   21. FLOATING ELEMENTS
   ===================================================== */

/* WhatsApp circular button — fixed bottom-right */
.whatsapp-float {
  position: fixed;
  bottom: 2.5rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  color: var(--color-white);
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1s ease 1.5s both;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

/* Scroll-to-top button — appears after 300px scroll */
.scroll-top {
  position: fixed;
  bottom: 2.5rem;
  right: 6.5rem;
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  color: var(--color-gold);
  font-size: 0.85rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease,
              transform 0.35s ease,
              background 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}


/* =====================================================
   22. RESPONSIVE BREAKPOINTS — Mobile First
   ===================================================== */

/* --- Tablet: 1024px --- */
@media (max-width: 1024px) {
  .services-preview__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid            { grid-template-columns: repeat(2, 1fr); }
  .footer__grid            { grid-template-columns: repeat(2, 1fr); }
  .split__content          { padding: var(--space-xl) var(--space-md); }
}

/* --- Tablet: 768px --- */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop links + enquire */
  .nav__links     { display: none; }
  .nav__enquire   { display: none; }
  .nav__hamburger { display: flex; }

  /* Stacks */
  .split                     { grid-template-columns: 1fr; min-height: unset; }
  .split__image              { aspect-ratio: 16 / 9; height: auto; }
  .split__image img          { height: 100%; }
  .split__content            { padding: var(--space-lg) var(--gutter); }

  .contact-split             { grid-template-columns: 1fr; min-height: unset; }
  .contact-info              { padding: var(--space-lg) var(--gutter); }
  .contact-form-wrap         { padding: var(--space-lg) var(--gutter); }

  /* Values grid - 2 cols on tablet */
  .values__grid              { grid-template-columns: repeat(2, 1fr); }

  /* Footer - 1 col on tablet */
  .footer__grid              { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer__bottom            { flex-direction: column; text-align: center; }

  /* Full-bleed text: center on mobile */
  .fullbleed__text--right    { margin-left: 0; }
  .fullbleed__inner          { justify-content: center; }
  .fullbleed__text           { text-align: center; max-width: 100%; }
  .fullbleed__text p         { max-width: none; }

  /* Hide service bullets on mobile full-bleed sections */
  .fullbleed .service-bullets { display: none; }
}

/* --- Mobile: 640px --- */
@media (max-width: 640px) {
  .services-grid             { grid-template-columns: 1fr; }
  .services-preview__grid    { grid-template-columns: 1fr; }
  
  /* Project grid - stack to 1 column and override spans */
  .projects-grid             { display: flex; flex-direction: column; gap: 1.2rem; padding-bottom: 1.2rem; }
  .project-card-item         { width: 100%; }
  .projects-row2             { grid-template-columns: 1fr; }
  
  .hero__sub {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .btn-primary,
  .btn-dark,
  .btn-gold  { padding: 0.9rem 2rem; }

  .whatsapp-float { bottom: 2rem; right: 1.5rem; width: 46px; height: 46px; font-size: 1.2rem; }
  .scroll-top     { bottom: 2rem; right: 5rem; width: 46px; height: 46px; }

  .contact-info   { padding: var(--space-md) var(--gutter); }
  .contact-form-wrap { padding: var(--space-md) var(--gutter); }
}

/* --- Small Mobile: 480px --- */
@media (max-width: 480px) {
  .values__grid { grid-template-columns: 1fr; }
}

/* --- Very small: 400px --- */
@media (max-width: 400px) {
  :root { --gutter: 1.25rem; }
}

/* --- Reduced motion accessibility --- */
@media (prefers-reduced-motion: reduce) {
  .hero__bg                    { animation: none !important; }
  .hero__scroll-line           { animation: none !important; }
  .card__img                   { transition: none !important; }
  .split__image img            { transition: none !important; }
  .whatsapp-float,
  .scroll-top,
  .nav                         { transition: none !important; }
  *                            { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* REAL ESTATE FULL SLIDESHOW */
.slideshow-realestate { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.slideshow-realestate .slideshow-realestate__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; animation: slideFadeRealEstate 305s infinite; }
.slideshow-realestate .slideshow-realestate__img:nth-child(1) { animation-delay: 0s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(2) { animation-delay: 5s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(3) { animation-delay: 10s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(4) { animation-delay: 15s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(5) { animation-delay: 20s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(6) { animation-delay: 25s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(7) { animation-delay: 30s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(8) { animation-delay: 35s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(9) { animation-delay: 40s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(10) { animation-delay: 45s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(11) { animation-delay: 50s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(12) { animation-delay: 55s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(13) { animation-delay: 60s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(14) { animation-delay: 65s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(15) { animation-delay: 70s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(16) { animation-delay: 75s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(17) { animation-delay: 80s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(18) { animation-delay: 85s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(19) { animation-delay: 90s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(20) { animation-delay: 95s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(21) { animation-delay: 100s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(22) { animation-delay: 105s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(23) { animation-delay: 110s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(24) { animation-delay: 115s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(25) { animation-delay: 120s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(26) { animation-delay: 125s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(27) { animation-delay: 130s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(28) { animation-delay: 135s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(29) { animation-delay: 140s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(30) { animation-delay: 145s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(31) { animation-delay: 150s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(32) { animation-delay: 155s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(33) { animation-delay: 160s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(34) { animation-delay: 165s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(35) { animation-delay: 170s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(36) { animation-delay: 175s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(37) { animation-delay: 180s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(38) { animation-delay: 185s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(39) { animation-delay: 190s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(40) { animation-delay: 195s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(41) { animation-delay: 200s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(42) { animation-delay: 205s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(43) { animation-delay: 210s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(44) { animation-delay: 215s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(45) { animation-delay: 220s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(46) { animation-delay: 225s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(47) { animation-delay: 230s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(48) { animation-delay: 235s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(49) { animation-delay: 240s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(50) { animation-delay: 245s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(51) { animation-delay: 250s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(52) { animation-delay: 255s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(53) { animation-delay: 260s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(54) { animation-delay: 265s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(55) { animation-delay: 270s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(56) { animation-delay: 275s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(57) { animation-delay: 280s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(58) { animation-delay: 285s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(59) { animation-delay: 290s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(60) { animation-delay: 295s; }
.slideshow-realestate .slideshow-realestate__img:nth-child(61) { animation-delay: 300s; }
@keyframes slideFadeRealEstate {
  0%   { opacity: 0; transform: scale(1); }
  2%   { opacity: 1; transform: scale(1.01); }
  6.56%  { opacity: 1; transform: scale(1.04); }
  8.2%  { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.1); }
}



/*  Project card swipe gallery  */
.slideshow-proj {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
  z-index: 1;
}

.slideshow-proj::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.slideshow-proj__img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  scroll-snap-align: center;
  opacity: 1;
  pointer-events: auto;
}


/* Custom Hero Explore Button */
.btn-hero-explore {
  background: #5dc7d1 !important;
  color: var(--color-primary) !important;
  border: none !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.08em !important;
  padding: 1.1rem 3rem !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(93, 199, 209, 0.4) !important;
  transition: all 0.3s ease !important;
}

.btn-hero-explore:hover,
.btn-hero-explore:focus-visible {
  background: #5ca47b !important;
  color: var(--color-white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(92, 164, 123, 0.5) !important;
}



  2.5% { opacity: 1; }
  10% { opacity: 1; }
  12.5% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.05); }
}

/* Glassmorphism text box for hero text readability */
.hero__text-box {
  background: rgba(10, 22, 40, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3.5rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  max-width: 850px;
  margin: 0 auto;
}
