/**
 * AWISH INTERIORS — EDITORIAL LIGHT REDESIGN 2025
 * Warm Terracotta × Forest Green × Ivory
 * Playfair Display × Plus Jakarta Sans
 * 100% unique — not like Livspace
 */

/* ═══════════════════════════════════════
   FONTS
═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,700;1,800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  /* Palette */
  --terra:        #C05B35;
  --terra-deep:   #9A421E;
  --terra-light:  #F5C5AD;
  --terra-bg:     #FDF0E8;
  --forest:       #273624;
  --forest-mid:   #3D5239;
  --ivory:        #FAF6F0;
  --ivory2:       #F3EDE4;
  --ivory3:       #ECE4D8;
  --white:        #FFFFFF;
  --ink:          #1A1410;
  --ink2:         #2C2318;
  --stone:        #6B5A4E;
  --pebble:       #A89080;
  --sand:         #D9CCBF;
  --border:       rgba(26,20,16,.1);
  --border2:      rgba(26,20,16,.18);

  /* Typography */
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizes */
  --max-w: 1360px;
  --gap:   clamp(72px, 9vw, 120px);

  /* Motion */
  --ease:        cubic-bezier(.16,1,.3,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(26,20,16,.08);
  --shadow-md:  0 8px 32px rgba(26,20,16,.12);
  --shadow-lg:  0 20px 60px rgba(26,20,16,.14);
  --shadow-terra: 0 12px 40px rgba(192,91,53,.28);
}

/* ═══════════════════════════════════════
   HIDE OLD COMPONENTS
═══════════════════════════════════════ */
.trust-signal-bar,
.top-bar,
.main-header,
.main-footer,
/* dark-theme classes from previous redesign */
.ai-header, .ai-topstrip, .ai-footer,
.ai-hero, .ai-stats-strip, .ai-services-section,
.ai-projects-section, .ai-pricing-section,
.ai-rooms-section, .ai-why-section, .ai-process-section,
.ai-testi-section, .ai-cta-section, .ai-faq-section,
.ai-blog-section, .ai-cursor, .ai-cursor-ring,
.ai-mobile-menu { display: none !important; }

/* ═══════════════════════════════════════
   BASE RESET
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--ivory); color: var(--ink); font-family: var(--font-body); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.aw-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .35s var(--ease), border-color .35s;
}
.aw-header.scrolled {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.aw-header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
  height: 70px; display: flex; align-items: center; gap: 32px;
}
/* Logo */
.aw-logo { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; gap: 10px; }
.aw-logo img { height: 44px; width: auto; }
/* Nav */
.aw-nav { flex: 1; display: flex; justify-content: center; }
.aw-nav-list { display: flex; align-items: center; gap: 2px; list-style: none; }
.aw-nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 500;
  color: var(--stone); text-decoration: none; border-radius: 6px;
  letter-spacing: .01em; white-space: nowrap;
  position: relative; transition: color .2s;
}
.aw-nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1.5px; background: var(--terra);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.aw-nav-link:hover, .aw-nav-link.active { color: var(--ink); }
.aw-nav-link:hover::after, .aw-nav-link.active::after { transform: scaleX(1); }
.aw-nav-link .ch { font-size: 9px; transition: transform .3s; }
.aw-nav-item:hover .ch { transform: rotate(180deg); }
/* Dropdown */
.aw-nav-item { position: relative; }
.aw-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: 14px; padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  list-style: none; z-index: 10;
}
.aw-nav-item:hover .aw-dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.aw-dropdown a {
  display: block; padding: 10px 16px;
  font-family: var(--font-body); font-size: 13px; color: var(--stone);
  text-decoration: none; border-radius: 8px;
  transition: background .15s, color .15s;
}
.aw-dropdown a:hover { background: var(--ivory); color: var(--terra); }
.aw-dropdown .lux-item { color: var(--terra) !important; font-weight: 600; }
.aw-dd-sep { height: 1px; background: var(--border); margin: 5px 8px; }
.aw-dd-icon { width: 16px; margin-right: 8px; color: var(--terra); display: inline-block; text-align: center; }
/* Header right */
.aw-header-actions { flex-shrink: 0; display: flex; align-items: center; gap: 16px; }
.aw-header-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: var(--stone); text-decoration: none; transition: color .2s;
}
.aw-header-phone:hover { color: var(--terra); }
.aw-header-phone i { color: var(--terra); }
.aw-header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; background: var(--terra); color: var(--white);
  text-decoration: none; font-family: var(--font-body);
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  border-radius: 100px;
  transition: background .2s, transform .2s var(--ease-bounce), box-shadow .2s;
  white-space: nowrap; overflow: hidden; position: relative;
}
.aw-header-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25), transparent);
  transform: translateX(-100%) skewX(-18deg);
  transition: transform .5s var(--ease);
}
.aw-header-cta:hover::after { transform: translateX(120%) skewX(-18deg); }
.aw-header-cta:hover {
  background: var(--terra-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-terra);
}
.aw-client-link {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border: 1.5px solid var(--border2);
  font-family: var(--font-body); font-size: 12.5px; font-weight: 500;
  color: var(--stone); text-decoration: none; border-radius: 100px;
  transition: border-color .2s, color .2s;
}
.aw-client-link:hover { border-color: var(--terra); color: var(--terra); }
/* Hamburger */
.aw-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none;
  cursor: pointer; padding: 5px; margin-left: auto;
}
.aw-hamburger span {
  display: block; height: 1.5px; background: var(--ink);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .3s, width .3s;
}
.aw-hamburger span:nth-child(2) { width: 65%; margin-left: auto; }
.aw-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.aw-hamburger.open span:nth-child(2) { opacity: 0; }
.aw-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }
/* Mobile menu */
.aw-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 899;
  background: var(--white); padding: 88px 32px 48px;
  overflow-y: auto; transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.aw-mobile-menu.open { transform: translateX(0); }
