/* =========================================
   ISHANYA BUILDCON â€” Global Stylesheet
   Matches PHP template BEM class names
   Palette: Forest Green, Cream, Gold
   ========================================= */

/* ====== DESIGN TOKENS ====== */
:root {
  --forest:        #1c3829;
  --forest-light:  #2d5240;
  --forest-deep:   #111a14;
  --cream:         #f7f2ea;
  --cream-dark:    #ede6d6;
  --gold:          #b8924a;
  --gold-light:    #d4aa6a;
  --gold-pale:     #e8d5a8;
  --sage:          #7a9e8a;
  --sage-light:    #a8c4b0;
  --charcoal:      #2a2a2a;
  --white:         #ffffff;
  --text-muted:    #6b7566;
  --text-light:    rgba(247,242,234,0.75);
  --border-gold:   rgba(184,146,74,0.3);
  --border-cream:  rgba(247,242,234,0.12);
  --nav-height:    76px;
  --shadow-sm:     0 2px 12px rgba(28,56,41,0.08);
  --shadow-md:     0 8px 32px rgba(28,56,41,0.12);
  --shadow-lg:     0 20px 60px rgba(28,56,41,0.18);
  --transition:    0.28s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }
address { font-style: normal; }

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--forest-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ====== SKIP LINK ====== */
.skip-link {
  position: absolute; top: -9999px; left: 1rem;
  background: var(--gold); color: #fff;
  padding: 8px 16px; font-size: 0.85rem; font-weight: 600;
  border-radius: 0 0 4px 4px; z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ============================
   CONTAINER
   ============================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================
   SVG ICONS
   ============================ */
.icon {
  width: 1em; height: 1em;
  fill: none; stroke: currentColor;
  stroke-width: 1.8; vertical-align: middle;
  display: inline-block; flex-shrink: 0;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 38px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

/* Primary */
.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,146,74,0.35);
}

/* Outline (dark bg) */
.btn--outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* Outline white (on image/dark bg) */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(247,242,234,0.5);
}
.btn--outline-white:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* WhatsApp */
.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn--whatsapp:hover { background: #1ebe5a; border-color: #1ebe5a; }

/* Sizes */
.btn--sm  { padding: 10px 24px; font-size: 0.62rem; }
.btn--lg  { padding: 17px 46px; font-size: 0.72rem; }
.btn--full { width: 100%; justify-content: center; }

/* Spinner (contact form) */
.btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn--loading .btn-text { opacity: 0.6; }
.btn--loading .btn-spinner { display: inline-block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================
   HEADER / NAVIGATION
   ============================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(20, 43, 30, 0.97);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(184,146,74,0.35);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(15, 31, 22, 0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.32);
}

/* Transparent hero variant */
.site-header.header--transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.header--transparent.scrolled {
  background: rgba(15,31,22,0.99);
  border-bottom-color: rgba(184,146,74,0.35);
}

.header__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 100%; gap: 2rem;
}

/* Logo */
.header__logo {
  display: flex; align-items: center; flex-shrink: 0;
  text-decoration: none;
}

.logo-light { display: block; }
.logo-dark  { display: none; }

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.header__logo img {
  height: 52px; width: auto; object-fit: contain;
}

/* Primary nav */
.header__nav { flex: 1; }

.nav-menu {
  display: flex; gap: 2.2rem; align-items: center;
  list-style: none; margin: 0; padding: 0;
  justify-content: center;
}

.nav-menu > .menu-item > a {
  color: rgba(247,242,234,0.78);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap; display: block;
}

.nav-menu > .menu-item > a:hover,
.nav-menu > .menu-item.current-menu-item > a,
.nav-menu > .menu-item.current-page-ancestor > a {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* Dropdown */
.menu-item { position: relative; }

.sub-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: rgba(15,31,22,0.98);
  border: 1px solid var(--border-gold);
  min-width: 200px;
  list-style: none; padding: 0.5rem 0; margin: 0;
  backdrop-filter: blur(16px);
  z-index: 100;
}

.menu-item:hover .sub-menu { display: block; }

.sub-menu .menu-item a {
  display: block;
  padding: 0.65rem 1.2rem;
  color: rgba(247,242,234,0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.64rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600;
  transition: color var(--transition), background var(--transition);
}

.sub-menu .menu-item a:hover {
  color: var(--gold-light);
  background: rgba(184,146,74,0.08);
}

/* Header actions */
.header__actions {
  display: flex; align-items: center; gap: 1rem; flex-shrink: 0;
}

.header__phone {
  display: flex; align-items: center; gap: 0.4rem;
  color: rgba(247,242,234,0.75);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.08em;
  transition: color var(--transition);
}
.header__phone:hover { color: var(--gold-light); }
.header__phone-text { display: none; }

.header__cta { /* uses .btn .btn--primary .btn--sm */ }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  background: none; border: none;
}

