/* ================================================================
   SUIMAS RENOVATION — INTERNATIONAL LUXURY DESIGN SYSTEM v3.0
   Inspired by: AD Magazine · Kelly Wearstler · Architectural Firms
   ================================================================ */

/* ── 1. DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* ─── COLOUR PALETTE: ORANGE + GREEN (brand palette) ─── */

  /* Primary accent — rich burnt orange */
  --gold:       #E07B27;
  --gold-lt:    #F09040;
  --gold-pale:  #FAD5A8;
  --gold-dk:    #B85E10;

  /* Secondary accent — deep forest green */
  --green:      #2E7D52;
  --green-lt:   #3D9E68;
  --green-dk:   #1D5236;
  --green-pale: #D4EBE0;

  /* Neutrals — dark greens replace black */
  --ink:        #0B1F14;   /* deep forest green replaces black */
  --ink-2:      #102A1C;   /* slightly lighter dark green */
  --ink-3:      #1A3D2A;   /* medium dark green */
  --stone:      #EDE8E0;
  --cream:      #F7F5F0;
  --off-white:  #FAFAF8;
  --white:      #FFFFFF;
  --muted:      #637570;
  --subtle:     #95A89E;
  --border:     #DDE8E2;
  --border-dk:  rgba(255,255,255,0.08);

  /* ─── SEMANTIC ALIASES (theme uses --gold, so alias it to orange) ─── */
  /* All existing --gold references now render orange automatically.     */
  /* --green is available for secondary highlights throughout.           */

  /* ─── LEGACY ALIASES (for inner page inline styles) ─── */
  --mid:       #637570;
  --light:     #F7F5F0;
  --dark:      #0B1F14;
  --font-head: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Inter', system-ui, sans-serif;

  /* Typography */
  --serif:      'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:       'DM Sans', 'Inter', system-ui, sans-serif;

  /* Motion */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --fast:       0.22s;
  --mid-speed:  0.45s;
  --slow:       0.75s;

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   32px;
  --space-xl:   64px;
  --space-2xl:  120px;

  /* Layout */
  --max-w:      1360px;
  --gutter:     clamp(20px, 4vw, 48px);
}

/* ── 2. BASE & RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}


a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: var(--white); }

/* ── 4. LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.section-pad   { padding-block: var(--space-2xl); }
.section-pad-sm{ padding-block: 80px; }
.section-pad-lg{ padding-block: 160px; }

/* ── 5. TYPOGRAPHY SYSTEM ─────────────────────────────────────── */
.display-xl {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.display-lg {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.025em;
}

.display-md {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-sm {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
}

.label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lg  { font-size: 1.1rem; line-height: 1.85; color: var(--muted); }
.body-md  { font-size: 0.97rem; line-height: 1.80; color: var(--muted); }
.body-sm  { font-size: 0.85rem; line-height: 1.75; color: var(--subtle); }

/* Section eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow-light { color: rgba(224,123,39,0.80); }
.eyebrow-light::before { background: rgba(224,123,39,0.80); }

/* ── 6. BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  transition: color var(--fast), background var(--fast), border-color var(--fast), transform var(--mid-speed) var(--ease-out), box-shadow var(--mid-speed) var(--ease-out);
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--fast);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Orange filled (primary CTA) */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
  box-shadow: 0 16px 40px rgba(224,123,39,0.32);
}

/* Green filled (secondary CTA) */
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
  box-shadow: 0 16px 40px rgba(46,125,82,0.32);
}

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

/* Dark filled */
.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--ink-3);
  border-color: var(--ink-3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

/* Outline on dark bg */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.40);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

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

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

/* White filled */
.btn-white {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.btn-full { width: 100%; justify-content: center; }

/* Icon button */
.btn-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  padding: 0;
  justify-content: center;
  font-size: 1rem;
}

/* Text link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  transition: gap var(--mid-speed) var(--ease-out), color var(--fast);
}
.link-arrow::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--mid-speed) var(--ease-out);
}
.link-arrow:hover { gap: 14px; color: var(--gold); }
.link-arrow:hover::after { transform: scaleX(1); transform-origin: left; }

.link-arrow-light { color: rgba(255,255,255,0.70); }
.link-arrow-light:hover { color: var(--white); }

/* ── 7. TOP ANNOUNCEMENT BAR ─────────────────────────────────── */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar i { color: var(--gold); margin-right: 6px; font-size: 0.75rem; }
.topbar-right { display: flex; gap: 28px; flex-wrap: wrap; }
.topbar a {
  color: rgba(255,255,255,0.55);
  transition: color var(--fast);
}
.topbar a:hover { color: var(--gold-lt); }

/* ── 8. SITE HEADER ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--mid-speed), border-color var(--mid-speed);
}

.site-header.scrolled {
  box-shadow: 0 1px 40px rgba(0,0,0,0.08);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.logo-mark {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}

.logo-sub {
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav */
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-nav a {
  padding: 8px 18px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color var(--fast);
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--mid-speed) var(--ease-out);
}

.primary-nav a:hover,
.primary-nav a.active { color: var(--ink); }

.primary-nav a:hover::after,
.primary-nav a.active::after { transform: scaleX(1); }

/* CTA nav link */
.primary-nav .nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 10px 26px;
  letter-spacing: 0.14em;
  margin-left: 10px;
  transition: background var(--fast), box-shadow var(--mid-speed) var(--ease-out);
}
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover {
  background: var(--gold);
  box-shadow: 0 8px 28px rgba(224,123,39,0.28);
}