.aw-mobile-nav { list-style: none; }
.aw-mobile-nav a {
  display: block; padding: 16px 0;
  font-family: var(--font-head); font-size: 30px; font-weight: 400;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}
.aw-mobile-nav a:hover { color: var(--terra); padding-left: 10px; }
.aw-mobile-menu-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
@media (max-width: 1040px) {
  .aw-hamburger { display: flex; }
  .aw-nav { display: none; }
  .aw-header-phone, .aw-client-link { display: none; }
  .aw-mobile-menu { display: block; }
}

/* ═══════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════ */
.aw-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.aw-section { padding: var(--gap) 0; }
.aw-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--terra);
}
.aw-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1.5px; background: var(--terra);
}
.aw-h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 700; line-height: 1.06; color: var(--ink);
  letter-spacing: -.025em;
}
.aw-h2 em { font-style: italic; color: var(--terra); font-weight: 400; }
.aw-desc {
  font-family: var(--font-body); font-size: 16px;
  color: var(--stone); line-height: 1.75; max-width: 480px;
}

/* Buttons */
.aw-btn-terra {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 32px; background: var(--terra); color: var(--white);
  text-decoration: none; font-family: var(--font-body);
  font-size: 13.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  border-radius: 100px; border: none; cursor: pointer;
  transition: background .2s, transform .2s var(--ease-bounce), box-shadow .2s;
  position: relative; overflow: hidden;
}
.aw-btn-terra::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.2);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform .45s var(--ease);
}
.aw-btn-terra:hover::after { transform: translateX(110%) skewX(-15deg); }
.aw-btn-terra:hover {
  background: var(--terra-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-terra);
}
.aw-btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 32px; border: 1.5px solid var(--border2);
  color: var(--ink); text-decoration: none; font-family: var(--font-body);
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  border-radius: 100px; transition: border-color .2s, color .2s, background .2s;
}
.aw-btn-outline:hover { border-color: var(--terra); color: var(--terra); background: var(--terra-bg); }
.aw-btn-white {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 32px; background: var(--white); color: var(--terra);
  text-decoration: none; font-family: var(--font-body);
  font-size: 13.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  border-radius: 100px;
  transition: transform .2s var(--ease-bounce), box-shadow .2s;
}
.aw-btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.aw-view-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--terra); text-decoration: none;
  border-bottom: 1.5px solid var(--terra-light);
  padding-bottom: 2px; white-space: nowrap;
  transition: border-color .2s, gap .2s;
}
.aw-view-more:hover { border-color: var(--terra); gap: 14px; }