.hamburger__bar {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.32s ease;
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================
   MOBILE NAV
   ============================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: rgba(15,31,22,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.is-open,
.mobile-nav[aria-hidden="false"] { display: block; }

.mobile-nav__inner {
  padding: 2rem 1.5rem 3rem;
}

.mobile-menu {
  list-style: none; margin: 0; padding: 0;
}

.mobile-menu .menu-item {
  border-bottom: 1px solid rgba(184,146,74,0.1);
}

.mobile-menu .menu-item a {
  display: block; padding: 1rem 0.5rem;
  color: rgba(247,242,234,0.82);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-menu .menu-item a:hover { color: var(--gold-light); }

.mobile-nav__phone {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 2rem; padding: 1rem 0.5rem;
  color: var(--sage-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.08em;
  transition: color var(--transition);
}
.mobile-nav__phone:hover { color: var(--gold-light); }

/* ============================
   SITE MAIN (offset fixed header)
   ============================ */
.site-main {
  padding-top: var(--nav-height);
}

/* ============================
   SECTION SHARED STYLES
   ============================ */
section { padding: 6rem 0; }

.section-pad { padding: 6rem 0; }

.section-header {
  margin-bottom: 3.5rem;
}
.section-header--centered {
  text-align: center;
  max-width: 620px; margin-left: auto; margin-right: auto;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.9rem;
}

.section-label--light { color: var(--gold-light); }

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15; letter-spacing: -0.01em;
  color: var(--forest); margin-bottom: 1rem;
}

.section-heading em {
  font-style: italic; font-weight: 300; color: var(--gold);
}

.section-desc {
  color: var(--text-muted);
  line-height: 1.85; font-size: 0.97rem; font-weight: 400;
  max-width: 580px;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex; flex-direction: column;
  align-items: stretch; justify-content: flex-start;
  overflow: hidden;
  background-color: var(--forest-deep);
  background-image: var(--hero-bg, none);
  background-size: cover; background-position: center;
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    145deg,
    rgba(17,26,20,0.88) 0%,
    rgba(28,56,41,0.52) 55%,
    rgba(45,82,64,0.74) 100%
  );
  z-index: 1;
}

/* â”€â”€ Video background â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero__video-wrap {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}

.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* On mobile / reduced-motion: hide video, show poster via --hero-bg */
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

@media (max-width: 768px) and (pointer: coarse) {
  .hero__video-wrap { display: none; }
}
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */


.hero__content {
  position: relative; z-index: 2;
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 5rem 2rem 3rem;
  min-height: 70vh;
  animation: fadeUp 0.9s ease both;
}

.hero__tagline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  padding: 7px 20px;
  margin-bottom: 1.8rem;
}

.hero__headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 1.06; letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero__headline-accent {
  font-style: italic; font-weight: 300;
  color: var(--gold-light);
}

.hero__description {
  font-size: 1.05rem;
  color: rgba(247,242,234,0.8);
  max-width: 540px; margin: 0 auto 2.8rem;
  line-height: 1.75; font-weight: 300;
  letter-spacing: 0.02em;
}

.hero__ctas {
  display: flex; gap: 1.2rem; justify-content: center;
  flex-wrap: wrap; margin-top: 1.5rem;
}

/* Stats bar inside hero */
.hero__stats-bar {
  position: relative; z-index: 2;
  background: rgba(184,146,74,0.92);
  backdrop-filter: blur(10px);
  padding: 2.2rem 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stats-bar__item {
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.stats-bar__item:last-child { border-right: none; }

.stats-bar__value {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--white);
  line-height: 1; margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stats-bar__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* ============================
   ABOUT STRIP
   ============================ */
.about-strip {
  background: var(--cream);
}

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

.about-strip__visual { position: relative; }

.about-strip__image-wrap {
  position: relative;
  overflow: hidden;
}

.about-strip__image-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 1px solid var(--border-gold);
  z-index: 0;
  transition: all var(--transition);
  pointer-events: none;
}

.about-strip__visual:hover .about-strip__image-wrap::before {
  top: -10px; left: -10px;
  border-color: rgba(184,146,74,0.6);
}

.about-strip__image {
  width: 100%; height: 440px;
  object-fit: cover;
  position: relative; z-index: 1;
  display: block;
}

.about-strip__badge {
  position: absolute; bottom: -20px; right: -20px; z-index: 2;
  background: var(--forest);
  padding: 1.4rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-strip__badge-top {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  color: var(--gold-light); line-height: 1;
}

.about-strip__badge-btm {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(247,242,234,0.65);
  font-weight: 600; margin-top: 0.3rem;
}

.about-strip__content { }

.about-strip__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--forest); line-height: 1.2;
  margin-bottom: 1.2rem; letter-spacing: -0.01em;
}

.about-strip__para {
  color: var(--text-muted);
  line-height: 1.85; font-size: 0.97rem;
  margin-bottom: 1.1rem; font-weight: 400;
}

/* ============================
   FEATURED PROJECT
   ============================ */
.featured-project {
  background: var(--cream-dark);
}

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

.featured-project__visual { position: relative; }

.featured-project__image-wrap {
  position: relative; overflow: hidden;
}

.featured-project__image {
  width: 100%; height: 500px;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}

.featured-project__visual:hover .featured-project__image {
  transform: scale(1.04);
}

.featured-project__content { }

.featured-project__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--forest); line-height: 1.2;
  margin-bottom: 1rem; letter-spacing: -0.01em;
}

.featured-project__meta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 1.2rem;
}

.featured-project__meta-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  color: var(--text-muted);
}

