/* ============================================================
   MODNEST INTERIORS — DESIGN SYSTEM & GLOBAL STYLES
   Premium beige / warm neutral aesthetic
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Chilanka&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --bg: #FAF8F5;
  --cream: #F3EDE3;
  --beige: #E8DDD0;
  --beige-mid: #D4C4B0;
  --taupe: #9E856A;
  --brown: #6B4F35;
  --gold: #B8965A;
  --charcoal: #2C2A28;
  --dark: #1A1816;
  --text-body: #4A4340;
  --text-muted: #7A7068;
  --white: #FFFFFF;
  --border: rgba(180, 160, 130, 0.25);
  --border-light: rgba(180, 160, 130, 0.12);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Chilanka', system-ui, -apple-system, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-soft: 0 4px 30px rgba(44, 42, 40, 0.06);
  --shadow-card: 0 2px 20px rgba(44, 42, 40, 0.08);
  --shadow-hover: 0 8px 40px rgba(44, 42, 40, 0.14);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;

  --container: 1200px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --section-py: clamp(4rem, 8vw, 8rem);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-size: 18px;
  font-family: var(--sans);
  background-color: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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

button {
  font-family: var(--sans);
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: var(--sans);
  font-size: 1rem;
}

ul {
  list-style: none;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

.section-py {
  padding-block: var(--section-py);
}

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

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

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

/* ---- Typography ---- */
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

/* Base style for all descriptions and paragraphs */
p,
.section-subtitle,
.stat-desc,
.service-desc,
.why-slide-desc,
.sector-desc,
.page-hero-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  /* Regular */
  font-size: 1.15rem;
  /* Standard readable size */
}

.section-label {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 55ch;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border: 1.5px solid var(--charcoal);
}

.btn-primary:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(44, 42, 40, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}

.btn-gold:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(184, 150, 90, 0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: 1.5px solid #25D366;
}

.btn-whatsapp:hover {
  background: #1DB954;
  border-color: #1DB954;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 14px;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 14px;
}

/* ---- Divider ---- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.divider-center {
  margin-inline: auto;
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

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

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

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

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  box-shadow: 0 1px 20px rgba(44, 42, 40, 0.08);
  padding: 1 rem 0;
}

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

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 85px;
  width: auto;
  /* Ensure logo retains natural proportions and looks premium */
  object-fit: contain;
  object-position: left center;
}

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

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}



.btn-cta {
  padding: 0.65rem 1.5rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--charcoal);
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  transition: var(--transition);
}

.btn-cta:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
  transform-origin: center;
}

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

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

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

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav .nav-link {
  font-size: 1.75rem;
  font-family: var(--serif);
  letter-spacing: 0.05em;
  color: var(--charcoal) !important;
  font-weight: 400;
}

.mobile-nav .nav-link::after {
  display: none;
}

.mobile-nav .btn-cta {
  font-size: 0.85rem;
  padding: 0.9rem 2.5rem;
  color: var(--charcoal) !important;
  border-color: var(--charcoal) !important;
}

.mobile-logo {
  position: absolute;
  top: 1.5rem;
  left: var(--gutter);
}

.mobile-logo img {
  height: 44px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  visibility: hidden;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
}

.hero-slide.active img {
  animation: heroScale 8s ease forwards;
}