/* Hamburger */
.nav-toggle {
  display: none;
  padding: 8px;
  color: var(--ink);
  font-size: 1.2rem;
  border: 1.5px solid var(--border);
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  transition: border-color var(--fast), color var(--fast);
}
.nav-toggle:hover { border-color: var(--ink); }

/* ── 9. HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.88) 42%, rgba(8,8,8,0.56) 72%, rgba(8,8,8,0.32) 100%),
    url('../images/hero-renovated-interior.webp') center right / cover no-repeat,
    var(--ink);
  overflow: hidden;
}

/* Architectural background grid */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(224,123,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,123,39,0.04) 1px, transparent 1px);
  background-size: 100px 100px;
}

/* Radial glow */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 70% at 8% 50%, rgba(224,123,39,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 92% 10%, rgba(224,123,39,0.07) 0%, transparent 55%);
}

/* Noise texture overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Diagonal accent line */
.hero-diagonal {
  position: absolute;
  top: 0; bottom: 0;
  right: 38%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 10%, rgba(224,123,39,0.25) 50%, transparent 90%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: clamp(80px, 10vh, 140px) 0;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: end;
}

/* Badge */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-kicker-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

/* Main heading */
.hero-heading {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 9vw, 8.5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 40px;
}

.hero-heading em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtext */
.hero-body {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Right column: stats panel */
.hero-sidebar {
  padding-bottom: 8px;
}

.hero-sidebar-inner {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-stat {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat:first-child { padding-top: 0; }

.hero-stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  display: block;
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-top: 6px;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.30);
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(224,123,39,0.50));
  animation: scroll-line 2.4s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: top; }
  61%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.hero-scroll-label {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ── 10. MARQUEE TICKER ───────────────────────────────────────── */
.marquee-strip {
  border-top: 1px solid var(--green-dk);
  border-bottom: 1px solid var(--green-dk);
  background: var(--green);
  overflow: hidden;
  padding: 13px 0;
}

.marquee-track {
  display: flex;
  animation: marquee-scroll 35s linear infinite;
  white-space: nowrap;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 48px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
}

.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.50);
  flex-shrink: 0;
}

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

/* ── 11. SECTION DIVIDER ─────────────────────────────────────── */
.rule {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.rule-gold {
  width: 48px;
  height: 2px;
  background: var(--gold);
}

/* ── 12. ABOUT / INTRO SECTION ───────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.about-media-side {
  position: relative;
  overflow: hidden;
}

.about-media-img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0B1F14 0%, #0F2D1A 100%);
  font-size: 8rem;
  color: rgba(224,123,39,0.15);
  transition: transform 0.8s var(--ease-out);
}

.about-media-side:hover .about-media-img { transform: scale(1.03); }
.about-media-img img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; display: block; }

/* Floating badge on image */
.about-float-badge {
  position: absolute;
  bottom: 40px;
  right: -28px;
  background: var(--green);
  color: var(--white);
  padding: 28px 36px;
  z-index: 4;
  box-shadow: 0 24px 60px rgba(224,123,39,0.35);
  text-align: center;
}

.badge-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}

.badge-text {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 6px;
  display: block;
}

.about-text-side {
  padding: clamp(50px, 6vw, 90px) clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.about-text-side h2 { margin-bottom: 20px; }
.about-text-side p { color: var(--muted); margin-bottom: 20px; font-size: 1.0rem; line-height: 1.82; }

.about-feature-list {
  margin: 28px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.about-feature-item:last-child { border-bottom: none; }

.feature-check {
  width: 20px; height: 20px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-check i {
  font-size: 0.6rem;
  color: var(--gold);
}

/* ── 13. NUMBERS / STATS BAR ─────────────────────────────────── */
.stats-bar {
  background: var(--ink);
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 56px 44px;
  border-right: 1px solid var(--border-dk);
  position: relative;
  transition: background var(--mid-speed);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(224,123,39,0.04); }

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background var(--mid-speed);
}
.stat-item:nth-child(odd):hover::before  { background: var(--gold); }
.stat-item:nth-child(even):hover::before { background: var(--green); }

.stat-value {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── 14. SERVICES ────────────────────────────────────────────── */
.services-section { background: var(--off-white); }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.services-header-left h2 { max-width: 520px; }

.services-header-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

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

.service-card {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  background: var(--white);
  overflow: hidden;
  transition: background var(--mid-speed);
}

/* Remove extra borders on last column/row */
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-last-child(-n+3):not(:nth-child(3n+1)),
.service-card:nth-last-child(-n+3):not(:nth-child(3n+2)),
.service-card:nth-last-child(1),
.service-card:nth-last-child(2),
.service-card:nth-last-child(3) { border-bottom: none; }

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

.service-card-media {
  height: 190px;
  margin: -40px -36px 28px;
  overflow: hidden;
  background: var(--ink-2);
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.service-card-photo:hover .service-card-media img { transform: scale(1.06); }
.service-card-photo .service-card-num {
  z-index: 2;
  color: rgba(255,255,255,0.90);
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.service-card-photo:hover .service-card-num { color: var(--white); }

/* Hover fill bar */
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--mid-speed) var(--ease-out);
}
.service-card:hover::before { transform: scaleY(1); }

.service-card-num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(224,123,39,0.08);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  letter-spacing: -0.04em;
  pointer-events: none;
  transition: color var(--mid-speed);
}
.service-card:hover .service-card-num { color: rgba(224,123,39,0.14); }

.service-icon-box,
.service-icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(224,123,39,0.12), rgba(224,123,39,0.04));
  border: 1px solid rgba(224,123,39,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 24px;
  transition: background var(--mid-speed), border-color var(--mid-speed);
}
.service-card:hover .service-icon-box,
.service-card:hover .service-icon-wrap {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.25;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 24px;
}

/* ── 15. PROCESS TIMELINE ────────────────────────────────────── */
.process-section { background: var(--ink); }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 72px;
}

/* Connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,123,39,0.30) 20%, rgba(224,123,39,0.30) 80%, transparent);
}

.process-step {
  padding: 0 40px 56px 0;
  position: relative;
}

.process-step-dot {
  width: 56px; height: 56px;
  border: 1px solid rgba(224,123,39,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  background: var(--ink);
  transition: background var(--mid-speed), border-color var(--mid-speed);
}
.process-step:nth-child(odd):hover .process-step-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.process-step:nth-child(even):hover .process-step-dot {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.process-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.78;
}

/* ── 16. PORTFOLIO ───────────────────────────────────────────── */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 44px;
}

.portfolio-filter {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}

.filter-btn {
  padding: 9px 22px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-right: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: background var(--fast), color var(--fast);
}
.filter-btn:last-child { border-right: none; }
.filter-btn:hover, .filter-btn.active {
  background: var(--ink);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

/* Large item */
.portfolio-item-lg {
  grid-column: span 7;
  grid-row: span 2;
}
/* Medium item */
.portfolio-item-md {
  grid-column: span 5;
  grid-row: span 1;
}
/* Square item */
.portfolio-item-sm {
  grid-column: span 4;
  grid-row: span 1;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  height: 100%;
}

.portfolio-img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0B1F14, #0F2D1A);
  font-size: 4rem;
  color: rgba(224,123,39,0.18);
  transition: transform 0.7s var(--ease-out);
}

.portfolio-item-lg .portfolio-img-fill { font-size: 7rem; }

.portfolio-card:hover .portfolio-img-fill { transform: scale(1.06); }
.portfolio-img-fill img { width: 100%; height: 100%; object-fit: cover; display: block; }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.88) 0%,
    rgba(8, 8, 8, 0.40) 45%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--mid-speed), transform var(--mid-speed) var(--ease-out);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(to top, rgba(8,8,8,0.94) 0%, rgba(8,8,8,0.44) 52%, transparent 100%);
}

.portfolio-cat-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.portfolio-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 8px;
}

.portfolio-loc-tag {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.50);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── 17. TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 64px;
}

.testimonial-card {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  background: var(--white);
  transition: background var(--mid-speed);
}
.testimonial-card:last-child { border-right: none; }
.testimonial-card:hover { background: var(--off-white); }

.testimonial-quote-mark {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.7;
  color: rgba(224,123,39,0.10);
  display: block;
  margin-bottom: 20px;
  font-weight: 300;
  user-select: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.testimonial-stars i { color: var(--gold); font-size: 0.72rem; }

.testimonial-body {
  font-family: var(--serif);
  font-size: 1.07rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-3);
  line-height: 1.80;
  margin-bottom: 32px;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}
.testimonial-role {
  font-size: 0.76rem;
  color: var(--subtle);
  margin-top: 2px;
}

/* ── 18. CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background:
    linear-gradient(90deg, rgba(8,8,8,0.96), rgba(8,8,8,0.82)),
    url('../images/hero-renovated-interior.webp') center / cover no-repeat,
    var(--ink);
  position: relative;
  overflow: hidden;
}

.cta-band-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224,123,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,123,39,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.cta-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.cta-sub {
  color: rgba(255,255,255,0.50);
  font-size: 1rem;
  max-width: 440px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

/* Aliases for inner page templates */
.cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; padding: 80px 0; }
.cta-text h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 300; color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-text p  { color: rgba(255,255,255,0.50); font-size: 1rem; max-width: 420px; line-height: 1.75; }

/* Gold accent line beside CTA heading */
.cta-accent-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

/* ── 19. BLOG CARDS ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 64px;
}

.post-card {
  border-right: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: background var(--mid-speed);
}
.post-card:last-child { border-right: none; }
.post-card:hover { background: var(--off-white); }

.post-thumb {
  height: 240px;
  overflow: hidden;
}

.post-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0B1F14, #0F2D1A);
  font-size: 3rem;
  color: rgba(224,123,39,0.25);
  transition: transform 0.6s var(--ease-out);
}
.post-card:hover .post-thumb-img { transform: scale(1.05); }
.post-thumb-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-list-thumb img,
.recent-post-thumb img,
.post-thumb > img { width: 100%; height: 100%; object-fit: cover; display: block; }

.post-body { padding: 32px; }

.post-cat-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.post-title-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--ink);
  transition: color var(--fast);
}
.post-card:hover .post-title-text { color: var(--gold); }

.post-excerpt-text {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 22px;
}

.post-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.post-meta-row i { color: var(--gold); }

/* ── 20. CONTACT SECTION ─────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  border: 1px solid var(--border);
}

.contact-info-panel {
  padding: clamp(44px, 6vw, 80px);
  background: var(--cream);
  border-right: 1px solid var(--border);
}

.contact-info-panel h2 { margin-bottom: 16px; }
.contact-info-panel > p { color: var(--muted); margin-bottom: 48px; font-size: 1.0rem; line-height: 1.82; }

.contact-details,
.contact-detail-list { display: flex; flex-direction: column; gap: 32px; margin-bottom: 48px; }

.contact-detail,
.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child,
.contact-detail-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-icon-box,
.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail-label,
.contact-detail-item h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 8px;
  font-family: var(--sans);
}

.contact-detail-value,
.contact-detail-item a,
.contact-detail-item span {
  display: block;
  font-size: 0.93rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.6;
  transition: color var(--fast);
}
.contact-detail-value:is(a):hover,
.contact-detail-item a:hover { color: var(--gold); }

.contact-social,
.contact-social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.social-btn,
.social-icon {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--muted);
  transition: background var(--fast), border-color var(--fast), color var(--fast), transform var(--mid-speed) var(--ease-out);
}
.social-btn:hover,
.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.social-icon[aria-label="WhatsApp"]:hover { background: #25D366; border-color: #25D366; }

/* Contact form panel */
.contact-form-panel {
  padding: clamp(44px, 6vw, 80px);
  background: var(--white);
}