.featured-project__excerpt {
  color: var(--text-muted);
  line-height: 1.85; font-size: 0.97rem;
  margin-bottom: 1.4rem;
}

.featured-project__features {
  list-style: none; margin: 0 0 1.4rem; padding: 0;
}

.featured-project__features li {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.92rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.featured-project__features li .icon { color: var(--gold); }

.featured-project__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 2rem;
}

.featured-project__price strong {
  color: var(--forest); font-size: 1.5rem;
  font-weight: 800; display: block;
  letter-spacing: -0.01em;
}

.featured-project__ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

/* Project badge */
.project-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700;
  padding: 6px 14px; color: var(--white);
}

.project-badge--ongoing      { background: var(--forest); }
.project-badge--completed    { background: var(--gold); }
.project-badge--upcoming     { background: var(--sage); }
.project-badge--ready-to-move { background: #2e7d32; }

/* ============================
   PROJECTS GRID / ARCHIVE
   ============================ */
.projects-section { background: var(--cream); }

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

.project-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-card__link {
  display: flex; flex-direction: column; flex: 1;
  text-decoration: none;
}

.project-card__image-wrap {
  overflow: hidden; position: relative;
  height: 260px;
}

.project-card__image {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.55s ease;
}

.project-card:hover .project-card__image { transform: scale(1.06); }

.project-card__image--placeholder {
  background: var(--cream-dark);
  width: 100%; height: 100%;
}

.project-card__body {
  padding: 1.6rem;
  flex: 1; display: flex; flex-direction: column;
}

.project-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--forest); line-height: 1.4;
  margin-bottom: 0.5rem;
}

.project-card__location {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.project-card__specs {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.project-card__specs span {
  display: flex; align-items: center; gap: 0.3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  color: var(--text-muted);
}

.project-card__price {
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 1rem;
}
.project-card__price strong {
  color: var(--forest); font-weight: 700;
}

.project-card__cta {
  margin-top: auto;
}

.projects-section__footer {
  text-align: center; margin-top: 3rem;
}

/* ============================
   PARALLAX CTA SECTION
   ============================ */
.parallax-cta {
  position: relative;
  background-color: var(--forest-deep);
  background-image: var(--parallax-bg, none);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 0;
  text-align: center;
}

.parallax-cta__overlay {
  position: absolute; inset: 0;
  background: rgba(17,26,20,0.78);
}

.parallax-cta__content {
  position: relative; z-index: 1;
}

.parallax-cta__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white); line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.parallax-cta__sub {
  color: rgba(247,242,234,0.75);
  font-size: 1rem; line-height: 1.7;
  max-width: 520px; margin: 0 auto 2.5rem;
}

.parallax-cta__buttons {
  display: flex; gap: 1.2rem;
  justify-content: center; flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================
   TESTIMONIALS SECTION
   ============================ */
.testimonials-section {
  background: var(--forest);
  color: var(--cream);
}

.testimonials-section .section-heading {
  color: var(--white);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .testimonials-track { }
  .testimonial-card { flex: 0 0 50%; }
}

@media (min-width: 1100px) {
  .testimonial-card { flex: 0 0 33.333%; }
}

.testimonial-card__inner {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-gold);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: background var(--transition);
}

.testimonial-card__inner:hover {
  background: rgba(255,255,255,0.08);
}

.testimonial-card__quote-icon {
  width: 2rem; height: 2rem; color: var(--gold); opacity: 0.5;
  margin-bottom: 1rem;
}

.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 1rem;
}

.testimonial-stars .star {
  color: var(--gold); font-size: 0.95rem;
}

.testimonial-card__quote {
  font-family: 'DM Sans', sans-serif;
  font-style: italic; font-size: 0.97rem;
  color: rgba(247,242,234,0.88); line-height: 1.85;
  margin-bottom: 1.8rem; font-weight: 300;
  border: none; padding: 0;
}

.testimonial-card__author {
  display: flex; align-items: center; gap: 0.9rem;
}

.testimonial-card__photo {
  width: 50px; height: 50px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border-gold);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  color: var(--gold-light); display: block;
  letter-spacing: 0.06em;
}

.testimonial-card__role {
  font-size: 0.75rem; color: rgba(247,242,234,0.5);
  display: block; margin-top: 0.2rem;
}

/* Slider controls */
.slider-controls {
  display: flex; justify-content: center; gap: 1rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--border-gold);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  background: rgba(255,255,255,0.05);
}

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

/* ============================
   NEWS SECTION
   ============================ */
.news-section { background: var(--cream-dark); }

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

.news-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.news-card__link {
  display: block; text-decoration: none; color: inherit;
}

.news-card__image-wrap { overflow: hidden; }

.news-card__image {
  width: 100%; height: 230px;
  object-fit: cover; display: block;
  transition: transform 0.55s ease;
}

.news-card:hover .news-card__image { transform: scale(1.06); }

.news-card__body { padding: 1.5rem; }

.news-card__date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700;
  color: var(--gold); display: block; margin-bottom: 0.6rem;
}

.news-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--forest); line-height: 1.45;
  margin-bottom: 0.6rem;
}

.news-card__excerpt {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 1rem;
}