@keyframes heroScale {
  to {
    transform: scale(1);
  }
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.8rem;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.hero-dots .dot.active {
  background-color: var(--white);
  transform: scale(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(20, 18, 16, 0.72) 0%,
      rgba(20, 18, 16, 0.48) 45%,
      rgba(20, 18, 16, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-label {
  font-family: var(--sans);
  font-style: normal;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s 0.2s both;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.9s 0.4s both;
}

.hero-title em {
  font-style: italic;
  color: rgba(232, 221, 208, 0.9);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s 0.6s both;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.8s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.8);
  animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(300%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section {
  padding-block: var(--section-py);
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.intro-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 140px;
  height: 140px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.intro-image-badge .badge-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.intro-image-badge .badge-text {
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 80px;
  margin-top: 0.25rem;
}

.intro-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
  padding: 1.25rem 0;
  margin-bottom: 4rem;
  position: relative;
  display: flex;
}

.intro-marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 25s linear infinite;
  align-items: center;
}

.intro-marquee span {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 1.5rem;
}

.intro-marquee .dot {
  color: var(--gold);
  font-size: 1.5rem;
  padding: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding-block: 5rem;
  background: var(--charcoal);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-item {
  padding: 3.5rem 2.5rem;
  text-align: center;
  background: var(--charcoal);
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-suffix {
  color: var(--gold);
}

.stat-label {
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.stat-desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 200px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ============================================================
   SERVICES PREVIEW
   ============================================================ */
.services-preview {
  padding-block: var(--section-py);
  background: var(--bg);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.service-card {
  background: var(--bg);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.service-card:hover {
  background: var(--white);
}

.service-card:hover::before {
  width: 100%;
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  color: var(--gold);
  opacity: 0.85;
}

.service-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--text-muted);
  line-height: 1.7;
}

.service-num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--beige);
  line-height: 1;
  user-select: none;
  transition: color var(--transition);
}

.service-card:hover .service-num {
  color: var(--beige-mid);
}

/* ============================================================
   SECTORS (Spaces We Transform)
   ============================================================ */
.sectors-section {
  padding-block: var(--section-py);
  background: var(--cream);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.sector-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 3/4;
  cursor: pointer;
}

.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-card:hover img {
  transform: scale(1.06);
}

.sector-overlay {
  position: absolute;
  inset: 0;
  /* Stronger gradient in the lower half so titles are always readable */
  background: linear-gradient(to top,
      rgba(20, 18, 16, 0.92) 0%,
      rgba(20, 18, 16, 0.60) 35%,
      rgba(20, 18, 16, 0.15) 65%,
      rgba(20, 18, 16, 0.05) 100%);
  transition: var(--transition);
}

.sector-card:hover .sector-overlay {
  background: linear-gradient(to top,
      rgba(20, 18, 16, 0.96) 0%,
      rgba(20, 18, 16, 0.70) 40%,
      rgba(20, 18, 16, 0.20) 70%,
      rgba(20, 18, 16, 0.08) 100%);
}

.sector-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.75rem;
  color: var(--white);
}

.sector-tag {
  font-size: 1.125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
  display: block;
}

.sector-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #fff;
  /* Subtle warm shadow ensures readability over all image tones */
  text-shadow: 0 1px 8px rgba(10, 8, 6, 0.7), 0 2px 20px rgba(10, 8, 6, 0.4);
}

.sector-desc {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.sector-card:hover .sector-desc {
  max-height: 80px;
  opacity: 1;
}

/* Explore Button */
.explore-btn {
  position: absolute;
  bottom: 2rem;
  right: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 5;
}

.explore-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(3px);
}

.explore-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  background: var(--gold);
  color: var(--dark);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Little triangle pointer for the tooltip (pointing UP) */
.explore-btn::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent var(--gold) transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10;
}

.explore-btn:hover::before,
.explore-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.explore-btn svg {
  transition: transform 0.3s ease;
}

/* Residential Works Panel */
.res-works-panel {
  grid-column: 1 / -1;
  background: var(--dark);
  border-radius: var(--radius-sm);
  margin-top: 2rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.res-works-panel.is-open {
  max-height: 2000px;
  opacity: 1;
  padding: 3rem;
}

.res-works-panel-inner {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.2s;
}

.res-works-panel.is-open .res-works-panel-inner {
  opacity: 1;
  transform: translateY(0);
}

.res-works-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
}

.res-works-label {
  color: var(--gold);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.res-works-title {
  color: #fff;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
}

.res-works-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.res-works-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: rotate(90deg);
}

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

.res-work-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(0.3s + var(--delay));
}

.res-works-panel.is-open .res-work-item {
  opacity: 1;
  transform: translateY(0);
}

.res-work-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.res-work-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.res-work-img-wrap:hover img {
  transform: scale(1.08);
}

.res-work-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.res-work-img-wrap:hover .res-work-img-overlay {
  opacity: 1;
}

.res-work-tag {
  color: #fff;
  font-size: 1.25rem;
  font-family: var(--serif);
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.res-work-img-wrap:hover .res-work-tag {
  transform: translateY(0);
}

/* ============================================================
   WHY CHOOSE US — SLIDING CARDS
   ============================================================ */
.why-section {
  padding-block: var(--section-py);
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ---- Slide Card Wrapper ---- */
.why-slide-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: default;
  background: var(--charcoal);
  border: 1px solid var(--border-light);
}

/* ---- Front face ---- */
.why-slide-front {
  position: absolute;
  inset: 0;
  padding: 2.25rem 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.55s ease;
  z-index: 1;
  background: var(--charcoal);
}

.why-slide-card:hover .why-slide-front {
  transform: translateY(-100%);
  opacity: 0;
}

/* ---- Decorative number (top-right watermark) ---- */
.why-slide-num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  letter-spacing: -0.04em;
  user-select: none;
  transition: color 0.35s ease;
}

.why-slide-card:hover .why-slide-num {
  color: rgba(255, 255, 255, 0.08);
}

/* ---- Icon ---- */
.why-slide-icon {
  width: 50px;
  height: 50px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---- Title ---- */
.why-slide-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.5rem;
  position: relative;
  padding-top: 1.25rem;
}

.why-slide-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

/* ---- Cue hint ---- */
.why-slide-cue {
  font-family: var(--sans);
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: opacity 0.3s ease;
}

/* ---- Back panel (slides up from bottom) ---- */
.why-slide-back {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--brown));
  padding: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  overflow: hidden;
}

