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

    :root {
      --ivory: #F7F3EC;
      --ivory-mid: #EDE8DF;
      --ivory-dark: #DDD6C9;
      --charcoal: #1C1916;
      --charcoal-mid: #2A2622;
      --charcoal-light: #3D3831;
      --bronze: #A6875D;
      --bronze-light: #C9AB7C;
      --bronze-pale: #E0CBA8;
      --text-secondary: #7A7168;
      --white: #FEFDFB;
      --nav-h: 136px;
      --section-pad: clamp(72px, 10vw, 120px);
      --side-pad: clamp(24px, 5vw, 64px);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--ivory);
      color: var(--charcoal);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* NAVIGATION */
    .site-nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      height: var(--nav-h);
      background: rgba(247,243,236,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex; align-items: center; justify-content: space-between;
      padding: 8px var(--side-pad);
      transition: box-shadow 0.3s ease;
    }
    .site-nav.scrolled {
      box-shadow: 0 1px 0 rgba(166,135,93,0.15);
    }
    .nav-brand {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .nav-logo {
      height: 80px;
      width: auto;
      display: block;
    }
    .nav-menu { display: flex; gap: 36px; list-style: none; }
    .nav-menu a {
      font-family: 'Outfit', sans-serif;
      font-size: 12.5px; font-weight: 500; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--charcoal-light);
      text-decoration: none; position: relative;
      transition: color 0.25s ease;
    }
    .nav-menu a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px; background: var(--bronze);
      transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .nav-menu a:hover { color: var(--bronze); }
    .nav-menu a:hover::after { width: 100%; }
    .nav-quote {
      font-family: 'Outfit', sans-serif;
      background: var(--charcoal); color: var(--ivory);
      padding: 11px 26px; font-size: 12px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      text-decoration: none; transition: all 0.3s ease;
    }
    .nav-quote:hover { background: var(--bronze); color: var(--charcoal); }

    .nav-hamburger {
      display: none; background: none; border: none; cursor: pointer;
      width: 32px; height: 24px; position: relative; z-index: 110;
    }
    .nav-hamburger span {
      display: block; width: 100%; height: 2px;
      background: var(--charcoal); position: absolute; left: 0;
      transition: all 0.3s ease;
    }
    .nav-hamburger span:nth-child(1) { top: 0; }
    .nav-hamburger span:nth-child(2) { top: 11px; }
    .nav-hamburger span:nth-child(3) { top: 22px; }
    .nav-hamburger.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
    .nav-hamburger.active span:nth-child(2) { opacity: 0; }
    .nav-hamburger.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

    .mobile-overlay {
      display: none; position: fixed; inset: 0; z-index: 105;
      background: rgba(247,243,236,0.98);
      backdrop-filter: blur(20px);
      flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    }
    .mobile-overlay.open { display: flex; }
    .mobile-overlay a {
      font-family: 'Playfair Display', serif;
      font-size: 28px; color: var(--charcoal); text-decoration: none;
      font-weight: 400; letter-spacing: 0.02em;
      opacity: 0; transform: translateY(16px);
      transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
    }
    .mobile-overlay.open a {
      opacity: 1; transform: translateY(0);
    }
    .mobile-overlay a:hover { color: var(--bronze); }
    .mobile-overlay.open a:nth-child(1) { transition-delay: 0.05s; }
    .mobile-overlay.open a:nth-child(2) { transition-delay: 0.1s; }
    .mobile-overlay.open a:nth-child(3) { transition-delay: 0.15s; }
    .mobile-overlay.open a:nth-child(4) { transition-delay: 0.2s; }
    .mobile-overlay.open a:nth-child(5) { transition-delay: 0.25s; }
    .mobile-overlay.open a:nth-child(6) { transition-delay: 0.3s; }
    .mobile-overlay.open a:nth-child(7) { transition-delay: 0.35s; }

    /* HERO */
    .hero {
      margin-top: var(--nav-h);
      min-height: calc(100vh - var(--nav-h));
      min-height: calc(100svh - var(--nav-h));
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
    }
    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: clamp(48px, 8vw, 96px) var(--side-pad);
      position: relative;
    }
    .hero-left::before {
      content: '';
      position: absolute; top: 15%; right: -40px;
      width: 240px; height: 240px;
      border: 1px solid var(--bronze-pale);
      border-radius: 50%;
      opacity: 0.4;
      pointer-events: none;
    }
    .hero-tagline {
      font-family: 'Outfit', sans-serif;
      font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--bronze);
      margin-bottom: 28px;
      display: flex; align-items: center; gap: 14px;
    }
    .hero-tagline::before {
      content: ''; display: block;
      width: 40px; height: 1px; background: var(--bronze);
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(40px, 5.5vw, 72px);
      font-weight: 400; line-height: 1.08;
      color: var(--charcoal); margin-bottom: 28px;
      letter-spacing: -0.01em;
    }
    .hero h1 em {
      font-style: italic; color: var(--bronze);
    }
    .hero-desc {
      font-size: 16px; color: var(--text-secondary);
      max-width: 420px; margin-bottom: 44px; line-height: 1.75;
      font-weight: 300;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
    .btn-fill {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--charcoal); color: var(--ivory);
      padding: 15px 34px; font-size: 12.5px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      text-decoration: none; transition: all 0.35s ease;
      font-family: 'Outfit', sans-serif;
    }
    .btn-fill:hover { background: var(--bronze); }
    .btn-fill svg { transition: transform 0.3s ease; }
    .btn-fill:hover svg { transform: translateX(3px); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent; color: var(--charcoal);
      border: 1.5px solid var(--ivory-dark);
      padding: 14px 34px; font-size: 12.5px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      text-decoration: none; transition: all 0.35s ease;
      font-family: 'Outfit', sans-serif;
    }
    .btn-ghost:hover { border-color: var(--bronze); color: var(--bronze); }
    .hero-metrics {
      display: flex; gap: 48px;
    }
    .hero-metric {
      position: relative;
      padding-left: 20px;
    }
    .hero-metric::before {
      content: ''; position: absolute; left: 0; top: 4px; bottom: 4px;
      width: 2px; background: var(--bronze-pale);
    }
    .hero-metric-val {
      font-family: 'Playfair Display', serif;
      font-size: 32px; font-weight: 400; color: var(--charcoal);
      line-height: 1;
    }
    .hero-metric-label {
      font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--text-secondary);
      margin-top: 6px;
    }
    .hero-right {
      position: relative; overflow: hidden;
    }
    .hero-right img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    .hero-right::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(166,135,93,0.28) 0%, rgba(28,25,22,0.32) 40%, rgba(247,243,236,0.12) 100%);
      pointer-events: none;
      mix-blend-mode: multiply;
    }
    .hero-badge {
      position: absolute; bottom: 40px; left: 40px; z-index: 2;
      background: rgba(28,25,22,0.88);
      backdrop-filter: blur(8px);
      padding: 20px 28px;
      display: flex; align-items: center; gap: 16px;
    }
    .hero-badge-stars {
      color: var(--bronze-light); font-size: 15px; letter-spacing: 2px;
    }
    .hero-badge-text {
      font-size: 12px; color: rgba(247,243,236,0.7);
      font-weight: 400; letter-spacing: 0.03em;
    }
    .hero-badge-text strong {
      display: block; color: var(--ivory); font-weight: 500;
      font-size: 14px; margin-bottom: 2px;
    }

    /* SECTION SHARED */
    .section-label {
      font-family: 'Outfit', sans-serif;
      font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--bronze);
      margin-bottom: 18px;
      display: flex; align-items: center; gap: 14px;
    }
    .section-label::before {
      content: ''; display: block;
      width: 32px; height: 1px; background: var(--bronze);
    }
    .section-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 4vw, 52px); font-weight: 400;
      line-height: 1.12; letter-spacing: -0.01em;
    }
    .section-heading em { font-style: italic; color: var(--bronze); }

    /* ABOUT */
    .about {
      padding: var(--section-pad) var(--side-pad);
    }
    .about-inner {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: 1.1fr 1fr;
      gap: clamp(48px, 7vw, 100px); align-items: center;
    }
    .about-content p {
      color: var(--text-secondary); margin-top: 24px;
      line-height: 1.8; font-weight: 300;
    }
    .about-details {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 20px; margin-top: 40px;
    }
    .about-detail-item {
      padding: 20px 0;
      border-top: 1px solid var(--ivory-dark);
    }
    .about-detail-label {
      font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--text-secondary);
      margin-bottom: 6px;
    }
    .about-detail-val {
      font-family: 'Playfair Display', serif;
      font-size: 18px; color: var(--charcoal);
    }
    .about-detail-val a {
      color: var(--bronze); text-decoration: none;
      transition: opacity 0.2s;
    }
    .about-detail-val a:hover { opacity: 0.7; }
    .about-visual {
      position: relative;
    }

    .about-slideshow {
      position: relative;
      width: 100%;
      aspect-ratio: 3/4;
      overflow: hidden;
    }
    .about-slideshow img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .about-slideshow img.slide-active {
      opacity: 1;
    }
    .slideshow-dots {
      display: flex;
      gap: 8px;
      z-index: 2;
    }
    .slideshow-nav {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 2;
    }
    .slideshow-prev, .slideshow-next {
      background: rgba(28,25,22,0.5);
      border: none;
      cursor: pointer;
      color: var(--ivory);
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
      padding: 0;
    }
    .slideshow-prev:hover, .slideshow-next:hover {
      background: rgba(166,135,93,0.8);
    }
    .slideshow-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(247,243,236,0.4);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .slideshow-dot.dot-active {
      background: var(--bronze-light);
      transform: scale(1.25);
    }
    .about-slideshow::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 60px;
      background: linear-gradient(to top, rgba(28,25,22,0.3), transparent);
      pointer-events: none;
      z-index: 1;
    }
    .about-years-badge {
      position: absolute; top: 32px; left: -24px;
      background: var(--charcoal); padding: 24px;
      text-align: center;
      z-index: 3;
    }
    .about-years-num {
      font-family: 'Playfair Display', serif;
      font-size: 44px; font-weight: 400;
      color: var(--bronze-light); line-height: 1;
    }
    .about-years-text {
      font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
      text-transform: uppercase; color: rgba(247,243,236,0.5);
      margin-top: 4px;
    }

    /* SERVICES */
    .services {
      background: var(--charcoal);
      padding: var(--section-pad) var(--side-pad);
      position: relative;
      overflow: hidden;
    }
    .services::before {
      content: '';
      position: absolute; top: -200px; right: -200px;
      width: 600px; height: 600px;
      border: 1px solid rgba(166,135,93,0.07);
      border-radius: 50%;
      pointer-events: none;
    }
    .services-inner {
      max-width: 1280px; margin: 0 auto;
    }
    .services .section-label { color: var(--bronze-light); }
    .services .section-label::before { background: var(--bronze-light); }
    .services .section-heading { color: var(--ivory); }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; margin-top: 64px;
      background: rgba(255,255,255,0.06);
    }
    .service-item {
      background: var(--charcoal);
      padding: 48px 36px;
      transition: background 0.4s ease;
      position: relative;
    }
    .service-item:hover { background: var(--charcoal-mid); }
    .service-item::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 0; height: 2px;
      background: var(--bronze);
      transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .service-item:hover::before { width: 100%; }
    .service-icon-wrap {
      width: 52px; height: 52px;
      border: 1px solid rgba(166,135,93,0.3);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 28px;
    }
    .service-icon-wrap svg { width: 24px; height: 24px; stroke: var(--bronze-light); fill: none; }
    .service-item h3 {
      font-family: 'Playfair Display', serif;
      font-size: 24px; font-weight: 400; color: var(--ivory);
      margin-bottom: 14px;
    }
    .service-item p {
      font-size: 14.5px; color: rgba(247,243,236,0.5);
      line-height: 1.75; font-weight: 300;
    }
    .service-link {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 28px; font-size: 11.5px; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--bronze-light); text-decoration: none;
      transition: gap 0.3s ease;
    }
    .service-link:hover { gap: 14px; }
    .service-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

    /* WHY US */
    .why-us {
      padding: var(--section-pad) var(--side-pad);
    }
    .why-us-inner {
      max-width: 1280px; margin: 0 auto;
    }
    .why-us-header {
      text-align: center; margin-bottom: 72px;
    }
    .why-us-header .section-label { justify-content: center; }
    .why-us-header .section-label::before { display: none; }
    .why-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    .why-card {
      text-align: center;
      padding: 40px 24px;
      border: 1px solid transparent;
      transition: all 0.35s ease;
    }
    .why-card:hover {
      border-color: var(--ivory-dark);
      background: var(--white);
    }
    .why-number {
      font-family: 'Playfair Display', serif;
      font-size: 48px; font-weight: 400; color: var(--bronze);
      line-height: 1; margin-bottom: 16px;
    }
    .why-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 16px; font-weight: 600; color: var(--charcoal);
      margin-bottom: 10px; letter-spacing: 0.01em;
    }
    .why-card p {
      font-size: 14px; color: var(--text-secondary); line-height: 1.65;
      font-weight: 300;
    }

    /* AREAS */
    .areas {
      background: var(--ivory-mid);
      padding: var(--section-pad) var(--side-pad);
    }
    .areas-inner {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: clamp(48px, 6vw, 80px); align-items: start;
    }
    .areas-text p {
      color: var(--text-secondary); margin-top: 20px;
      line-height: 1.8; font-weight: 300;
    }
    .areas-tags {
      display: flex; flex-wrap: wrap; gap: 10px;
      align-content: start;
    }
    .area-tag {
      padding: 10px 22px;
      font-family: 'Outfit', sans-serif;
      font-size: 13px; font-weight: 400;
      letter-spacing: 0.03em;
      color: var(--charcoal-light);
      border: 1px solid rgba(166,135,93,0.3);
      transition: all 0.25s ease;
      background: transparent;
    }
    .area-tag:hover {
      border-color: var(--bronze);
      color: var(--bronze);
    }
    .area-tag--active {
      background: var(--charcoal);
      color: var(--ivory);
      border-color: var(--charcoal);
    }
    .area-tag--active:hover {
      background: var(--bronze);
      border-color: var(--bronze);
      color: var(--charcoal);
    }

    /* REVIEWS */
    .reviews {
      padding: var(--section-pad) var(--side-pad);
    }
    .reviews-inner {
      max-width: 1280px; margin: 0 auto;
    }
    .reviews-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 56px;
    }
    .reviews-rating {
      display: flex; align-items: center; gap: 20px;
    }
    .reviews-rating-num {
      font-family: 'Playfair Display', serif;
      font-size: 64px; font-weight: 400; color: var(--bronze);
      line-height: 1;
    }
    .reviews-rating-stars {
      color: var(--bronze); font-size: 18px; letter-spacing: 3px;
      margin-bottom: 4px;
    }
    .reviews-rating-text {
      font-size: 13px; color: var(--text-secondary);
    }
    .reviews-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .review-card {
      background: var(--white);
      padding: 36px;
      border: 1px solid rgba(166,135,93,0.1);
      transition: all 0.35s ease;
      position: relative;
    }
    .review-card:hover {
      box-shadow: 0 16px 48px rgba(28,25,22,0.06);
      transform: translateY(-4px);
    }
    .review-stars {
      color: var(--bronze); font-size: 14px; letter-spacing: 3px;
      margin-bottom: 20px;
    }
    .review-body {
      font-size: 15px; color: var(--text-secondary);
      line-height: 1.75; font-style: italic; font-weight: 300;
    }
    .review-footer {
      margin-top: 24px; padding-top: 20px;
      border-top: 1px solid var(--ivory-mid);
      display: flex; justify-content: space-between; align-items: center;
    }
    .review-author-name {
      font-weight: 600; font-size: 14px; color: var(--charcoal);
    }
    .review-verified {
      font-size: 11px; font-weight: 500; color: var(--bronze);
      letter-spacing: 0.06em;
    }

    /* SHOWROOM */
    .showroom {
      overflow: hidden;
    }
    .showroom-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      min-height: 600px;
    }
    .showroom-content {
      padding: var(--section-pad) var(--side-pad);
      display: flex; flex-direction: column; justify-content: center;
    }
    .showroom .section-label { color: var(--bronze-light); }
    .showroom .section-label::before { background: var(--bronze-light); }
    .showroom .section-heading { color: var(--ivory); }
    .showroom-desc {
      color: rgba(247,243,236,0.55); margin-top: 24px;
      line-height: 1.8; max-width: 440px; font-weight: 300;
    }
    .showroom-info {
      margin-top: 44px; display: flex; flex-direction: column; gap: 0;
    }
    .showroom-info-row {
      display: flex; align-items: flex-start; gap: 20px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .showroom-info-icon {
      flex-shrink: 0; width: 20px; margin-top: 2px;
    }
    .showroom-info-icon svg {
      width: 18px; height: 18px; stroke: var(--bronze-light);
      fill: none;
    }
    .showroom-info-label {
      font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(247,243,236,0.35); margin-bottom: 4px;
    }
    .showroom-info-val {
      font-size: 15px; color: var(--ivory); font-weight: 300;
    }
    .showroom-info-val a {
      color: var(--ivory); text-decoration: none;
      transition: color 0.2s;
    }
    .showroom-info-val a:hover { color: var(--bronze-light); }
    .showroom-img-wrap {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .showroom-img-wrap img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .showroom-img-single {
      grid-template-columns: 1fr;
    }
    .showroom-location {
      background: var(--charcoal);
      overflow: hidden;
    }
    .showroom-location-alt {
      background: var(--charcoal-mid);
    }
    .showroom-inner-reverse {
      direction: rtl;
    }
    .showroom-inner-reverse > * {
      direction: ltr;
    }

    /* FAQ */
    .faq {
      padding: var(--section-pad) var(--side-pad);
    }
    .faq-inner {
      max-width: 800px; margin: 0 auto;
    }
    .faq-header {
      text-align: center; margin-bottom: 56px;
    }
    .faq-header .section-label { justify-content: center; }
    .faq-header .section-label::before { display: none; }
    .faq-list {
      border-top: 1px solid var(--ivory-dark);
    }
    .faq-item {
      border-bottom: 1px solid var(--ivory-dark);
    }
    .faq-trigger {
      width: 100%; background: none; border: none; cursor: pointer;
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 400; color: var(--charcoal);
      padding: 28px 0; text-align: left;
      display: flex; justify-content: space-between; align-items: center; gap: 20px;
      transition: color 0.2s ease;
    }
    .faq-trigger:hover { color: var(--bronze); }
    .faq-toggle-icon {
      flex-shrink: 0;
      width: 28px; height: 28px;
      border: 1px solid var(--ivory-dark);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.3s ease;
    }
    .faq-toggle-icon svg {
      width: 12px; height: 12px; stroke: var(--charcoal);
      transition: transform 0.3s ease;
    }
    .faq-item.open .faq-toggle-icon {
      background: var(--charcoal);
      border-color: var(--charcoal);
    }
    .faq-item.open .faq-toggle-icon svg {
      stroke: var(--ivory);
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease;
    }
    .faq-answer-inner {
      padding-bottom: 28px;
      font-size: 15px; color: var(--text-secondary);
      line-height: 1.8; font-weight: 300;
    }
    .faq-item.open .faq-answer { max-height: 300px; }

    /* CTA BAND */
    .cta {
      background: var(--bronze);
      padding: clamp(56px, 8vw, 96px) var(--side-pad);
      position: relative; overflow: hidden;
    }
    .cta::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 400px; height: 400px;
      border: 1px solid rgba(28,25,22,0.08);
      border-radius: 50%;
      pointer-events: none;
    }
    .cta-inner {
      max-width: 700px; margin: 0 auto; text-align: center;
      position: relative;
    }
    .cta h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 4vw, 52px); font-weight: 400;
      color: var(--charcoal); margin-bottom: 16px;
      line-height: 1.15;
    }
    .cta p {
      color: rgba(28,25,22,0.6); font-size: 16px;
      margin-bottom: 40px; font-weight: 300;
    }
    .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-dark {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--charcoal); color: var(--ivory);
      padding: 16px 40px; font-size: 12.5px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      text-decoration: none; transition: all 0.35s ease;
      font-family: 'Outfit', sans-serif;
    }
    .btn-dark:hover { opacity: 0.85; }
    .btn-dark--outline {
      background: transparent; color: var(--charcoal);
      border: 1.5px solid rgba(28,25,22,0.35);
    }
    .btn-dark--outline:hover {
      border-color: var(--charcoal); opacity: 1;
    }

    /* FOOTER */
    .site-footer {
      background: var(--charcoal-mid);
      padding: 72px var(--side-pad) 36px;
      color: rgba(247,243,236,0.45);
    }
    .footer-inner {
      max-width: 1280px; margin: 0 auto;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 56px;
    }
    .footer-brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      color: rgba(247,243,236,0.75);
      margin-bottom: 18px;
    }
    .footer-brand p {
      font-size: 13.5px; line-height: 1.8; max-width: 300px;
      font-weight: 300;
    }
    .footer-abn {
      font-size: 11.5px; margin-top: 14px;
      color: rgba(247,243,236,0.25);
    }
    .footer-col h4 {
      font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(247,243,236,0.7); margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-col a {
      font-size: 13.5px; color: rgba(247,243,236,0.4); text-decoration: none;
      transition: color 0.2s; font-weight: 300;
    }
    .footer-col a:hover { color: var(--bronze-light); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 28px; font-size: 12px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-bottom a {
      color: rgba(247,243,236,0.35); text-decoration: none;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }

    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .nav-quote { display: none; }
      .nav-hamburger { display: block; }

      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }
      .hero-left { padding: 48px var(--side-pad); order: 2; }
      .hero-left::before { display: none; }
      .hero-right { order: 1; height: 50vh; min-height: 320px; }
      .hero-badge { bottom: 20px; left: 20px; padding: 14px 18px; }
      .hero-metrics { gap: 32px; }
      .hero-metric-val { font-size: 26px; }

      .about-inner { grid-template-columns: 1fr; }
      .about-visual { order: -1; }
      .about-years-badge { left: -12px; top: 16px; padding: 18px; }
      .about-years-num { font-size: 36px; }
      .about-details { grid-template-columns: 1fr; }

      .areas-inner { grid-template-columns: 1fr; }

      .reviews-header { flex-direction: column; align-items: flex-start; gap: 24px; }
      .reviews-grid { grid-template-columns: 1fr; }

      .showroom-inner { grid-template-columns: 1fr; }
      .showroom-inner-reverse { direction: ltr; }
      .showroom-img-wrap { height: 400px; }

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

      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    }

    @keyframes heroFadeIn {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-left > * {
      opacity: 0;
      animation: heroFadeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .hero-left > :nth-child(1) { animation-delay: 0.1s; }
    .hero-left > :nth-child(2) { animation-delay: 0.2s; }
    .hero-left > :nth-child(3) { animation-delay: 0.35s; }
    .hero-left > :nth-child(4) { animation-delay: 0.5s; }
    .hero-left > :nth-child(5) { animation-delay: 0.65s; }

    /* INTERIOR PAGES (showroom, about) */
    body.interior .site-nav { position: sticky; }
    .nav-menu a.active { color: var(--bronze); }
    .nav-menu a.active::after { width: 100%; }
    .page-hero {
      background: var(--charcoal);
      padding: clamp(56px, 8vw, 104px) var(--side-pad);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; top: -180px; right: -180px;
      width: 480px; height: 480px;
      border: 1px solid rgba(166,135,93,0.08);
      border-radius: 50%;
      pointer-events: none;
    }
    .page-hero .section-label { color: var(--bronze-light); justify-content: center; }
    .page-hero .section-label::before { display: none; }
    .page-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 400; color: var(--ivory);
      line-height: 1.1; letter-spacing: -0.01em;
      max-width: 900px; margin: 0 auto;
    }
    .page-hero h1 em { font-style: italic; color: var(--bronze-light); }
    .page-hero p {
      color: rgba(247,243,236,0.6); max-width: 600px;
      margin: 22px auto 0; font-weight: 300; line-height: 1.8;
    }