.news-card__more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 700;
  color: var(--gold);
  transition: gap var(--transition);
}
.news-card:hover .news-card__more { gap: 0.7rem; }

/* ============================
   CONTACT SECTION
   ============================ */
.contact-section {
  background: var(--forest-deep);
  color: var(--cream);
}

.contact-section .section-heading { color: var(--white); }
.contact-section .section-label  { color: var(--gold-light); }

.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: flex-start;
  margin-top: 3rem;
}

/* Contact info column */
.contact-info { }

.contact-info__item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(247,242,234,0.07);
}

.contact-info__item:last-child { border-bottom: none; }

.contact-info__item .icon {
  width: 1.4rem; height: 1.4rem;
  color: var(--gold); flex-shrink: 0; margin-top: 2px;
}

.contact-info__item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700;
  color: var(--gold); margin-bottom: 0.3rem;
}

.contact-info__item a {
  display: block; color: rgba(247,242,234,0.7);
  font-size: 0.95rem; line-height: 1.6;
  transition: color var(--transition);
}
.contact-info__item a:hover { color: var(--gold-light); }

.contact-info__item address {
  color: rgba(247,242,234,0.7);
  font-size: 0.92rem; line-height: 1.7;
}

.contact-info__map {
  margin-top: 1.5rem;
  border: 1px solid var(--border-gold);
  overflow: hidden;
}

.contact-info__map iframe {
  display: block; width: 100%; border: none;
  filter: grayscale(20%) contrast(0.9);
}

/* Contact form column */
.contact-form-wrap { }

.contact-form { }

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

.form-row--half { grid-template-columns: 1fr 1fr; }

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

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); display: block;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(247,242,234,0.06);
  border: 1px solid rgba(247,242,234,0.18);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none; -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(247,242,234,0.3);
  letter-spacing: 0.04em;
}

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

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

.form-group select option { background: var(--forest-deep); color: var(--white); }

.form-response {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  display: none;
}

.form-response--success {
  display: block;
  background: rgba(120,180,120,0.12);
  border: 1px solid var(--sage);
  color: var(--sage-light);
}

.form-response--error {
  display: block;
  background: rgba(200,80,80,0.1);
  border: 1px solid rgba(220,80,80,0.5);
  color: #f88;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--forest-deep);
  border-top: 1px solid var(--border-gold);
}

.footer__main {
  padding: 5rem 0 3rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
}

/* Brand column */
.footer__col--brand { }

.footer__logo-link { display: inline-block; margin-bottom: 1.2rem; }

.footer__logo { height: 52px; width: auto; }

.footer__logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  color: var(--white); letter-spacing: 0.04em;
}

.footer__about {
  color: rgba(247,242,234,0.42);
  font-size: 0.88rem; line-height: 1.8; font-weight: 300;
  max-width: 260px; margin-bottom: 0.8rem;
}

.footer__rera {
  color: rgba(247,242,234,0.35);
  font-size: 0.78rem; line-height: 1.6;
  max-width: 260px;
}

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

.footer__social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(247,242,234,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,242,234,0.38);
  transition: all var(--transition);
  border-radius: 50%;
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,146,74,0.08);
}

/* General columns */
.footer__col { }

.footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.24em;
  text-transform: uppercase; font-weight: 700;
  color: var(--gold); margin-bottom: 1.4rem;
}

/* Footer nav menus */
.footer-menu {
  list-style: none; margin: 0; padding: 0;
}

.footer-menu li { margin-bottom: 0.65rem; }

.footer-menu li a {
  color: rgba(247,242,234,0.42);
  font-size: 0.88rem; font-weight: 400;
  transition: color var(--transition);
}
.footer-menu li a:hover { color: var(--gold-light); }

/* Footer contact list */
.footer-contact-list {
  list-style: none; margin: 0; padding: 0;
}

.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-bottom: 0.9rem;
  color: rgba(247,242,234,0.42);
  font-size: 0.88rem; line-height: 1.6;
}

.footer-contact-list li .icon {
  color: var(--gold); flex-shrink: 0;
  width: 1rem; height: 1rem; margin-top: 2px;
}

.footer-contact-list li a {
  color: rgba(247,242,234,0.42);
  transition: color var(--transition);
}
.footer-contact-list li a:hover { color: var(--gold-light); }

.footer-contact-list__address address {
  color: rgba(247,242,234,0.42);
  font-size: 0.88rem; line-height: 1.6;
}

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(247,242,234,0.07);
  padding: 1.6rem 0;
}

.footer__bottom-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}

.footer__copyright {
  color: rgba(247,242,234,0.28);
  font-size: 0.8rem;
}

.footer__credit {
  color: rgba(247,242,234,0.28);
  font-size: 0.8rem;
}

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  box-shadow: 0 4px 16px rgba(184,146,74,0.4);
}

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

.scroll-top:hover { background: var(--gold-light); }

/* ============================
   PAGE HEADER (inner pages)
   ============================ */
.page-header {
  position: relative;
  background: var(--forest);
  padding: 5rem 0 4rem;
  text-align: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.page-header.has-bg {
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
}

.page-header.has-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(17,26,20,0.78);
}

.page-header__content { position: relative; z-index: 1; }