.contact-form-panel h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.15;
}

.form-grid-2,
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.form-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink);
  font-size: 0.95rem;
  border-radius: 0;
  outline: none;
  transition: border-color var(--fast), box-shadow var(--fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224,123,39,0.08);
}

.form-input::placeholder { color: var(--subtle); }

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

.form-note-text,
.form-note {
  font-size: 0.75rem;
  color: var(--subtle);
  text-align: center;
  margin-top: 14px;
}

.form-note-text i { color: var(--gold); margin-right: 4px; }

.form-success-msg {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.22);
  color: #15803d;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}
.form-success-msg.visible { display: block; }

/* ── 21. PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background:
    linear-gradient(90deg, rgba(8,8,8,0.94) 0%, rgba(8,8,8,0.82) 52%, rgba(8,8,8,0.52) 100%),
    url('../images/hero-renovated-interior.webp') center / cover no-repeat,
    var(--ink);
  padding: 100px 0 70px;
  min-height: 390px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224,123,39,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,123,39,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.page-hero-inner,
.page-hero-content { position: relative; z-index: 2; }

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.82;
}

body.page-template-page-about .page-hero {
  background-image: linear-gradient(90deg, rgba(8,8,8,0.95), rgba(8,8,8,0.60)), url('../images/about-suimas-team.webp');
  background-position: center 42%;
}
body.page-template-page-services .page-hero {
  background-image: linear-gradient(90deg, rgba(8,8,8,0.95), rgba(8,8,8,0.56)), url('../images/service-extension.webp');
}
body.page-template-page-interior .page-hero {
  background-image: linear-gradient(90deg, rgba(8,8,8,0.95), rgba(8,8,8,0.54)), url('../images/portfolio-living-room.webp');
}
body.post-type-archive-portfolio .page-hero {
  background-image: linear-gradient(90deg, rgba(8,8,8,0.94), rgba(8,8,8,0.52)), url('../images/portfolio-full-home.webp');
}
body.page-template-page-contact .page-hero {
  background-image: linear-gradient(90deg, rgba(8,8,8,0.90), rgba(8,8,8,0.38)), url('../images/contact-consultation.webp');
  background-position: center;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,0.50); transition: color var(--fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.55rem; }

/* ── 22. FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--ink-2); }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 60px;
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border-dk);
}

/* Footer brand column */
.footer-brand .site-logo { margin-bottom: 22px; }
.footer-brand .logo-mark { color: var(--white); }
.footer-brand > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.40);
  line-height: 1.80;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-social-row { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.40);
  transition: background var(--fast), border-color var(--fast), color var(--fast);
}
.footer-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-social-btn--wa:hover {
  background: #25D366;
  border-color: #25D366;
}

/* Footer columns */
.footer-col-title {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-dk);
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.40);
  transition: color var(--fast);
}
.footer-col a:hover { color: var(--gold-lt); }

/* Footer contact col */
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.40);
  line-height: 1.55;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a { color: rgba(255,255,255,0.40); transition: color var(--fast); }
.footer-contact-item a:hover { color: var(--gold); }

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(224,123,39,0.70); transition: color var(--fast); }
.footer-bottom a:hover { color: var(--gold); }