.why-slide-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: 0;
}

.why-slide-watermark svg {
  width: 100%;
  height: 100%;
}

.why-slide-card:hover .why-slide-back {
  transform: translateY(0);
}

/* ---- Description on back panel ---- */
.why-slide-desc {
  color: var(--white);
  line-height: 1.8;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ---- Footer ---- */
.why-footer {
  margin-top: 3.5rem;
  padding: 2.5rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.why-footer p {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.8;
}

.why-footer p+p {
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--charcoal);
  font-style: italic;
}

/* ============================================================
   HOME CTA SECTION
   ============================================================ */
.home-cta {
  padding-block: 7rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.home-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 150, 90, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.home-cta .section-title {
  color: var(--white);
  max-width: 18ch;
  margin-inline: auto;
}

.home-cta .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin-inline: auto;
}

.home-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  font-family: 'Lato', sans-serif;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo-footer {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  background-color: #f9f6f2;
  border: 2px solid rgba(197, 160, 89, 0.45);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: block;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.footer-brand .logo-footer:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.25), 0 0 0 1px rgba(197, 160, 89, 0.3);
}

.footer-brand p {
  line-height: 1.75;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.55);
}

.footer-heading {
  font-family: 'Lato', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-links li+li {
  margin-top: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
}

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

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

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

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 150, 90, 0.1);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: 'Lato', sans-serif;
  font-style: normal;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   FLOATING CONNECT BUTTON
   ============================================================ */
.fab-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.fab-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.fab-container.active .fab-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.fab-option {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  color: var(--white);
}

.fab-option svg {
  width: 24px;
  height: 24px;
}

.fab-option.whatsapp {
  background: #25D366;
}

.fab-option.whatsapp:hover {
  background: #1DB954;
  transform: scale(1.1);
  color: var(--white);
}

.fab-option.instagram {
  background: #E1306C;
}

.fab-option.instagram:hover {
  background: #C13584;
  transform: scale(1.1);
  color: var(--white);
}

.fab-option.contact {
  background: var(--gold);
}

.fab-option.contact:hover {
  background: var(--gold-hover);
  transform: scale(1.1);
  color: var(--white);
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(184, 150, 90, 0.6);
  }

  70% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 0 15px rgba(184, 150, 90, 0);
  }

  100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(184, 150, 90, 0);
  }
}

.fab-main {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--taupe));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  color: var(--white);
  border: none;
  cursor: pointer;
  position: relative;
  animation: pulse-gold 2.5s infinite;
}

.fab-main:hover,
.fab-container.active .fab-main {
  background: linear-gradient(135deg, var(--taupe), var(--brown));
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
  animation: none;
}

.fab-main svg {
  width: 28px;
  height: 28px;
  position: absolute;
  transition: all 0.3s ease;
}

.fab-main svg.icon-connect {
  opacity: 1;
  transform: rotate(0);
}

.fab-main svg.icon-close {
  opacity: 0;
  transform: rotate(-90deg);
}