.page-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--white); line-height: 1.1;
  letter-spacing: -0.015em;
}

.page-header h1 em {
  font-style: italic; font-weight: 300;
  color: var(--gold-light);
}

/* ============================
   GALLERY (gallery.html / page templates)
   ============================ */
.gallery-filters {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

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

.gallery-masonry {
  columns: 3; column-gap: 14px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(17,26,20,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}

.gallery-item:hover .gallery-overlay { background: rgba(17,26,20,0.5); }

.gallery-overlay-icon {
  color: var(--white); font-size: 2rem;
  opacity: 0; transform: scale(0.7);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-overlay-icon { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.94);
  align-items: center; justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2.2rem; color: var(--white);
  cursor: pointer; line-height: 1;
  transition: color var(--transition);
}

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

.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  font-size: 2rem; color: rgba(255,255,255,0.6);
  cursor: pointer; padding: 1rem;
  transition: color var(--transition); z-index: 10000;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold-light); }

/* ============================
   VIDEO CARDS
   ============================ */
.video-card {
  background: var(--white); overflow: hidden; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.video-thumb { position: relative; overflow: hidden; }

.video-thumb img {
  width: 100%; height: 200px;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}

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

.play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(17,26,20,0.38);
  transition: background var(--transition);
}

.video-card:hover .play-btn { background: rgba(17,26,20,0.6); }

.play-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(184,146,74,0.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  padding-left: 5px;
  transition: transform var(--transition);
}

.video-card:hover .play-circle { transform: scale(1.12); }

/* ============================
   SINGLE PROJECT (template-parts/project)
   ============================ */

/* Slideshow */
.slideshow-wrap {
  position: relative; overflow: hidden; height: 540px;
}

.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.9s ease;
}

.slide.active { opacity: 1; }

.slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(17,26,20,0.85), transparent);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slide-controls {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 1.8rem;
}

.slide-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(28,56,41,0.25); cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.slide-dot.active {
  background: var(--gold); border-color: var(--gold-light);
  transform: scale(1.25);
}

.slide-nav-btn {
  position: absolute; top: 50%; z-index: 3;
  width: 44px; height: 44px;
  background: rgba(28,56,41,0.7);
  border: 1px solid var(--border-gold);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transform: translateY(-50%);
  transition: all var(--transition);
}

.slide-nav-btn:hover { background: var(--gold); }
.slide-nav-btn.prev { left: 1.5rem; }
.slide-nav-btn.next { right: 1.5rem; }

/* Specs bar */
.specs-bar {
  background: var(--forest);
  padding: 2.5rem 0;
}

.specs-bar__grid {
  display: flex; gap: 2rem; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
}

.specs-bar__item {
  display: flex; align-items: center; gap: 0.7rem;
}

.specs-bar__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(247,242,234,0.55);
  font-weight: 600; display: block;
}

.specs-bar__value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--white); display: block;
}

/* Project enquiry form (same form styles as contact, dark bg) */
.project-enquiry {
  background: var(--forest-deep); color: var(--cream);
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

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

.reveal.visible {
  opacity: 1; transform: translateY(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; }

/* ============================
   UTILITIES
   ============================ */
.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.text-muted   { color: var(--text-muted); }
.text-white   { color: var(--white); }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mt-6  { margin-top: 3rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-4  { margin-bottom: 2rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  /* Header: hide desktop nav, show hamburger */
  .header__nav { display: none; }
  .hamburger   { display: flex; }
  .header__phone-text { display: none; }

  /* Show mobile nav when JS adds class */
  .mobile-nav.is-open { display: block; }

  /* Sections */
  section { padding: 4.5rem 0; }
  .section-pad { padding: 4.5rem 0; }

  /* About strip */
  .about-strip__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-strip__image { height: 300px; }
  .about-strip__image-wrap::before { display: none; }
  .about-strip__badge { bottom: 1rem; right: 1rem; }

  /* Featured project */
  .featured-project__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .featured-project__image { height: 300px; }

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

  /* Stats bar */
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials - single column */
  .testimonial-card { flex: 0 0 100%; }

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

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__main { padding: 3.5rem 0 2rem; }

  /* Slideshow */
  .slideshow-wrap { height: 320px; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.2rem; }
  section { padding: 3.5rem 0; }
  .section-pad { padding: 3.5rem 0; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__content { padding: 4rem 1.2rem 2rem; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stats-bar__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stats-bar__item:last-child,
  .stats-bar__item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: center; }

  /* News */
  .news-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

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

  /* Gallery */
  .gallery-masonry { columns: 1; }

  /* Slideshow */
  .slideshow-wrap { height: 240px; }

  /* Testimonial */
  .testimonial-card__inner { padding: 1.8rem 1.4rem; }

  /* Scroll top */
  .scroll-top { bottom: 1.2rem; right: 1.2rem; width: 40px; height: 40px; }
}

/* ============================================================
   BLOG — Archive Hero
   ============================================================ */
.archive-hero {
  position: relative;
  background: var(--forest);
  padding: 6rem 0 4rem;
  margin-top: var(--nav-height);
  overflow: hidden;
}

.archive-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 32px,
    rgba(184,146,74,0.04) 32px, rgba(184,146,74,0.04) 33px
  );
}

.archive-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,26,20,0.7) 0%, rgba(28,56,41,0.4) 100%);
}