/* ── 23. WHATSAPP & BACK TO TOP ──────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 9000;
  box-shadow: 0 8px 28px rgba(37,211,102,0.40);
  transition: transform var(--mid-speed) var(--ease-out), box-shadow var(--mid-speed) var(--ease-out);
}
.whatsapp-fab:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.55);
}

.back-to-top {
  position: fixed;
  bottom: 100px; right: 32px;
  width: 44px; height: 44px;
  background: var(--ink);
  border: 1px solid var(--border-dk);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 9000;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--fast), transform var(--mid-speed) var(--ease-out), background var(--fast);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { background: var(--gold); border-color: var(--gold); }

/* ── 24. SCROLL REVEAL SYSTEM ────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.80s var(--ease-out),
    transform 0.80s var(--ease-out);
}

[data-reveal="up"]   { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"]{ transform: translateX(40px); }
[data-reveal="fade"] { transform: none; }
[data-reveal="scale"]{ transform: scale(0.95); }

[data-reveal].revealed { opacity: 1; transform: none !important; }

[data-delay="1"],  [data-reveal-delay="1"] { transition-delay: 0.10s; }
[data-delay="2"],  [data-reveal-delay="2"] { transition-delay: 0.20s; }
[data-delay="3"],  [data-reveal-delay="3"] { transition-delay: 0.30s; }
[data-delay="4"],  [data-reveal-delay="4"] { transition-delay: 0.40s; }
[data-delay="5"],  [data-reveal-delay="5"] { transition-delay: 0.52s; }
[data-delay="6"],  [data-reveal-delay="6"] { transition-delay: 0.64s; }

/* ── 25. BLOG / SINGLE POST ──────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: start;
  padding: 80px 0;
}

.blog-sidebar { display: flex; flex-direction: column; gap: 32px; }

.sidebar-card {
  border: 1px solid var(--border);
  padding: 28px;
  background: var(--white);
}

.sidebar-title {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.sidebar-cta-card {
  background: var(--ink);
  border-color: var(--ink);
  text-align: center;
  padding: 36px 28px;
}

.recent-post-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.recent-post-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.recent-post-thumb {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #0B1F14, #0F2D1A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(224,123,39,0.30);
  flex-shrink: 0;
}

.recent-post-title {
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  transition: color var(--fast);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recent-post-title:hover { color: var(--gold); }

.recent-post-date {
  font-size: 0.72rem;
  color: var(--subtle);
  margin-top: 4px;
  display: block;
}

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all var(--fast);
}
.tag-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Single post content */
.post-content-wrap {
  font-size: 1.05rem;
  line-height: 1.88;
  color: var(--ink-3);
}

.post-content-wrap h2 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  margin: 48px 0 18px;
  line-height: 1.15;
}

.post-content-wrap h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 36px 0 14px;
}

.post-content-wrap p { margin-bottom: 22px; }

.post-content-wrap ul {
  margin: 22px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-content-wrap ul li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
  font-size: 1.0rem;
}

.post-content-wrap ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── 25b. BLOG INDEX + SINGLE PAGE (legacy class aliases) ──────── */

/* Blog hero banner */
.blog-hero {
  background:
    linear-gradient(rgba(8,8,8,0.86), rgba(8,8,8,0.82)),
    url('../images/blog-renovation-planning.webp') center / cover no-repeat,
    var(--ink);
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.blog-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224,123,39,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,123,39,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.blog-hero .container { position: relative; z-index: 2; }
.blog-hero h1 { font-family: var(--serif); font-size: clamp(2.4rem,5vw,4.5rem); font-weight: 300; color: var(--white); letter-spacing: -0.03em; margin-bottom: 16px; }
.blog-hero p  { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 540px; margin: 0 auto; line-height: 1.82; }

/* Single post hero */
.single-post-hero {
  background:
    linear-gradient(90deg, rgba(8,8,8,0.94), rgba(8,8,8,0.66)),
    url('../images/blog-before-after.webp') center / cover no-repeat,
    var(--ink);
  padding: 90px 0 60px;
  position: relative;
}
.single-post-hero h1 { font-family: var(--serif); font-size: clamp(2rem,4.5vw,3.6rem); font-weight: 300; color: var(--white); letter-spacing: -0.025em; line-height: 1.1; margin: 16px 0 20px; }
.single-post-meta  { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; font-size: 0.80rem; color: rgba(255,255,255,0.45); }
.single-post-meta i { color: var(--gold); margin-right: 6px; }

/* Single post content typography */
.single-post-content { font-size: 1.05rem; line-height: 1.88; color: var(--ink-3); }
.single-post-content h2 { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; margin: 48px 0 18px; line-height: 1.15; }
.single-post-content h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin: 36px 0 14px; }
.single-post-content p  { margin-bottom: 22px; }
.single-post-content ul { margin: 22px 0; padding-left: 20px; list-style: disc; display: block; }
.single-post-content ul li { margin-bottom: 8px; color: var(--muted); }
.single-post-content a  { color: var(--gold); text-decoration: underline; }
.single-post-content img { max-width: 100%; height: auto; margin: 24px 0; }

/* Blog posts list (index.php) */
.blog-posts-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }

.post-list-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  transition: background var(--fast);
}
.post-list-item:last-child { border-bottom: none; }
.post-list-item:hover { background: var(--cream); }