.fab-container.active .fab-main svg.icon-connect {
  opacity: 0;
  transform: rotate(90deg);
}

.fab-container.active .fab-main svg.icon-close {
  opacity: 1;
  transform: rotate(0);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.page-hero-label {
  font-size: 1.125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
}

.page-hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 55ch;
  margin-top: 1rem;
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  padding-block: var(--section-py);
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-story p {
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.journey-image-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

.journey-img-wrap {
  width: 90%;
  height: 240px;
  border: 8px solid var(--white);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  overflow: hidden;
  animation: float-juggle 5s ease-in-out infinite;
}

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

.journey-img-wrap:nth-child(1) {
  margin-right: auto;
  animation-delay: 0s;
}

.journey-img-wrap:nth-child(2) {
  margin-left: auto;
  animation-delay: -1.6s;
}

.journey-img-wrap:nth-child(3) {
  margin-right: auto;
  animation-delay: -3.2s;
}

@keyframes float-juggle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.about-image-caption {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  letter-spacing: 0.06em;
  font-style: italic;
}

/* Mission & Vision */
.mission-vision {
  padding-block: var(--section-py);
  background: var(--cream);
}

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

.mv-card {
  padding: 3rem;
  border-radius: var(--radius-sm);
}

.mv-card--mission {
  background: var(--charcoal);
}

.mv-card--vision {
  background: var(--white);
  border: 1px solid var(--border);
}

.mv-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mv-card--mission .mv-icon {
  background: rgba(184, 150, 90, 0.15);
  color: var(--gold);
}

.mv-card--vision .mv-icon {
  background: var(--cream);
  color: var(--gold);
}

.mv-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.mv-card--mission .mv-title {
  color: var(--white);
}

.mv-card--vision .mv-title {
  color: var(--charcoal);
}

.mv-text {
  font-size: 1.125rem;
  line-height: 1.8;
}

.mv-card--mission .mv-text {
  color: rgba(255, 255, 255, 0.72);
}

.mv-card--vision .mv-text {
  color: var(--text-body);
}

/* Core Values — Two-Row Layout */
.values-section {
  padding-block: var(--section-py);
  background: var(--white);
}

.values-grid-wrap {
  margin-top: 3rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.values-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}

/* Row 1: 4 equal columns */
.values-grid-top {
  grid-template-columns: repeat(4, 1fr);
}

/* Row 2: 3 columns centred — use auto margins on first cell to push the group */
.values-grid-bottom {
  grid-template-columns: repeat(3, 1fr);
  /* Centre the 3 items within the full 4-column equivalent width */
  width: 75%;
  margin-inline: auto;
  border-top: 1px solid var(--border);
  background: var(--border);
}

.value-item {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  transition: background var(--transition);
}

.value-item:hover {
  background: var(--cream);
}

.value-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--beige);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.value-item:hover .value-number {
  color: var(--gold);
  opacity: 0.4;
}

.value-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.value-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Animated Vertical Timeline */
.timeline-section-new {
  padding-block: var(--section-py);
  background: var(--cream);
  overflow-x: hidden;
}

.timeline-container-new {
  position: relative;
  max-width: 1100px;
  margin: 5rem auto 0;
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.timeline-line-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(184, 150, 90, 0.2);
}

.timeline-line-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform-origin: left;
  animation: drawLineHoriz 3s ease-in-out forwards;
}