/* Scroll reveal base */
.aw-up { opacity: 0; transform: translateY(38px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.aw-up.in { opacity: 1; transform: translateY(0); }
.aw-left { opacity: 0; transform: translateX(-44px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.aw-left.in { opacity: 1; transform: translateX(0); }
.aw-right { opacity: 0; transform: translateX(44px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.aw-right.in { opacity: 1; transform: translateX(0); }
.aw-d1 { transition-delay: .1s; } .aw-d2 { transition-delay: .2s; }
.aw-d3 { transition-delay: .3s; } .aw-d4 { transition-delay: .4s; }
.aw-d5 { transition-delay: .5s; }

/* ═══════════════════════════════════════
   HERO — SPLIT LAYOUT (no slider)
═══════════════════════════════════════ */
.aw-hero {
  background: var(--ivory);
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; position: relative;
  padding: 100px 0 60px;
}
/* Huge background word */
.aw-hero-bg-word {
  position: absolute;
  right: -40px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: clamp(160px, 20vw, 280px);
  font-weight: 900; font-style: italic;
  color: rgba(192,91,53,.05);
  line-height: 1; pointer-events: none;
  white-space: nowrap; letter-spacing: -.05em;
  user-select: none;
}
.aw-hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center;
}
/* Left content */
.aw-hero-content { position: relative; z-index: 1; }
.aw-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--terra);
  margin-bottom: 28px;
  opacity: 0; transform: translateY(14px);
  animation: awReveal .7s .2s var(--ease) forwards;
}
.aw-hero-eyebrow-line { width: 32px; height: 1.5px; background: var(--terra); }
.aw-hero-headline {
  font-family: var(--font-head);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 800; line-height: .98;
  color: var(--ink); letter-spacing: -.035em;
  margin-bottom: 28px;
}
.aw-hero-headline em { display: block; font-style: italic; color: var(--terra); font-weight: 400; }
/* Word reveal animation */
.aw-hero-headline .w {
  display: inline-block;
  opacity: 0; transform: translateY(20px);
}
.aw-hero-headline .w.in { animation: awWordIn .6s var(--ease) forwards; }
.aw-hero-desc {
  font-family: var(--font-body); font-size: 17px; line-height: 1.75;
  color: var(--stone); max-width: 500px; margin-bottom: 44px;
  opacity: 0; transform: translateY(14px);
  animation: awReveal .7s .8s var(--ease) forwards;
}
.aw-hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 56px;
  opacity: 0; transform: translateY(14px);
  animation: awReveal .7s 1s var(--ease) forwards;
}
/* Hero proof bar */
.aw-hero-proof {
  display: flex; align-items: center; gap: 0;
  opacity: 0; transform: translateY(12px);
  animation: awReveal .7s 1.1s var(--ease) forwards;
}
.aw-proof-item {
  padding: 0 28px;
  border-right: 1px solid var(--border2);
  text-align: center;
}
.aw-proof-item:first-child { padding-left: 0; }
.aw-proof-item:last-child { border-right: none; }
.aw-proof-num {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 700; color: var(--ink); line-height: 1;
}
.aw-proof-label { font-family: var(--font-body); font-size: 11px; color: var(--pebble); margin-top: 3px; letter-spacing: .06em; }

/* Right Visual */
.aw-hero-visual {
  position: relative; z-index: 1;
  opacity: 0; transform: translateX(28px);
  animation: awReveal .9s .4s var(--ease) forwards;
}
.aw-hero-img-main {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
/* Decorative arc */
.aw-hero-arc {
  position: absolute;
  top: -30px; right: -30px;
  width: 180px; height: 180px;
  border: 2.5px solid var(--terra-light);
  border-radius: 50%;
  pointer-events: none;
  opacity: .7;
}
.aw-hero-arc2 {
  position: absolute;
  top: -10px; right: -10px;
  width: 130px; height: 130px;
  border: 1.5px dashed rgba(192,91,53,.3);
  border-radius: 50%;
  pointer-events: none;
}
/* Small second image */
.aw-hero-img2 {
  position: absolute;
  bottom: -20px; left: -32px;
  width: 42%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
/* Floating badge */
.aw-hero-badge {
  position: absolute; top: 28px; left: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  border-left: 4px solid var(--terra);
  animation: awFloat 4s ease infinite;
}
.aw-hero-badge-num {
  font-family: var(--font-head);
  font-size: 26px; font-weight: 700; color: var(--terra); line-height: 1;
}
.aw-hero-badge-txt {
  font-family: var(--font-body); font-size: 11px;
  font-weight: 600; color: var(--stone); letter-spacing: .06em;
  text-transform: uppercase; line-height: 1.4;
}

/* ═══════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════ */
.aw-marquee-strip {
  background: var(--forest);
  padding: 18px 0; overflow: hidden;
  border-top: 3px solid var(--terra);
}
.aw-marquee-track {
  display: flex; gap: 0;
  animation: awMarquee 32s linear infinite;
  width: max-content;
}
.aw-marquee-track:hover { animation-play-state: paused; }
.aw-marquee-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 44px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(250,246,240,.75);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.1);
}
.aw-marquee-item i { color: var(--terra-light); font-size: 11px; }
.aw-marquee-item strong { color: var(--ivory); }

/* ═══════════════════════════════════════
   SERVICES — NUMBERED LIST + HOVER IMAGE
═══════════════════════════════════════ */
.aw-services-section { background: var(--white); padding: var(--gap) 0; }
.aw-services-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px; align-items: start;
  margin-top: 64px;
}
/* Sticky image on left */
.aw-svc-visual {
  position: sticky; top: 96px;
  aspect-ratio: 3/4; border-radius: 6px;
  overflow: hidden;
}
.aw-svc-visual-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .45s var(--ease), transform .6s var(--ease);
}
.aw-svc-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(39,54,36,.45) 0%, transparent 55%);
}
.aw-svc-visual-label {
  position: absolute; bottom: 24px; left: 24px;
  font-family: var(--font-head); font-size: 22px; font-weight: 400;
  color: var(--white); font-style: italic;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.aw-svc-visual.active .aw-svc-visual-label { opacity: 1; transform: translateY(0); }

/* Service list */
.aw-svc-head { margin-bottom: 0; }
.aw-svc-items { margin-top: 8px; }
.aw-svc-item {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none; cursor: pointer;
  transition: padding-left .3s var(--ease);
  position: relative;
}
.aw-svc-item::before {
  content: ''; position: absolute; left: -48px; top: 0; bottom: 0; width: 3px;
  background: var(--terra); transform: scaleY(0); transform-origin: bottom;
  transition: transform .35s var(--ease);
}
.aw-svc-item:hover::before { transform: scaleY(1); }
.aw-svc-item:hover { padding-left: 8px; }
.aw-svc-num {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: var(--terra); letter-spacing: .08em; flex-shrink: 0; width: 28px;
}
.aw-svc-text { flex: 1; }
.aw-svc-name {
  font-family: var(--font-head); font-size: 22px; font-weight: 600;
  color: var(--ink); line-height: 1.2; margin-bottom: 6px;
  transition: color .2s;
}
.aw-svc-item:hover .aw-svc-name { color: var(--terra); }
.aw-svc-tagline {
  font-family: var(--font-body); font-size: 13px; color: var(--pebble); line-height: 1.5;
}
.aw-svc-arrow {
  width: 44px; height: 44px; border: 1.5px solid var(--border2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--stone); font-size: 14px; flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s, transform .3s var(--ease);
}
.aw-svc-item:hover .aw-svc-arrow {
  background: var(--terra); border-color: var(--terra); color: var(--white);
  transform: rotate(-45deg);
}

/* ═══════════════════════════════════════
   PROJECTS — EDITORIAL GRID
═══════════════════════════════════════ */
.aw-projects-section { background: var(--ivory2); padding: var(--gap) 0; }
.aw-proj-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px; margin-top: 60px;
}
.aw-proj-card { position: relative; overflow: hidden; border-radius: 6px; background: var(--sand); }
.aw-proj-card:nth-child(1) { grid-column: span 7; aspect-ratio: 16/10; }
.aw-proj-card:nth-child(2) { grid-column: span 5; aspect-ratio: 4/3; }
.aw-proj-card:nth-child(3) { grid-column: span 4; aspect-ratio: 4/3; }
.aw-proj-card:nth-child(4) { grid-column: span 4; aspect-ratio: 4/3; }
.aw-proj-card:nth-child(5) { grid-column: span 4; aspect-ratio: 4/3; }
.aw-proj-card:nth-child(6) { grid-column: span 12; aspect-ratio: 21/7; }
.aw-proj-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease); display: block;
}
.aw-proj-card:hover .aw-proj-img { transform: scale(1.06); }
.aw-proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(39,54,36,.88) 0%, rgba(39,54,36,.12) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.aw-proj-cat {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--terra-light); margin-bottom: 7px;
}
.aw-proj-title {
  font-family: var(--font-head); font-size: clamp(15px, 1.4vw, 22px);
  font-weight: 500; color: var(--white); line-height: 1.2; margin-bottom: 8px;
}
.aw-proj-meta {
  font-family: var(--font-body); font-size: 12px;
  color: rgba(250,246,240,.55); display: flex; align-items: center; gap: 14px;
}
.aw-proj-view {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; background: var(--terra); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none; font-size: 14px;
  opacity: 0; transform: scale(.6) rotate(-20deg);
  transition: opacity .3s var(--ease), transform .35s var(--ease-bounce);
}
.aw-proj-card:hover .aw-proj-view { opacity: 1; transform: scale(1) rotate(0); }
.aw-proj-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }

/* ═══════════════════════════════════════
   STATS SECTION — GIANT NUMBERS
═══════════════════════════════════════ */
.aw-stats-section {
  background: var(--white); padding: var(--gap) 0;
  position: relative; overflow: hidden;
}
/* Decorative background text */
.aw-stats-section::before {
  content: 'TRUST';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head); font-size: 260px; font-weight: 900;
  color: rgba(192,91,53,.04); pointer-events: none; white-space: nowrap; letter-spacing: -.05em;
}
.aw-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; z-index: 1;
}
.aw-stat-block {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background .3s;
}
.aw-stat-block:last-child { border-right: none; }
.aw-stat-block:hover { background: var(--ivory); }
.aw-stat-big {
  font-family: var(--font-head);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 800; font-style: italic;
  color: var(--terra); line-height: 1;
  letter-spacing: -.03em;
}
.aw-stat-big sub { font-size: .4em; vertical-align: baseline; font-style: normal; font-weight: 700; }
.aw-stat-desc {
  font-family: var(--font-body); font-size: 14px;
  color: var(--stone); margin-top: 12px; line-height: 1.5; font-weight: 500;
}
.aw-stat-divider { width: 32px; height: 2px; background: var(--terra-light); margin: 10px auto 0; }

/* ═══════════════════════════════════════
   WHY CHOOSE — IMAGE + FEATURES
═══════════════════════════════════════ */
.aw-why-section { background: var(--ivory); padding: var(--gap) 0; }
.aw-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.aw-why-imgblock { position: relative; }
.aw-why-main-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 6px; display: block; box-shadow: var(--shadow-md);
}
.aw-why-frame {
  position: absolute; top: -18px; left: -18px; right: 18px; bottom: 18px;
  border: 2px solid var(--terra-light); border-radius: 6px;
  pointer-events: none;
}
.aw-why-years {
  position: absolute; bottom: -24px; right: -24px;
  width: 110px; height: 110px; background: var(--terra);
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-terra);
  animation: awFloat 4s ease infinite;
}
.aw-why-years-n { font-family: var(--font-head); font-size: 34px; font-weight: 800; color: var(--white); line-height: 1; }
.aw-why-years-t { font-family: var(--font-body); font-size: 9px; font-weight: 700; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .08em; text-align: center; }
.aw-why-tag {
  position: absolute; top: 24px; right: -20px;
  background: var(--white); border-radius: 12px;
  padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  border-top: 3px solid var(--forest);
}
.aw-why-tag-icon { font-size: 22px; color: var(--forest); }
.aw-why-tag-text { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--stone); line-height: 1.4; }
.aw-why-tag-text strong { display: block; color: var(--ink); font-size: 15px; }
/* Feature list */
.aw-feat-list { list-style: none; margin-top: 40px; }
.aw-feat-item {
  display: flex; gap: 18px; padding: 20px 0;
  border-bottom: 1px solid var(--border); align-items: flex-start;
}
.aw-feat-item:last-child { border-bottom: none; }
.aw-feat-ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--terra-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--terra); font-size: 17px; flex-shrink: 0;
  transition: background .3s, color .3s;
}
.aw-feat-item:hover .aw-feat-ic { background: var(--terra); color: var(--white); }
.aw-feat-title { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.aw-feat-text { font-family: var(--font-body); font-size: 13px; color: var(--pebble); line-height: 1.65; }
.aw-why-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }

/* ═══════════════════════════════════════
   PRICING CARDS
═══════════════════════════════════════ */
.aw-pricing-section { background: var(--ivory2); padding: var(--gap) 0; }
.aw-pricing-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-top: 56px;
}
.aw-price-card {
  background: var(--white); border-radius: 16px; padding: 36px 26px;
  text-align: center; border: 1.5px solid var(--border);
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
  cursor: pointer; position: relative; overflow: hidden;
}
.aw-price-card:hover {
  border-color: var(--terra-light); transform: translateY(-6px); box-shadow: var(--shadow-md);
}
.aw-price-card.featured {
  background: var(--forest); border-color: var(--forest);
  color: var(--white);
}
.aw-price-card.featured:hover { border-color: var(--forest-mid); box-shadow: 0 20px 50px rgba(39,54,36,.3); }
.aw-price-tag {
  display: inline-block; padding: 4px 12px; background: var(--terra-bg);
  border-radius: 100px; font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--terra); margin-bottom: 20px;
}
.aw-price-card.featured .aw-price-tag { background: rgba(255,255,255,.12); color: var(--terra-light); }
.aw-price-icon { font-size: 28px; color: var(--terra); margin-bottom: 14px; }
.aw-price-card.featured .aw-price-icon { color: var(--terra-light); }
.aw-price-amt {
  font-family: var(--font-head); font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 6px;
}
.aw-price-card.featured .aw-price-amt { color: var(--white); }
.aw-price-from { font-family: var(--font-body); font-size: 11px; color: var(--pebble); margin-bottom: 24px; }
.aw-price-card.featured .aw-price-from { color: rgba(255,255,255,.55); }
.aw-price-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 11.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--terra);
  text-decoration: none; transition: gap .2s;
}
.aw-price-card.featured .aw-price-cta { color: var(--terra-light); }
.aw-price-card:hover .aw-price-cta { gap: 12px; }
.aw-pricing-note { font-family: var(--font-body); font-size: 12px; color: var(--pebble); text-align: center; margin-top: 28px; }

/* ═══════════════════════════════════════
   DESIGN ROOMS — HORIZONTAL SCROLL
═══════════════════════════════════════ */
.aw-rooms-section { background: var(--white); padding: var(--gap) 0; overflow: hidden; }
.aw-rooms-scroll-wrap { overflow: hidden; margin-top: 52px; }
.aw-rooms-track {
  display: flex; gap: 14px;
  padding: 0 48px;
  transition: transform .55s var(--ease);
}
.aw-room-slide {
  min-width: 280px; height: 380px; position: relative;
  border-radius: 8px; overflow: hidden; flex-shrink: 0;
  cursor: pointer; text-decoration: none;
}
.aw-room-img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); display: block; }
.aw-room-slide:hover .aw-room-img { transform: scale(1.08); }
.aw-room-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(39,54,36,.8) 0%, transparent 55%); }
.aw-room-name {
  position: absolute; bottom: 20px; left: 20px;
  font-family: var(--font-head); font-size: 20px; font-weight: 500; font-style: italic;
  color: var(--white);
}
.aw-room-name i { color: var(--terra-light); font-size: 14px; margin-right: 8px; }
.aw-rooms-nav { display: flex; gap: 12px; margin-top: 32px; padding: 0 48px; }
.aw-rooms-btn {
  width: 48px; height: 48px;
  border: 1.5px solid var(--border2); border-radius: 50%;
  background: none; display: flex; align-items: center; justify-content: center;
  color: var(--stone); cursor: pointer; font-size: 16px;
  transition: background .2s, border-color .2s, color .2s;
}
.aw-rooms-btn:hover { background: var(--terra); border-color: var(--terra); color: var(--white); }

/* ═══════════════════════════════════════
   TESTIMONIAL — LARGE SINGLE QUOTE
═══════════════════════════════════════ */
.aw-testi-section { background: var(--forest); padding: var(--gap) 0; position: relative; overflow: hidden; }
.aw-testi-section::before {
  content: '"'; position: absolute;
  left: -20px; top: -40px;
  font-family: var(--font-head); font-size: 400px; line-height: 1;
  color: rgba(255,255,255,.03); pointer-events: none; font-weight: 700;
}
.aw-testi-inner { position: relative; z-index: 1; }
.aw-testi-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.aw-testi-left { }
.aw-testi-eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--terra-light);
  display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
}
.aw-testi-eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--terra-light); }
.aw-testi-heading {
  font-family: var(--font-head); font-size: clamp(36px, 4vw, 58px);
  font-weight: 700; color: var(--ivory); line-height: 1.1; margin-bottom: 20px;
}
.aw-testi-heading em { font-style: italic; color: var(--terra-light); font-weight: 400; }
.aw-testi-sub { font-family: var(--font-body); font-size: 15px; color: rgba(250,246,240,.55); line-height: 1.7; margin-bottom: 32px; max-width: 320px; }
/* Dots */
.aw-testi-dots { display: flex; gap: 8px; }
.aw-testi-dot {
  width: 28px; height: 3px; background: rgba(255,255,255,.2);
  border-radius: 2px; border: none; cursor: pointer;
  transition: background .3s, width .3s var(--ease);
}
.aw-testi-dot.active { background: var(--terra-light); width: 44px; }
/* Quote side */
.aw-testi-quote-block { position: relative; }
.aw-testi-quote-text {
  font-family: var(--font-head); font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400; font-style: italic;
  color: var(--ivory); line-height: 1.45;
  margin-bottom: 36px;
}
.aw-testi-author { display: flex; align-items: center; gap: 16px; }
.aw-testi-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 2px solid var(--terra-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 24px; font-weight: 700;
  color: var(--terra-light); flex-shrink: 0;
}
.aw-testi-name { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--ivory); }
.aw-testi-loc { font-family: var(--font-body); font-size: 12.5px; color: rgba(250,246,240,.5); margin-top: 2px; }
.aw-testi-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.aw-testi-stars i { color: var(--terra-light); font-size: 13px; }
.aw-testi-stars i.dim { color: rgba(255,255,255,.2); }
/* Testimonial nav arrows */
.aw-testi-arrows { display: flex; gap: 10px; margin-top: 36px; }
.aw-testi-arr {
  width: 48px; height: 48px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50%; background: none;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); cursor: pointer; font-size: 15px;
  transition: background .2s, border-color .2s, color .2s;
}
.aw-testi-arr:hover { background: var(--terra); border-color: var(--terra); color: var(--white); }
/* Panels (slides) */
.aw-testi-slide { display: none; }
.aw-testi-slide.active { display: block; animation: awFadeIn .5s var(--ease); }