.archive-hero__inner { position: relative; z-index: 1; }

.archive-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white); line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 0.5rem; margin-bottom: 1rem;
}

.archive-hero__desc {
  color: rgba(247,242,234,0.72);
  font-size: 1rem; line-height: 1.75;
  max-width: 540px; font-weight: 300;
}

/* ============================================================
   BLOG â€” Archive Layout
   ============================================================ */
.blog-archive { background: var(--cream); }

.blog-archive__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: flex-start;
}

/* ============================================================
   BLOG â€” Post Card Grid
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}

.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.blog-card__image-link { display: block; overflow: hidden; }

.blog-card__image-wrap {
  position: relative; overflow: hidden; height: 220px;
}

.blog-card__image {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.55s ease;
}

.blog-card:hover .blog-card__image { transform: scale(1.06); }

.blog-card__image--placeholder { background: var(--cream-dark); width: 100%; height: 100%; }

.blog-card__cat {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 12px;
}

.blog-card__body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }

.blog-card__meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.7rem; }

.blog-card__date,
.blog-card__read-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600;
  color: var(--text-muted);
}

.blog-card__sep { color: var(--gold); font-size: 0.7rem; }

.blog-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--forest); line-height: 1.4; margin-bottom: 0.7rem;
}

.blog-card__title a { color: inherit; }
.blog-card__title a:hover { color: var(--gold); }
.blog-card__title--lg { font-size: 1.5rem; line-height: 1.25; }

.blog-card__excerpt {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 1.2rem; flex: 1;
}

.blog-card__more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 700;
  color: var(--gold); margin-top: auto;
  transition: gap var(--transition);
}
.blog-card:hover .blog-card__more { gap: 0.7rem; }

.blog-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; }
.blog-card--featured .blog-card__image-wrap { height: 360px; }
.blog-card--featured .blog-card__body { padding: 2.5rem 2.2rem; }
.blog-card--featured .blog-card__title { font-size: 1.7rem; }

.blog-empty { text-align: center; padding: 5rem 2rem; color: var(--text-muted); }
.blog-empty p { font-size: 1.05rem; margin-bottom: 1.5rem; }

/* ============================================================
   BLOG â€” Pagination
   ============================================================ */
.blog-pagination { margin-top: 2rem; }

.blog-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }

.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--forest); border: 1px solid var(--border-gold);
  background: var(--white); transition: all var(--transition);
  padding: 0 0.6rem; text-decoration: none;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--gold); border-color: var(--gold); color: var(--white);
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0 1rem;
}

/* ============================================================
   BLOG â€” Single Post Hero
   ============================================================ */
.post-hero {
  position: relative; background: var(--forest-deep);
  padding: 6rem 0 4rem; margin-top: var(--nav-height); overflow: hidden;
}

.post-hero--has-image {
  min-height: 420px; display: flex; align-items: flex-end;
  background-image: var(--post-hero-bg, none);
  background-size: cover; background-position: center;
}

.post-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,26,20,0.96) 0%, rgba(17,26,20,0.55) 50%, rgba(17,26,20,0.25) 100%);
}

.post-hero__inner { position: relative; z-index: 1; padding-bottom: 3rem; }

.post-hero__breadcrumb {
  display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600;
}

.post-hero__breadcrumb a { color: rgba(247,242,234,0.55); transition: color var(--transition); }
.post-hero__breadcrumb a:hover { color: var(--gold-light); }
.post-hero__breadcrumb span { color: rgba(247,242,234,0.35); }
.post-hero__breadcrumb .icon { width: 0.7rem; height: 0.7rem; color: rgba(247,242,234,0.35); }

.post-hero__cats { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }

.post-cat {
  display: inline-block; background: var(--gold); color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 5px 14px;
  transition: background var(--transition);
}
.post-cat:hover { background: var(--gold-light); }

.post-hero__title {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--white); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 1.4rem; max-width: 800px;
}

.post-hero__meta { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }

.post-hero__avatar {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border-gold);
}

.post-hero__author,
.post-hero__date,
.post-hero__read-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.1em;
  font-weight: 600; color: rgba(247,242,234,0.65);
}

.post-hero__sep { color: var(--gold); font-size: 0.6rem; }

/* ============================================================
   BLOG â€” Single Post Layout
   ============================================================ */
.single-post-wrap { background: var(--cream); }

.single-post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: flex-start; }

.single-post__featured-image { margin-bottom: 2.5rem; overflow: hidden; }

.single-post__image { width: 100%; height: auto; display: block; max-height: 520px; object-fit: cover; }

/* ============================================================
   BLOG â€” Entry Content Typography
   ============================================================ */
.entry-content {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; line-height: 1.9; color: var(--charcoal); max-width: 72ch;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  color: var(--forest); margin-top: 2.5rem; margin-bottom: 1rem;
  letter-spacing: -0.01em; line-height: 1.2;
}

.entry-content h2 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
.entry-content h3 { font-size: 1.35rem; }
.entry-content h4 { font-size: 1.1rem; }
.entry-content p  { margin-bottom: 1.4rem; }