.post-list-thumb {
  background: linear-gradient(135deg, #0B1F14, #0F2D1A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(224,123,39,0.18);
  overflow: hidden;
  min-height: 220px;
}
.post-list-thumb img { width: 100%; height: 100%; object-fit: cover; }

.post-list-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-list-body p { color: var(--muted); font-size: 0.93rem; line-height: 1.75; margin: 12px 0; }

/* Post card shared classes (used in both index and single related posts) */
.post-cat          { display: inline-block; font-size: 0.60rem; font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.post-title        { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; line-height: 1.2; color: var(--ink); }
.post-title a:hover { color: var(--gold); transition: color var(--fast); }
.post-meta         { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.76rem; color: var(--subtle); margin-top: 12px; }
.post-meta i       { color: var(--gold); margin-right: 5px; }

/* single.php related post card (post-thumb / post-body inside post-card) */
.post-thumb     { height: 220px; overflow: hidden; background: linear-gradient(135deg, #0B1F14, #0F2D1A); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: rgba(224,123,39,0.18); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body      { padding: 28px; }
.post-body .post-title { font-size: 1.05rem; }
.post-excerpt   { font-size: 0.88rem; color: var(--muted); line-height: 1.70; margin: 10px 0; }

/* service-link used in index.php (alias for link-arrow) */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--fast), color var(--fast);
}
.service-link:hover { gap: 12px; color: var(--gold-dk); }

/* Sidebar widget (alias for sidebar-card) */
.sidebar-widget {
  border: 1px solid var(--border);
  padding: 28px;
  background: var(--white);
}

.widget-title {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: block;
}

/* Recent posts list in sidebar (alias for recent-post-row) */
.recent-posts-list { display: flex; flex-direction: column; gap: 0; }

.recent-post-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.recent-post-item:last-child { border-bottom: none; }
.recent-post-item .recent-post-thumb { width: 60px; height: 60px; font-size: 1rem; flex-shrink: 0; }
.recent-post-item h5 { font-size: 0.86rem; font-weight: 600; line-height: 1.4; color: var(--ink); }
.recent-post-item h5 a:hover { color: var(--gold); transition: color var(--fast); }
.recent-post-item span { font-size: 0.72rem; color: var(--subtle); margin-top: 4px; display: block; }

/* tag-cloud links (in sidebar) */
.tag-cloud a {
  display: inline-block;
  padding: 5px 13px;
  border: 1.5px solid var(--border);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all var(--fast);
}
.tag-cloud a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* btn-outline alias (used in single.php prev/next navigation) */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1.5px solid var(--border);
  color: var(--ink);
  transition: border-color var(--fast), background var(--fast), color var(--fast);
}
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }

/* ── 26. ABOUT PAGE TEAM ─────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 64px;
}

.team-card {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  transition: background var(--mid-speed);
}
.team-card:nth-child(4n) { border-right: none; }
.team-card:nth-last-child(-n+4) { border-bottom: none; }
.team-card:hover { background: var(--cream); }

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto 20px;
  font-weight: 400;
}

.team-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── 27. INTERIOR DESIGN PAGE ────────────────────────────────── */
.interior-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.interior-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.interior-card:nth-child(even) { border-right: none; }
.interior-card:nth-last-child(-n+2) { border-bottom: none; }

.interior-card-img {
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0B1F14, #0F2D1A);
  font-size: 5rem;
  color: rgba(224,123,39,0.18);
  overflow: hidden;
  transition: transform 0.65s var(--ease-out);
}
.interior-card:hover .interior-card-img { transform: scale(1.04); }
.interior-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.service-detail-media {
  height: 400px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink-2);
  box-shadow: 0 18px 48px rgba(8,8,8,0.12);
}
.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.service-detail-media:hover img { transform: scale(1.035); }

.service-detail-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(40px,6vw,84px);
  align-items: center;
  margin-bottom: 100px;
}
.service-detail-row:last-child { margin-bottom: 0; }

.value-grid,
.difference-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-grid .service-card { border: 1px solid var(--border); border-radius: 12px; }
.difference-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 36px 28px;
  color: var(--white);
  transition: transform var(--mid-speed) var(--ease-out), border-color var(--fast), background var(--fast);
}
.difference-card:hover { transform: translateY(-6px); border-color: rgba(224,123,39,0.42); background: rgba(224,123,39,0.07); }

.interior-card-body {
  padding: 32px 36px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.interior-card-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.interior-card-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ── 28. PORTFOLIO PAGE ──────────────────────────────────────── */
.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.portfolio-full-item {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.portfolio-full-item:nth-child(3n) { border-right: none; }
.portfolio-full-item:nth-last-child(-n+3) { border-bottom: none; }

.portfolio-full-img {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0B1F14, #0F2D1A);
  font-size: 4.5rem;
  color: rgba(224,123,39,0.18);
  transition: transform 0.7s var(--ease-out);
}
.portfolio-full-item:hover .portfolio-full-img { transform: scale(1.05); }

.portfolio-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.90) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity var(--mid-speed);
}
.portfolio-full-item:hover .portfolio-full-overlay { opacity: 1; }

/* ── 29. PAGE-SPECIFIC: SERVICES ─────────────────────────────── */
.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 48px;
  overflow: hidden;
}

.service-detail-item:nth-child(even) { direction: rtl; }
.service-detail-item:nth-child(even) > * { direction: ltr; }

.service-detail-media {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0B1F14, #0F2D1A);
  font-size: 6rem;
  color: rgba(224,123,39,0.15);
  overflow: hidden;
  transition: transform 0.65s var(--ease-out);
}
.service-detail-item:hover .service-detail-media { transform: scale(1.02); }

.service-detail-body {
  padding: 52px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin-bottom: 10px;
}

.service-detail-body .sub-italic {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.service-detail-body p { color: var(--muted); font-size: 0.95rem; line-height: 1.80; margin-bottom: 24px; }

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 0 32px;
}

.service-feature-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 500;
}
.service-feature-row:last-child { border-bottom: none; }
.service-feature-row i { color: var(--gold); font-size: 0.7rem; }