/* ═══════════════════════════════════════
   PROCESS — NUMBERED STEPS
═══════════════════════════════════════ */
.aw-process-section { background: var(--ivory); padding: var(--gap) 0; }
.aw-process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 72px; position: relative;
}
/* connecting line */
.aw-process-steps::before {
  content: ''; position: absolute;
  top: 36px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px; background: var(--sand); pointer-events: none;
}
.aw-process-step { padding: 0 24px; text-align: center; }
.aw-process-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative; z-index: 1;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.aw-process-step:hover .aw-process-circle {
  background: var(--terra); border-color: var(--terra);
  box-shadow: var(--shadow-terra);
}
.aw-process-n {
  font-family: var(--font-head); font-size: 24px; font-weight: 800;
  color: var(--terra); transition: color .3s;
}
.aw-process-step:hover .aw-process-n { color: var(--white); }
.aw-process-icon { font-size: 26px; color: var(--terra); margin-bottom: 16px; display: block; }
.aw-process-title { font-family: var(--font-head); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.aw-process-desc { font-family: var(--font-body); font-size: 13.5px; color: var(--pebble); line-height: 1.7; }

/* ═══════════════════════════════════════
   CTA SECTION — TERRACOTTA BOLD
═══════════════════════════════════════ */
.aw-cta-section {
  background: var(--terra);
  padding: clamp(64px, 8vw, 100px) 0;
  position: relative; overflow: hidden;
}
/* Texture */
.aw-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .06;
}
.aw-cta-inner { position: relative; z-index: 1; text-align: center; }
.aw-cta-sup {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
.aw-cta-sup::before, .aw-cta-sup::after { content: ''; display: block; width: 24px; height: 1.5px; background: rgba(255,255,255,.4); }
.aw-cta-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800; color: var(--white);
  line-height: 1.0; letter-spacing: -.03em; margin-bottom: 18px;
}
.aw-cta-title em { font-style: italic; font-weight: 400; }
.aw-cta-desc { font-family: var(--font-body); font-size: 16px; color: rgba(255,255,255,.7); max-width: 440px; margin: 0 auto 44px; line-height: 1.7; }
.aw-cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.aw-faq-section { background: var(--white); padding: var(--gap) 0; }
.aw-faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 64px; margin-top: 56px; }
.aw-faq-item { border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 12px; }
.aw-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; cursor: pointer; padding: 6px 0;
}
.aw-faq-q-txt {
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--ink); line-height: 1.45;
}
.aw-faq-toggle {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--terra); font-size: 11px; flex-shrink: 0;
  transition: background .2s, transform .3s, border-color .2s;
}
.aw-faq-item.open .aw-faq-toggle { background: var(--terra-bg); border-color: var(--terra); transform: rotate(45deg); }
.aw-faq-a {
  font-family: var(--font-body); font-size: 13.5px; color: var(--stone); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding-top .3s;
  padding-top: 0;
}
.aw-faq-item.open .aw-faq-a { max-height: 300px; padding-top: 14px; }