.entry-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; transition: color var(--transition); }
.entry-content a:hover { color: var(--forest); }

.entry-content ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.4rem; }
.entry-content ol { list-style: decimal; padding-left: 1.4rem; margin-bottom: 1.4rem; }
.entry-content li { margin-bottom: 0.5rem; }

.entry-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1.2rem 1.5rem; background: var(--cream-dark);
  margin: 2rem 0; font-style: italic; font-size: 1.05rem; color: var(--forest);
}

.entry-content blockquote cite {
  display: block; margin-top: 0.8rem;
  font-size: 0.82rem; font-style: normal; color: var(--text-muted); font-weight: 600;
}

.entry-content img { max-width: 100%; height: auto; display: block; margin: 1.5rem 0; }
.entry-content figure { margin: 2rem 0; }
.entry-content figcaption { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 0.5rem; font-style: italic; }

.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.entry-content th,
.entry-content td { padding: 0.8rem 1rem; border: 1px solid var(--border-gold); text-align: left; }
.entry-content th { background: var(--forest); color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.entry-content tr:nth-child(even) td { background: var(--cream-dark); }

.entry-content code { font-family: 'Courier New', monospace; background: var(--cream-dark); padding: 2px 7px; font-size: 0.88em; border-radius: 3px; color: var(--forest); }
.entry-content pre { background: var(--forest-deep); color: var(--cream); padding: 1.5rem; overflow-x: auto; margin: 1.5rem 0; font-size: 0.88rem; line-height: 1.7; }
.entry-content pre code { background: none; padding: 0; color: inherit; border-radius: 0; }
.entry-content hr { border: none; border-top: 1px solid var(--border-gold); margin: 2.5rem 0; }

/* ============================================================
   BLOG â€” Tags & Share
   ============================================================ */
.single-post__tags {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  padding: 1.5rem 0; margin-top: 1.5rem;
  border-top: 1px solid var(--cream-dark);
}

.single-post__tags-label {
  font-family: 'Montserrat', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted);
  display: flex; align-items: center; gap: 0.3rem;
}

.post-tag {
  display: inline-block; padding: 5px 14px;
  border: 1px solid var(--border-gold); color: var(--text-muted);
  font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600; transition: all var(--transition); background: var(--white);
}
.post-tag:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.single-post__share {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem;
  padding: 1.5rem 0; border-top: 1px solid var(--cream-dark);
}

.single-post__share-label {
  font-family: 'Montserrat', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted);
}

.share-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-gold); color: var(--text-muted); transition: all var(--transition);
}

.share-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,146,74,0.08); }
.share-btn--facebook:hover { border-color: #1877f2; color: #1877f2; background: rgba(24,119,242,0.08); }
.share-btn--twitter:hover  { border-color: #1da1f2; color: #1da1f2; background: rgba(29,161,242,0.08); }
.share-btn--linkedin:hover { border-color: #0a66c2; color: #0a66c2; background: rgba(10,102,194,0.08); }
.share-btn--whatsapp:hover { border-color: #25d366; color: #25d366; background: rgba(37,211,102,0.08); }

/* ============================================================
   BLOG â€” Author Box
   ============================================================ */
.author-box {
  display: flex; align-items: flex-start; gap: 1.4rem;
  padding: 2rem; background: var(--cream-dark);
  border-left: 4px solid var(--gold); margin-top: 2.5rem;
}

.author-box__avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--white); box-shadow: var(--shadow-sm); }
.author-box__label { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 0.3rem; }
.author-box__name  { display: block; font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: var(--forest); margin-bottom: 0.5rem; }
.author-box__bio   { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ============================================================
   BLOG â€” Post Navigation
   ============================================================ */
.post-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 2.5rem; border-top: 1px solid var(--cream-dark); padding-top: 2rem;
}

.post-nav__item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1.2rem 1.4rem; background: var(--white);
  border: 1px solid var(--cream-dark); color: inherit;
  transition: all var(--transition); text-decoration: none;
}

.post-nav__item:hover { border-color: var(--gold); background: var(--cream); }
.post-nav__item .icon { color: var(--gold); flex-shrink: 0; }
.post-nav__item--next { justify-content: flex-end; text-align: right; }

.post-nav__label { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 0.2rem; }
.post-nav__title { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--forest); line-height: 1.35; }

/* ============================================================
   BLOG â€” Related Posts
   ============================================================ */
.related-posts { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--cream-dark); }
.related-posts__heading { margin-bottom: 1.8rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ============================================================
   BLOG â€” Comments
   ============================================================ */
.comments-area { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--cream-dark); }

.comments-title,
.comment-reply-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--forest); margin-bottom: 1.5rem; letter-spacing: -0.01em; }

.comment-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.comment-body { padding: 1.5rem; background: var(--white); border: 1px solid var(--cream-dark); margin-bottom: 1rem; }
.comment-author img { border-radius: 50%; width: 40px; height: 40px; object-fit: cover; vertical-align: middle; margin-right: 0.6rem; }
.comment-author .fn { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--forest); }
.comment-metadata a { font-size: 0.75rem; color: var(--text-muted); }
.comment-content { margin-top: 0.8rem; font-size: 0.95rem; line-height: 1.75; }
.reply { margin-top: 0.8rem; }