@keyframes drawLineHoriz {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

.timeline-block {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

.timeline-content-new {
  width: 100%;
  background: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  border: 1px solid transparent;
  text-align: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-content-new:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.timeline-dot-new {
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 4px solid var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -3rem;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(184, 150, 90, 0.15);
  transition: transform 0.3s ease, background 0.3s ease;
}

.timeline-block:hover .timeline-dot-new {
  transform: translate(-50%, -50%) scale(1.3);
  background: var(--gold);
}

.timeline-year-new {
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  background: var(--cream);
  padding: 0.2rem 1.2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 3;
}

.timeline-year-new.today {
  color: var(--charcoal);
}

.timeline-event-new {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.timeline-desc-new {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.timeline-bg-text {
  position: absolute;
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(184, 150, 90, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  animation: floatBgTextHoriz 6s ease-in-out infinite alternate;
  opacity: 0.6;
}

@keyframes floatBgTextHoriz {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Mobile responsive timeline */
@media (max-width: 900px) {
  .timeline-container-new {
    flex-direction: column;
    padding-top: 2rem;
    gap: 4rem;
  }

  .timeline-line-new {
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    transform-origin: top;
    animation: drawLineVert 3s ease-in-out forwards;
  }

  .timeline-line-new::after {
    transform-origin: top;
    animation: drawLineVert 3s ease-in-out forwards;
  }

  @keyframes drawLineVert {
    0% {
      transform: scaleY(0);
    }

    100% {
      transform: scaleY(1);
    }
  }

  .timeline-content-new {
    width: calc(100% - 60px);
    margin-left: auto;
    text-align: left;
    align-items: flex-start;
  }

  .timeline-dot-new {
    left: 20px;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .timeline-block:hover .timeline-dot-new {
    transform: translate(-50%, -50%) scale(1.3);
  }

  .timeline-year-new {
    left: 1.5rem;
    top: -1.2rem;
    transform: none;
  }

  .timeline-bg-text {
    font-size: 5rem !important;
    opacity: 0.15;
  }
}

/* Experience highlight */
.exp-section {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--charcoal);
}

.exp-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
}

.exp-number {
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}

.exp-content .section-title {
  color: var(--white);
}

.exp-content p {
  font-size: 1.125rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  max-width: 50ch;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page {
  padding-block: var(--section-py);
  background: var(--bg);
}

/* SERVICES SLIDER */
.services-slider-wrap {
  position: relative;
  width: 100%;
  margin-top: 3.5rem;
  overflow: hidden;
  padding-block: 2rem;
}

.services-slider {
  width: 100%;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-slider.no-smooth {
  scroll-behavior: auto !important;
}

.services-slider::-webkit-scrollbar {
  display: none;
}

.services-slider-track {
  display: flex;
  gap: 2rem;
  padding: 0 calc(50vw - 37.5vw);
  /* Center the slide (75vw width on mobile) */
}

@media (min-width: 768px) {
  .services-slider-track {
    padding: 0 calc(50vw - 20vw);
    /* Center the slide (40vw width) */
  }
}

@media (min-width: 1200px) {
  .services-slider-track {
    padding: 0 calc(50vw - 15vw);
    /* Center the slide (30vw width) */
  }
}

.service-slide {
  flex: 0 0 75vw;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  scroll-snap-align: center;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, filter 0.5s ease;
  transform: scale(0.85);
  opacity: 0.5;
  filter: grayscale(60%);
  cursor: pointer;
  aspect-ratio: 4/5;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .service-slide {
    flex: 0 0 40vw;
    aspect-ratio: 3/2;
    min-height: auto;
    /* Half of previous height */
  }
}

@media (min-width: 1200px) {
  .service-slide {
    flex: 0 0 30vw;
  }
}

.service-slide.active {
  transform: scale(1);
  opacity: 1;
  filter: grayscale(0%);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.service-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.8s ease;
}

.service-slide.active:hover .service-slide-bg {
  transform: scale(1.05);
}

.service-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: -1;
}

.service-slide-content {
  padding: 1.5rem;
  /* Reduced padding for smaller height */
  color: var(--white);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.service-slide.active .service-slide-content {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.2s;
}

.service-slide-num {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.service-slide-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.service-slide-desc {
  font-size: 1.125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Truncate text for smaller height */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Nav buttons */
.services-slider-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-btn {
  background: transparent;
  border: 1px solid var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.slider-btn:active {
  transform: scale(0.95);
}

/* Sectors on services page */
.sectors-detail {
  padding-block: var(--section-py);
  background: var(--cream);
}

.sectors-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.sector-detail-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.sector-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.sector-detail-img {
  height: 240px;
  overflow: hidden;
}

.sector-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sector-detail-card:hover .sector-detail-img img {
  transform: scale(1.05);
}

.sector-detail-body {
  padding: 2rem;
}

.sector-detail-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.sector-detail-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.careers-page {
  padding-block: var(--section-py);
  background: var(--white);
}

.why-join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.why-join-item {
  padding: 2rem 1.75rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-join-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.wj-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}

.wj-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.wj-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.openings-section {
  padding-block: var(--section-py);
  background: var(--cream);
}

.no-openings-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 3rem;
  background: var(--white);
  text-align: center;
  margin-top: 2rem;
}

.no-openings-box h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.no-openings-box p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 45ch;
  margin-inline: auto;
}

.application-section {
  padding-block: var(--section-py);
  background: var(--white);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  padding-block: var(--section-py);
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.contact-info>p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail-label {
  font-family: var(--serif);
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.contact-detail-value {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-detail-value a {
  color: var(--charcoal);
  transition: color var(--transition-fast);
  display: block;
}

.contact-detail-value a:hover {
  color: var(--gold);
}

.contact-phone-link {
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.035em;
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.contact-phone-link:hover {
  color: var(--gold);
}

.contact-social {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.contact-social h4 {
  font-family: var(--serif);
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* ============================================================
   FORMS (Contact + Careers)
   ============================================================ */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.75rem;
  box-shadow: var(--shadow-soft);
}

.form-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 150, 90, 0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #C0392B;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239E856A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group .file-input-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  background: var(--bg);
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.form-group .file-input-wrap:hover {
  border-color: var(--gold);
}

.form-group .file-input-wrap input[type="file"] {
  display: none;
}

.file-input-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.file-btn {
  padding: 0.5rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.file-btn:hover {
  background: var(--beige);
}

.form-error {
  font-family: var(--serif);
  font-size: 0.78rem;
  color: #C0392B;
  margin-top: 0.35rem;
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

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

.success-icon {
  width: 60px;
  height: 60px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.success-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.success-text {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.instagram-section {
  padding-block: var(--section-py);
  background: var(--cream);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 2.5rem;
}

.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(184, 150, 90, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.insta-cta {
  text-align: center;
  margin-top: 2rem;
}

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.5rem;
  }

  /* Core Values responsive */
  .values-grid-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
    width: 50%;
  }

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

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

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

  .exp-inner {
    gap: 3rem;
  }

  .intro-grid {
    gap: 3rem;
  }

  .about-story-grid {
    gap: 3rem;
  }

  .mv-grid {
    gap: 1.5rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-py: clamp(3rem, 8vw, 5rem);
  }

  /* Nav */
  .nav-links,
  .btn-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  /* Hero */
  .hero {
    height: 85vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  /* Intro */
  .intro-image img {
    height: 450px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-image-badge {
    bottom: -1rem;
    right: -0.5rem;
  }

  .intro-pillars {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .stat-item::after {
    width: 50%;
    height: 1px;
    top: auto;
    bottom: 0;
    left: 25%;
    right: auto;
  }

  /* Services */
  .services-page {
    padding-top: clamp(7.5rem, 20vw, 9.5rem);
  }

  .services-slider-nav {
    display: none !important;
  }

  .service-slide-desc {
    -webkit-line-clamp: 3;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .services-full-grid {
    grid-template-columns: 1fr;
  }

  /* Sectors */
  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sector-card {
    aspect-ratio: 4/3;
  }

  .sectors-detail-grid {
    grid-template-columns: 1fr;
  }

  /* Residential Works Panel */
  .res-works-panel.is-open {
    padding: 2rem 1.25rem;
  }

  .res-works-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .res-works-title {
    font-size: 2rem;
  }

  .res-works-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .res-work-img-wrap {
    aspect-ratio: 4/3;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    position: static;
  }

  .about-image-wrap img {
    height: 300px;
  }

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

  /* Core Values mobile */
  .values-grid-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-inline: 0;
  }

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

  .timeline::before {
    display: none;
  }

  .timeline-item {
    padding-top: 0;
    padding-left: 2.5rem;
  }

  .timeline-dot {
    top: 0.25rem;
    left: 0;
  }

  .exp-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .exp-number {
    font-size: clamp(4rem, 15vw, 7rem);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Careers */
  .why-join-grid {
    grid-template-columns: 1fr;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 2rem 1.5rem;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  /* Misc */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .home-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-scroll {
    display: none;
  }

  .whatsapp-fab {
    bottom: 1.5rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .values-grid-top {
    grid-template-columns: 1fr;
  }

  .values-grid-bottom {
    grid-template-columns: 1fr;
    width: 100%;
    margin-inline: 0;
    border-top: none;
  }

  .hero {
    height: 100vh;
    min-height: 480px;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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