/* ═══════════════════════════════════════
   BLOG
═══════════════════════════════════════ */
.aw-blog-section { background: var(--ivory2); padding: var(--gap) 0; }
.aw-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.aw-blog-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.aw-blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--terra-light); }
.aw-blog-imgwrap { aspect-ratio: 16/10; overflow: hidden; }
.aw-blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); display: block; }
.aw-blog-card:hover .aw-blog-img { transform: scale(1.06); }
.aw-blog-body { padding: 28px 28px 32px; }
.aw-blog-cat {
  display: inline-block; padding: 4px 12px; background: var(--terra-bg);
  border-radius: 100px; font-family: var(--font-body); font-size: 10px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 14px;
}
.aw-blog-title {
  font-family: var(--font-head); font-size: 20px; font-weight: 600;
  color: var(--ink); line-height: 1.3; margin-bottom: 12px;
  display: block; text-decoration: none; transition: color .2s;
}
.aw-blog-title:hover { color: var(--terra); }
.aw-blog-excerpt { font-family: var(--font-body); font-size: 13.5px; color: var(--stone); line-height: 1.7; margin-bottom: 20px; }
.aw-blog-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--terra);
  text-decoration: none; transition: gap .2s;
}
.aw-blog-card:hover .aw-blog-more { gap: 12px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.aw-footer { background: var(--ivory); border-top: 1px solid var(--border2); }
.aw-footer-top {
  max-width: var(--max-w); margin: 0 auto; padding: 80px 48px 60px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 56px;
}
.aw-footer-brand img { height: 46px; width: auto; margin-bottom: 20px; display: block; }
.aw-footer-brand p { font-family: var(--font-body); font-size: 14px; color: var(--stone); line-height: 1.75; max-width: 280px; margin-bottom: 28px; }
.aw-footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.aw-fbadge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border: 1px solid var(--border2);
  border-radius: 100px; font-family: var(--font-body); font-size: 11.5px; color: var(--stone);
  transition: border-color .2s, color .2s;
}
.aw-fbadge i { color: var(--terra); font-size: 10px; }
.aw-fbadge:hover { border-color: var(--terra); color: var(--terra); }
.aw-footer-social { display: flex; gap: 8px; }
.aw-footer-social a {
  width: 36px; height: 36px; border: 1px solid var(--border2);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: var(--stone); font-size: 14px; text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.aw-footer-social a:hover { background: var(--terra); border-color: var(--terra); color: var(--white); }
.aw-footer-col h5 {
  font-family: var(--font-body); font-size: 11px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink); margin-bottom: 22px;
}
.aw-flinks { list-style: none; }
.aw-flinks li { margin-bottom: 10px; }
.aw-flinks a {
  font-family: var(--font-body); font-size: 14px; color: var(--stone);
  text-decoration: none; display: inline-flex; align-items: center; gap: 0;
  transition: color .2s, gap .2s;
}
.aw-flinks a::before {
  content: ''; width: 0; height: 1.5px; background: var(--terra);
  margin-right: 0; transition: width .25s var(--ease), margin-right .25s var(--ease);
}
.aw-flinks a:hover { color: var(--terra); gap: 8px; }
.aw-flinks a:hover::before { width: 10px; margin-right: 6px; }
.aw-fcontact { list-style: none; }
.aw-fcontact li { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.aw-fcontact i { color: var(--terra); font-size: 14px; width: 16px; flex-shrink: 0; margin-top: 3px; }
.aw-fcontact a,
.aw-fcontact span { font-family: var(--font-body); font-size: 13.5px; color: var(--stone); text-decoration: none; line-height: 1.6; transition: color .2s; }
.aw-fcontact a:hover { color: var(--terra); }
.aw-footer-bottom {
  border-top: 1px solid var(--border);
  max-width: var(--max-w); margin: 0 auto; padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.aw-footer-bottom p { font-family: var(--font-body); font-size: 12.5px; color: var(--pebble); }
.aw-footer-legal { display: flex; gap: 24px; }
.aw-footer-legal a { font-family: var(--font-body); font-size: 12.5px; color: var(--pebble); text-decoration: none; transition: color .2s; }
.aw-footer-legal a:hover { color: var(--terra); }

/* ═══════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════ */
@keyframes awReveal { to { opacity: 1; transform: translateY(0) translateX(0); } }
@keyframes awWordIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes awFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes awMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes awFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes awPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(192,91,53,.4); } 60% { box-shadow: 0 0 0 12px rgba(192,91,53,0); } }

/* ═══════════════════════════════════════
   FLOATING WIDGETS TWEAKS
═══════════════════════════════════════ */
.whatsapp-float { animation: awPulse 2.5s ease infinite; }
.scroll-top { background: var(--terra) !important; border: none !important; color: var(--white) !important; }
.scroll-top:hover { background: var(--terra-deep) !important; }
.sticky-mobile-cta .sticky-cta-consult { background: var(--terra) !important; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1200px) {
  /* Legacy split hero decorative elements only */
  .aw-hero:not(.aw-hero--video) .aw-hero-img2,
  .aw-hero:not(.aw-hero--video) .aw-hero-arc,
  .aw-hero:not(.aw-hero--video) .aw-hero-arc2,
  .aw-hero:not(.aw-hero--video) .aw-hero-badge { display: none; }
  .aw-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1000px) {
  .aw-wrap { padding: 0 28px; }
  /* Legacy split hero (inner pages) — single column */
  .aw-hero:not(.aw-hero--video) .aw-hero-inner { padding: 0 28px; grid-template-columns: 1fr; gap: 48px; min-height: auto; }
  .aw-hero:not(.aw-hero--video) .aw-hero-visual { display: none; }
  .aw-services-layout { grid-template-columns: 1fr; }
  .aw-svc-visual { display: none; }
  .aw-why-grid { grid-template-columns: 1fr; gap: 48px; }
  .aw-why-imgblock { display: none; }
  .aw-testi-layout { grid-template-columns: 1fr; gap: 48px; }
  .aw-testi-layout > *:first-child { order: 1; }
  .aw-process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .aw-process-steps::before { display: none; }
  .aw-process-step { padding-top: 0; }
  .aw-process-circle { margin-bottom: 20px; }
  .aw-blog-grid { grid-template-columns: 1fr 1fr; }
  .aw-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .aw-stats-grid { grid-template-columns: 1fr 1fr; }
  .aw-stat-block { border-right: none; border-bottom: 1px solid var(--border); }
  .aw-stat-block:nth-child(2n) { }
  .aw-stat-block:nth-last-child(-n+2) { border-bottom: none; }
  .aw-proj-grid { grid-template-columns: 1fr 1fr; }
  .aw-proj-card { grid-column: span 1 !important; aspect-ratio: 4/3 !important; }
}
@media (max-width: 640px) {
  :root { --gap: 64px; }
  .aw-header-inner { padding: 0 20px; }
  /* Only apply legacy padding to non-video hero pages */
  .aw-hero:not(.aw-hero--video) { padding: 80px 0 48px; }
  .aw-hero-inner { padding: 0 20px; }
  .aw-wrap { padding: 0 20px; }
  .aw-pricing-grid { grid-template-columns: 1fr 1fr; }
  .aw-blog-grid { grid-template-columns: 1fr; }
  .aw-faq-cols { grid-template-columns: 1fr; }
  .aw-footer-top { grid-template-columns: 1fr; padding: 48px 20px 36px; }
  .aw-footer-bottom { flex-direction: column; text-align: center; padding: 20px; }
  .aw-footer-legal { justify-content: center; }
  .aw-process-steps { grid-template-columns: 1fr; }
  .aw-hero-proof { flex-wrap: wrap; }
  .aw-proof-item { padding: 8px 16px; border-right: none; border-bottom: 1px solid var(--border); }
  .aw-rooms-track { padding: 0 20px; }
  .aw-rooms-nav { padding: 0 20px; }
  .aw-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════
   INNER PAGE HERO (all inner pages)
═══════════════════════════════════════ */
.aw-page-hero {
  background: var(--ivory2);
  padding: 128px 0 64px;
  position: relative;
  overflow: hidden;
}
.aw-page-hero::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 440px; height: 440px;
  background: var(--terra-bg);
  border-radius: 50%;
  opacity: .45;
  pointer-events: none;
}
.aw-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--terra-light), transparent);
}
.aw-ph-inner { position: relative; z-index: 1; max-width: 720px; }
.aw-ph-h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
  color: var(--forest);
  line-height: 1.1;
  margin: 12px 0 16px;
  letter-spacing: -.02em;
}
.aw-ph-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--stone);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 24px;
}
.aw-ph-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--pebble);
}
.aw-ph-breadcrumb a { color: var(--terra); text-decoration: none; transition: color .2s; }
.aw-ph-breadcrumb a:hover { color: var(--terra-deep); }
.aw-ph-breadcrumb .sep { color: var(--sand); }