.comment-reply-link { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--gold); transition: color var(--transition); }
.comment-reply-link:hover { color: var(--forest); }

.comment-form label { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--forest); display: block; margin-bottom: 0.4rem; }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%; background: var(--white); border: 1px solid var(--cream-dark);
  padding: 12px 16px; font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  outline: none; color: var(--charcoal); display: block; margin-bottom: 1.2rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,74,0.1); }
.comment-form textarea { height: 140px; resize: vertical; }

.comment-form input[type="submit"],
.form-submit .submit {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 36px; background: var(--gold);
  color: var(--white); border: 2px solid var(--gold); cursor: pointer;
  transition: all var(--transition);
}

.comment-form input[type="submit"]:hover,
.form-submit .submit:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }

/* ============================================================
   BLOG â€” Sidebar
   ============================================================ */
.blog-sidebar { display: flex; flex-direction: column; gap: 2rem; position: sticky; top: calc(var(--nav-height) + 2rem); }

.sidebar-widget { background: var(--white); padding: 1.8rem; border-top: 3px solid var(--gold); }
.sidebar-widget--search { padding: 1.4rem 1.8rem; }

.sidebar-widget__title { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 1.2rem; }

.sidebar-search { display: flex; }

.sidebar-search__input { flex: 1; border: 1px solid var(--cream-dark); border-right: none; padding: 10px 14px; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; outline: none; color: var(--charcoal); background: var(--white); transition: border-color var(--transition); }
.sidebar-search__input:focus { border-color: var(--gold); }

.sidebar-search__btn { width: 44px; background: var(--gold); border: 1px solid var(--gold); color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background var(--transition); }
.sidebar-search__btn:hover { background: var(--gold-light); border-color: var(--gold-light); }

.sidebar-cats { list-style: none; margin: 0; padding: 0; }

.sidebar-cats__item a { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid var(--cream-dark); color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.sidebar-cats__item a:hover,
.sidebar-cats__item.is-active a { color: var(--gold); }

.sidebar-cats__count { background: var(--cream-dark); color: var(--text-muted); font-family: 'Montserrat', sans-serif; font-size: 0.6rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; min-width: 28px; text-align: center; }
.sidebar-cats__item.is-active .sidebar-cats__count,
.sidebar-cats__item a:hover .sidebar-cats__count { background: var(--gold); color: var(--white); }

.sidebar-recent { list-style: none; margin: 0; padding: 0; }

.sidebar-recent__item { display: flex; gap: 0.8rem; align-items: flex-start; padding: 0.8rem 0; border-bottom: 1px solid var(--cream-dark); }
.sidebar-recent__item:last-child { border-bottom: none; }

.sidebar-recent__thumb { flex-shrink: 0; overflow: hidden; width: 60px; height: 60px; }
.sidebar-recent__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.sidebar-recent__thumb:hover img { transform: scale(1.08); }

.sidebar-recent__title { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--forest); line-height: 1.4; margin-bottom: 0.25rem; transition: color var(--transition); }
.sidebar-recent__title:hover { color: var(--gold); }

.sidebar-recent__date { font-size: 0.72rem; color: var(--text-muted); font-family: 'Montserrat', sans-serif; letter-spacing: 0.08em; }

.sidebar-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.sidebar-tag { display: inline-block; padding: 5px 12px; border: 1px solid var(--cream-dark); color: var(--text-muted); font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; background: var(--white); transition: all var(--transition); }
.sidebar-tag:hover,
.sidebar-tag.is-active { background: var(--gold); border-color: var(--gold); color: var(--white); }

.sidebar-cta { background: var(--forest); border-top-color: var(--gold); }
.sidebar-cta .section-label { margin-bottom: 0.5rem; }
.sidebar-cta__heading { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--white); margin-bottom: 0.7rem; line-height: 1.3; }
.sidebar-cta__text { font-size: 0.85rem; color: rgba(247,242,234,0.6); line-height: 1.65; margin-bottom: 1.3rem; }

/* ============================================================
   BLOG â€” Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .blog-archive__layout  { grid-template-columns: 1fr 280px; gap: 3rem; }
  .single-post-layout    { grid-template-columns: 1fr 260px; gap: 3rem; }
}

@media (max-width: 900px) {
  .blog-archive__layout,
  .single-post-layout    { grid-template-columns: 1fr; }
  .blog-archive__sidebar,
  .single-post__sidebar  { position: static; }
  .blog-sidebar          { position: static; }
  .blog-card--featured   { grid-template-columns: 1fr; }
  .blog-card--featured .blog-card__image-wrap { height: 240px; }
  .post-nav              { grid-template-columns: 1fr; }
  .related-grid          { grid-template-columns: repeat(2, 1fr); }
  .blog-grid             { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .archive-hero          { padding: 4.5rem 0 3rem; }
  .post-hero             { padding: 4rem 0 3rem; }
  .post-hero--has-image  { min-height: 320px; }
  .post-hero__title      { font-size: 1.6rem; }
  .related-grid          { grid-template-columns: 1fr; }
  .author-box            { flex-direction: column; }
  .post-nav__item--next  { justify-content: flex-start; text-align: left; }
  .blog-pagination .nav-links { justify-content: center; }
}