/* ── 30. FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); margin-top: 48px; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  gap: 20px;
  transition: background var(--fast), color var(--fast);
}
.faq-question:hover, .faq-item.open .faq-question { background: var(--cream); color: var(--gold); }
.faq-question i { flex-shrink: 0; font-size: 0.8rem; transition: transform var(--mid-speed) var(--ease-out); }
.faq-item.open .faq-question i { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.80;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ── 31. MAP / LOCATION BLOCK ────────────────────────────────── */
.location-block {
  background: linear-gradient(160deg, #0B1F14, #0F2D1A);
  border: 1px solid var(--border);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.location-section { background: var(--cream); padding: 72px 0; }
.location-block-photo {
  min-height: 420px;
  height: auto;
  padding: 56px 24px;
  color: var(--white);
  border: none;
  background:
    linear-gradient(rgba(8,8,8,0.42), rgba(8,8,8,0.82)),
    url('../images/portfolio-rooftop.webp') center / cover no-repeat;
  box-shadow: 0 24px 70px rgba(8,8,8,0.18);
}
.location-block-photo h3 { font-family: var(--serif); font-size: clamp(2rem,4vw,3.4rem); font-weight: 300; color: var(--white); }
.location-block-photo p { color: rgba(255,255,255,0.72); }
.location-kicker { display: inline-flex; gap: 9px; align-items: center; color: var(--gold-lt); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase; }

/* ── 32. 404 PAGE ────────────────────────────────────────────── */
.error-404-section {
  min-height: 80vh;
  background:
    linear-gradient(rgba(8,8,8,0.86), rgba(8,8,8,0.88)),
    url('../images/portfolio-full-home.webp') center / cover no-repeat,
    var(--ink);
  display: flex;
  align-items: center;
  text-align: center;
}
.error-404-content { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.error-404-content h1 { color: var(--white); font-size: clamp(2.2rem,5vw,4rem); margin-bottom: 16px; }
.error-404-content p { color: rgba(255,255,255,0.62); max-width: 520px; margin: 0 auto 36px; }
.error-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.page-featured-image,
.single-featured-fallback { margin: 0 0 44px; overflow: hidden; border-radius: 14px; box-shadow: 0 20px 60px rgba(8,8,8,0.12); }
.page-featured-image img,
.single-featured-fallback img { width: 100%; height: min(480px,52vw); min-height: 300px; object-fit: cover; display: block; }

.error-num {
  font-family: var(--serif);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold), var(--gold-dk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 28px;
}

/* ── 33. UTILITY CLASSES ──────────────────────────────────────── */
.text-center   { text-align: center; }
.text-gold     { color: var(--gold); }
.text-muted    { color: var(--muted); }
.text-white    { color: var(--white); }
.text-italic   { font-style: italic; }
.font-serif    { font-family: var(--serif); }
.bg-cream      { background: var(--cream); }
.bg-dark       { background: var(--ink); }
.bg-stone      { background: var(--stone); }
.mx-auto       { margin-inline: auto; }
.max-60        { max-width: 60ch; }
.max-72        { max-width: 72ch; }
.mt-auto       { margin-top: auto; }
.gap-8         { gap: 8px; }
.gap-16        { gap: 16px; }
.gap-24        { gap: 24px; }
.mt-32         { margin-top: 32px; }
.mt-48         { margin-top: 48px; }
.mt-64         { margin-top: 64px; }
.mb-16         { margin-bottom: 16px; }
.mb-32         { margin-bottom: 32px; }
.mb-48         { margin-bottom: 48px; }
.flex          { display: flex; }
.flex-col      { flex-direction: column; }
.align-end     { align-items: flex-end; }
.align-center  { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.flex-wrap     { flex-wrap: wrap; }
.w-full        { width: 100%; }
.relative      { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ── 34. LEGACY CLASS ALIASES ────────────────────────────────── */

/* About page (page-about.php) legacy classes */
.about-media         { position: relative; }
.about-main-img      { width: 100%; height: 420px; background: linear-gradient(135deg, #0B1F14, #0F2D1A); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.img-fill            { width: 100%; height: 100%; object-fit: cover; display: block; font-size: 7rem; color: rgba(224,123,39,0.15); }
.about-accent-box    { position: absolute; bottom: -24px; right: -24px; background: var(--green); color: var(--white); padding: 28px 32px; text-align: center; }
.about-accent-num    { display: block; font-family: var(--serif); font-size: 2.8rem; font-weight: 300; line-height: 1; }
.about-accent-label  { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 8px; opacity: 0.80; }
.about-text          { padding: clamp(50px, 6vw, 90px) clamp(40px, 5vw, 80px); }
.about-text h2       { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 20px; }
.about-text p        { color: var(--muted); margin-bottom: 20px; font-size: 1.0rem; line-height: 1.82; }
.about-list          { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.about-list li       { display: flex; align-items: flex-start; gap: 12px; font-size: 0.93rem; color: var(--ink); font-weight: 500; }
.about-list li i     { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

/* Numbers bar (about page stat counter strip) */
.numbers-bar         { background: var(--ink); padding: 60px 0; }
.numbers-grid        { display: grid; grid-template-columns: repeat(4, 1fr); }
.number-item         { text-align: center; padding: 32px 24px; border-right: 1px solid rgba(255,255,255,0.06); }
.number-item:last-child { border-right: none; }
.number-value        { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.number-label        { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase; color: rgba(255,255,255,0.40); }

/* Portfolio page (page-portfolio.php) legacy classes */
.portfolio-item      { position: relative; overflow: hidden; cursor: pointer; border: 1px solid var(--border); border-top: none; border-left: none; }
.portfolio-item:first-child { border-left: 1px solid var(--border); }
.portfolio-item.large .portfolio-img { height: 560px; }
.portfolio-img       { width: 100%; height: 320px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0B1F14, #0F2D1A); font-size: 4rem; color: rgba(224,123,39,0.18); overflow: hidden; transition: transform 0.65s var(--ease-out); }
.portfolio-img img   { width: 100%; height: 100%; object-fit: cover; display: block; }
.portfolio-item:hover .portfolio-img { transform: scale(1.04); }
.portfolio-item .portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.20) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; opacity: 1; transition: opacity 0.4s, background 0.4s; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat       { display: inline-block; background: var(--gold); color: var(--white); font-size: 0.60rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 4px 10px; margin-bottom: 10px; }
.portfolio-title     { font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.portfolio-loc       { font-size: 0.78rem; color: rgba(255,255,255,0.60); display: flex; align-items: center; gap: 6px; }

body.post-type-archive-portfolio .portfolio-grid {
  grid-template-columns: repeat(3,minmax(0,1fr));
  grid-auto-rows: auto;
  gap: 16px;
}
body.post-type-archive-portfolio .portfolio-item { min-width: 0; border: none; border-radius: 12px; }
body.post-type-archive-portfolio .portfolio-item.large { grid-column: span 2; grid-row: span 2; }

/* Section intro text */
.section-intro       { font-size: 1rem; color: var(--muted); line-height: 1.80; max-width: 600px; }

/* ── 35. RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-content        { grid-template-columns: 1fr; }
  .hero-sidebar        { display: none; }
  .services-header     { grid-template-columns: 1fr; }
  .services-header-right { align-items: flex-start; }
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .process-timeline    { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .process-timeline::before { display: none; }
  .stats-bar-inner     { grid-template-columns: repeat(2, 1fr); }
  .footer-top          { grid-template-columns: 1fr 1fr; }
  .team-grid           { grid-template-columns: repeat(2, 1fr); }
  .team-card { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .team-card:nth-child(2n) { border-right: none; }
  .team-card:nth-last-child(-n+2) { border-bottom: none; }
  .value-grid, .difference-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .about-split         { grid-template-columns: 1fr; }
  .about-media-side,
  .about-media         { display: none; }
  .about-text-side,
  .about-text          { padding: 60px var(--gutter); }
  .cta-inner           { grid-template-columns: 1fr; gap: 40px; }
  .numbers-grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .testimonial-card    { border-right: none; border-bottom: 1px solid var(--border); }
  .testimonial-card:last-child { border-bottom: none; }
  .cta-band-inner      { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid           { grid-template-columns: 1fr; }
  .post-card           { border-right: none; border-bottom: 1px solid var(--border); }
  .post-card:last-child { border-bottom: none; }
  .contact-split       { grid-template-columns: 1fr; }
  .contact-info-panel  { border-right: none; border-bottom: 1px solid var(--border); }
  .service-detail-item { grid-template-columns: 1fr; direction: ltr !important; }
  .interior-grid       { grid-template-columns: 1fr; }
  .portfolio-grid      { grid-template-columns: repeat(2, 1fr); }
  .blog-layout         { grid-template-columns: 1fr; }
  .blog-sidebar        { display: grid; grid-template-columns: repeat(2, 1fr); }
  .post-list-item      { grid-template-columns: 200px 1fr; }
  .service-detail-row { grid-template-columns: 1fr; direction: ltr !important; margin-bottom: 80px; }
  body.post-type-archive-portfolio .portfolio-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  body.post-type-archive-portfolio .portfolio-item.large { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-toggle  { display: flex; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
    z-index: 999;
    padding: 20px;
  }
  .primary-nav.open   { display: block; }
  .primary-nav ul     { flex-direction: column; align-items: stretch; gap: 4px; }
  .primary-nav a      { display: block; padding: 13px 16px; border-bottom: 1px solid var(--border); }
  .primary-nav a:last-child { border-bottom: none; }
  .primary-nav .nav-cta { text-align: center; margin-top: 8px; }
  .primary-nav a::after { display: none; }
  .topbar-right { display: none; }
  .hero-heading { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }
  .portfolio-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .portfolio-item-lg,
  .portfolio-item-md,
  .portfolio-item-sm { grid-column: span 1; grid-row: span 1; }
  .portfolio-item-lg .portfolio-img-fill { height: 280px; font-size: 4rem; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .post-list-item { grid-template-columns: 1fr; }
  .post-list-thumb { min-height: 200px; }
  .contact-form-panel { padding: 36px 24px; }
  .contact-info-panel { padding: 44px 24px; }
  .service-detail-body { padding: 36px 28px; }
  .section-pad { padding-block: 72px; }
  .section-pad-lg { padding-block: 80px; }
  .page-hero { min-height: 330px; padding: 80px 0 56px; }
  .location-block-photo { min-height: 360px; }
  .value-grid, .difference-grid { grid-template-columns: 1fr; }
  body.post-type-archive-portfolio .portfolio-grid { grid-template-columns: 1fr; }
  body.post-type-archive-portfolio .portfolio-item.large { grid-column: span 1; }
}

@media (max-width: 480px) {
  .section-pad { padding-block: 56px; }
  .hero-heading { font-size: 2.8rem; }
  .stat-value   { font-size: 2.6rem; }
  .stat-item    { padding: 36px 28px; }
  .process-timeline { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { border-right: none; border-bottom: 1px solid var(--border); }
  .team-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .team-card:last-child { border-bottom: none; }
  .btn { padding: 14px 28px; font-size: 0.70rem; }
}