/* ─── Inner-page section wrapper ─── */
.aw-inner-section { padding: var(--gap) 0; }
.aw-inner-section.bg-ivory { background: var(--ivory); }
.aw-inner-section.bg-white { background: var(--white); }

/* ─── Inner-page cards ─── */
.aw-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.aw-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.aw-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.aw-card-body { padding: 24px 28px 28px; }
.aw-card-label {
  display: inline-block;
  background: var(--terra-bg);
  color: var(--terra);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.aw-card-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.3;
}
.aw-card-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--stone);
  line-height: 1.7;
}

/* ─── Feature list ─── */
.aw-feat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.aw-feat-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--stone); line-height: 1.6; font-family: var(--font-body); }
.aw-feat-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--terra-bg);
  color: var(--terra);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}

/* ─── Filter pills ─── */
.aw-filter-bar { display: flex; flex-wrap: wrap; gap: 10px; padding: 28px 0; }
.aw-filter-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  border: 1.5px solid var(--border2);
  border-radius: 100px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--stone);
  text-decoration: none;
  transition: all .22s;
}
.aw-filter-pill:hover, .aw-filter-pill.active {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}

/* ─── Inner page form styles ─── */
.aw-form-group { margin-bottom: 22px; }
.aw-form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.aw-form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s;
  outline: none;
  box-sizing: border-box;
}
.aw-form-control:focus { border-color: var(--terra); }
.aw-form-control::placeholder { color: var(--pebble); }

/* ─── Shared button classes ─── */
.aw-btn-terra {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--terra); color: #fff;
  padding: 14px 28px; border-radius: 100px;
  font-family: var(--font-body); font-size: 13.5px;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .25s, transform .25s;
}
.aw-btn-terra:hover { background: var(--terra-deep); transform: translateY(-2px); color: #fff; }
.aw-btn-outline-terra {
  display: inline-flex; align-items: center; gap: 9px;
  border: 2px solid var(--terra); color: var(--terra);
  padding: 12px 26px; border-radius: 100px;
  font-family: var(--font-body); font-size: 13.5px;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; background: transparent; cursor: pointer;
  transition: all .25s;
}
.aw-btn-outline-terra:hover { background: var(--terra); color: #fff; }

@media (max-width: 768px) {
  .aw-page-hero { padding: 100px 0 48px; }
  .aw-ph-h1 { font-size: clamp(28px, 8vw, 42px); }
  .aw-inner-section { padding: 60px 0; }
}

/* ── Floating button STACK (WhatsApp + Chat) — no overlap guaranteed ─────── */

/* Stack wrapper: fixed to bottom-right corner, flex column so buttons stack */
.float-stack {
  position: fixed;
  bottom: 30px;
  right: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Remove individual fixed positioning — wrapper handles it now */
.float-stack .whatsapp-float,
.float-stack .chat-widget {
  position: relative !important;
  bottom: auto !important;
  right: auto !important;
}

/* Chat window still opens upward from the widget */
.float-stack .chat-window {
  position: absolute;
  bottom: 75px;
  right: 0;
}

/* Mobile: lift stack above the sticky CTA bar (89px tall) */
@media (max-width: 768px) {
  .float-stack {
    bottom: 98px !important;
    right: 16px !important;
  }
  .float-stack .chat-window {
    width: calc(100vw - 32px) !important;
    right: 0 !important;
    left: auto !important;
    bottom: 72px !important;
    height: 420px !important;
    border-radius: 16px !important;
  }
}
