/* ============================================
   CRESTFIELD DECKING — MASTER DESIGN SYSTEM
   Brand Colors from Logo:
   Navy: #1B2D4F  |  Gold: #C5A55A
   Domain: crestfielddecking.com
   ============================================ */

/* ============================================
   01. RESET & GLOBAL VARIABLES
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1B2D4F;
  --navy-dark: #0F1D33;
  --navy-light: #2A4170;
  --gold: #C5A55A;
  --gold-light: #D4BA7A;
  --gold-dark: #A8893E;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-light: #F4F4F2;
  --gray-mid: #E8E8E4;
  --gray-text: #6B6B6B;
  --gray: #e7e7e2;
  --text-dark: #1A1A1A;
  --text: #1a1a1a;
  --muted: #666;
  --success-bg: #f6f3e8;
  --shadow: 0 18px 40px rgba(0,0,0,0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
  --max-width: 1280px;
  --section-pad: clamp(60px, 8vw, 120px);
}

/* ============================================
   02. GLOBAL ELEMENTS
   ============================================ */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================
   03. LAYOUT & CONTAINERS
   ============================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ============================================
   04. TYPOGRAPHY UTILITIES
   ============================================ */

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 600px;
  line-height: 1.8;
}

/* ============================================
   05. BUTTONS
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 35px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

/* ============================================
   06. HEADER
   ============================================ */

/* === 06.1 TOPBAR === */

.topbar {
  background: var(--navy-dark);
  padding: 10px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a {
  color: var(--gold-light);
  transition: color 0.3s;
}

.topbar a:hover {
  color: var(--white);
}

.topbar-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* === 06.2 HEADER / NAV === */

.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 50px;
  height: 50px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--gold);
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active {
  color: var(--gold);
}

.nav a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 12px 28px !important;
  letter-spacing: 1px !important;
  transition: background 0.3s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}

/* === 06.3 MOBILE TOGGLE === */

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.mobile-toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

/* === 06.4 MOBILE MENU === */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-close svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

/* ============================================
   07. SHARED PAGE HERO
   ============================================ */

.page-hero {
  background: var(--navy);
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.page-hero.about-hero {
  background-image: url('/wp-content/uploads/2026/03/about-page-hero2.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: clamp(120px, 14vw, 200px) 0 clamp(100px, 12vw, 160px);
}
.page-hero.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,29,51,0.55) 0%,
    rgba(15,29,51,0.40) 25%,
    rgba(15,29,51,0.18) 50%,
    rgba(15,29,51,0.03) 65%,
    transparent 80%
  );
  z-index: 1;
}
.page-hero.about-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero.about-hero .section-heading {
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
}

.page-hero.about-hero p {
  text-shadow: 0 1px 12px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.25);
}

.page-hero.about-hero .section-label {
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}

.page-hero.services-hero {
  background-image: url('/wp-content/uploads/2026/03/about-page-hero.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: clamp(120px, 14vw, 200px) 0 clamp(100px, 12vw, 160px);
}
.page-hero.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,29,51,0.55) 0%,
    rgba(15,29,51,0.40) 25%,
    rgba(15,29,51,0.18) 50%,
    rgba(15,29,51,0.03) 65%,
    transparent 80%
  );
  z-index: 1;
}
.page-hero.services-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero.services-hero .section-heading {
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
}

.page-hero.services-hero p {
  text-shadow: 0 1px 12px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.25);
}

.page-hero.services-hero .section-label {
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
  .page-hero.services-hero {
    background-image: url('/wp-content/uploads/2026/03/service-page-hero-mobile.jpg');
    background-position: center center;
  }
}

.page-hero.contact-hero {
  background-image: url('https://crestfielddecking.com/wp-content/uploads/2026/03/contact-page-hero7.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: clamp(120px, 14vw, 200px) 0 clamp(100px, 12vw, 160px);
}
.page-hero.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,29,51,0.55) 0%,
    rgba(15,29,51,0.40) 25%,
    rgba(15,29,51,0.18) 50%,
    rgba(15,29,51,0.03) 65%,
    transparent 80%
  );
  z-index: 1;
}
.page-hero.contact-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero.contact-hero .section-heading {
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
}

.page-hero.contact-hero p {
  text-shadow: 0 1px 12px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.25);
}

.page-hero.contact-hero .section-label {
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(197,165,90,0.08);
  border-radius: 50%;
}

.page-hero .section-heading {
  color: var(--white);
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.3rem;
  max-width: 600px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.breadcrumb a {
  color: var(--gold-light);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--white);
}

/* ============================================
   08. TRUST BAR
   ============================================ */

.trust-bar {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-text);
}

.trust-icon {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

/* ============================================
   09. HOMEPAGE
   ============================================ */

/* === 09.1 HOMEPAGE HERO === */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  background: url('https://crestfielddecking.com/wp-content/uploads/2026/03/Pressure-Treated-deck-black-aluminum-railing-furniture.jpg') center center / cover no-repeat;
  z-index: 0;
}

.hero-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(197,165,90,0.03) 40px,
    rgba(197,165,90,0.03) 80px
  );
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,29,51,0.75) 0%,
    rgba(15,29,51,0.65) 25%,
    rgba(15,29,51,0.30) 50%,
    rgba(15,29,51,0.05) 65%,
    transparent 80%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content {
  max-width: 720px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  max-width: 720px;
}

.hero-stat {
  flex: 1;
  padding-right: 30px;
}

.hero-stat:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 30px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* === 09.2 INTRO SECTION / WHO WE ARE === */

.intro {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image {
  position: relative;
  aspect-ratio: 3/3.5;
  background: var(--gray-light);
  overflow: hidden;
  border-radius: 10px;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gray-text);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.intro-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold);
  z-index: -1;
}

.intro-text .section-sub {
  margin-bottom: 32px;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.intro-feature p {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.intro-feature strong {
  font-weight: 600;
}

/* === 09.3 SERVICES GRID === */

.services {
  padding: var(--section-pad) 0;
  background: var(--gray-light);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-card-image {
  height: 260px;
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gray-text);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-card-content {
  padding: 32px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 14px;
}

.service-link svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.service-detail-image {
  border-radius: 10px;
  overflow: hidden;
}

/* === 09.4 SHOWCASE / PORTFOLIO === */

.showcase {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.showcase-item {
  position: relative;
  aspect-ratio: 1;
  background: var(--gray-light);
  overflow: hidden;
  cursor: pointer;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,45,79,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
  opacity: 1;
}

.showcase-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.showcase-overlay p {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === 09.5 PROCESS === */

.process {
  padding: var(--section-pad) 0;
  background: var(--navy);
  color: var(--white);
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-header .section-heading {
  color: var(--white);
}

.process-header .section-sub {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.process-step {
  text-align: center;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* === 09.6 TESTIMONIALS === */

.testimonials {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header .section-sub {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 36px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-mid);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.testimonial-loc {
  font-size: 0.78rem;
  color: var(--gray-text);
}

/* === 09.7 CTA BANNER === */

.cta-banner {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(197,165,90,0.1);
  border-radius: 50%;
}

.cta-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-text p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

/* ============================================
   10. SERVICE PAGES
   ============================================ */

/* === 10.1 SERVICE DETAIL === */

.service-detail {
  padding: clamp(30px, 4vw, 60px) 0;
}

.service-detail.gray-bg {
  background: var(--gray-light);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail.reverse .service-detail-grid {
  direction: rtl;
}

.service-detail.reverse .service-detail-grid > * {
  direction: ltr;
}

.service-detail-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-light), var(--gray-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gray-text);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-detail-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-detail-content p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-list {
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.feature-list li svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* === 10.2 SERVICE AREAS === */

.service-areas {
  padding: var(--section-pad) 0;
  background: var(--gray-light);
}

.service-areas-inner {
  text-align: center;
}

.service-areas-inner .section-sub {
  margin: 0 auto 40px;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-tag {
  background: var(--white);
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--gray-mid);
  transition: all 0.3s;
}

.area-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   11. ABOUT PAGE
   ============================================ */

/* === 11.1 STORY === */

.story {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-light), var(--gray-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gray-text);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.story-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--gold);
  z-index: -1;
}

.story-text p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.9;
  margin-bottom: 20px;
}

.story-text p:first-of-type {
  font-size: 1.05rem;
  color: var(--text-dark);
}

/* === 11.2 VALUES === */

.values {
  padding: var(--section-pad) 0;
  background: var(--gray-light);
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-header p {
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-card {
  background: var(--white);
  padding: 44px 36px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  fill: var(--gold);
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.7;
}

/* === 11.3 STATS BANNER === */

.stats-banner {
  padding: 80px 0;
  background: var(--navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-item-text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}

/* === 11.4 PROMISE === */

.promise {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.promise-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-light), var(--gray-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gray-text);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.promise-list {
  margin: 24px 0 36px;
}

.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.promise-list li svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   12. CONTACT PAGE
   ============================================ */

/* === 12.1 CONTACT SECTION === */

.contact-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.contact-info > p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.contact-detail h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.92rem;
  color: var(--gray-text);
  display: block;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-hours {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-mid);
}

.contact-hours h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.88rem;
}

.contact-hours-row span:first-child {
  color: var(--text-dark);
  font-weight: 500;
}

.contact-hours-row span:last-child {
  color: var(--gray-text);
}

.contact-form-wrap {
  background: var(--gray-light);
  padding: clamp(32px, 4vw, 52px);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 0.88rem;
  color: var(--gray-text);
  margin-bottom: 30px;
}

.wpforms-placeholder {
  background: var(--white);
  border: 2px dashed var(--gray-mid);
  padding: 60px 30px;
  text-align: center;
  color: var(--gray-text);
  font-size: 0.9rem;
}

.wpforms-placeholder code {
  display: block;
  margin-top: 12px;
  background: var(--gray-light);
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--navy);
}

/* === 12.2 MAP === */

.map-section {
  background: var(--gray-light);
  padding: 0 0 40px;
}

.map-embed {
  width: min(1200px, calc(100% - 48px));
  height: 360px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 29, 51, 0.10);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 767px) {
  .map-section {
    padding: 0 0 28px;
  }

  .map-embed {
    width: calc(100% - 32px);
    height: 300px;
    border-radius: 18px;
  }
}

/* === 12.3 FAQ === */

.faq {
  padding: var(--section-pad) 0;
  background: var(--gray-light);
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header p {
  color: var(--gray-text);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1rem;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-mid);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-question h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 16px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.8;
}

/* ============================================
   13. FOOTER
   ============================================ */

.footer {
  background: var(--navy-dark);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.6);
}

.footer-social a:hover svg {
  fill: var(--white);
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  padding: 6px 0;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  padding: 24px 0;
  margin-top: 20px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.78rem;
}

.footer-bottom a {
  color: var(--gold);
}

/* ============================================
   14. GALLERY 
   ============================================ */

/* === 14.1 PROJECT CARD GRID === */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.project-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray-mid) 100%);
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.05);
}

.project-card-image .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card-info {
  padding: 24px 28px 28px;
}

.project-card-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.project-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}

.project-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.project-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-text);
}

.project-card-meta svg {
  flex-shrink: 0;
  stroke: var(--gray-text);
}

/* === 14.2 PROJECT DETAIL PAGE === */

.project-detail {
  padding: var(--section-pad) 0;
  background: var(--white);
}

/* Info Bar */
.project-info-bar {
  display: flex;
  gap: 0;
  background: var(--gray-light);
  border-radius: 12px;
  padding: 28px 36px;
  margin-bottom: 40px;
}

.project-info-item {
  flex: 1;
  padding: 0 24px;
}

.project-info-item:not(:last-child) {
  border-right: 1px solid var(--gray-mid);
}

.project-info-item:first-child {
  padding-left: 0;
}

.project-info-item:last-child {
  padding-right: 0;
}

.project-info-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 6px;
}

.project-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

/* Photo Layout */
.project-photos {
  margin-bottom: 50px;
}

.project-photo-main {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.project-photo-main img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.project-photo-main img:hover {
  opacity: 0.92;
}

.project-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.project-photo {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.project-photo img:hover {
  transform: scale(1.03);
  opacity: 0.92;
}

/* Description - LEFT ALIGNED */
.project-description {
  max-width: 800px;
}

.project-description h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  text-align: left;
}

.project-description p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.9;
  text-align: left;
}

/* Project CTA Section */
.project-cta {
  padding: 60px 0;
  background: var(--gray-light);
}

.project-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.project-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.project-cta-text p {
  font-size: 0.92rem;
  color: var(--gray-text);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-section .gallery-header {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.gallery-section .gallery-header .section-sub {
  margin: 0 auto;
}

/* === PROJECT LIGHTBOX === */

.project-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,29,51,0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.project-lightbox.open {
  display: flex;
}

.project-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
  z-index: 3;
}

.project-lightbox-close:hover {
  color: var(--gold);
}

.project-lightbox-img {
  max-width: 1000px;
  max-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-lightbox-img img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.project-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 29, 51, 0.7);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.25s ease;
}

.project-lightbox-nav:hover {
  background: rgba(197, 165, 90, 0.9);
}

.project-lightbox-prev {
  left: 24px;
}

.project-lightbox-next {
  right: 24px;
}

.project-lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 29, 51, 0.76);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 999px;
  z-index: 2;
}

/* === PROJECT DETAIL RESPONSIVE === */

@media (max-width: 1024px) {
  .project-info-bar {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 28px;
  }

  .project-info-item {
    flex: none;
    width: calc(50% - 10px);
    padding: 0;
    border-right: none !important;
  }
}

@media (max-width: 768px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-info-bar {
    flex-direction: column;
    gap: 16px;
  }

  .project-info-item {
    width: 100%;
    padding: 0;
    border-right: none !important;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-mid);
  }

  .project-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .project-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .project-lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .project-lightbox-prev { left: 12px; }
  .project-lightbox-next { right: 12px; }
}

@media (max-width: 480px) {
  .project-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
/* ============================================
   15. SHARED ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   16. RESPONSIVE
   ============================================ */

/* === 16.1 TABLET === */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* === 16.2 MOBILE === */

@media (max-width: 991px) {
  .hero-placeholder {
    background: url('/wp-content/uploads/2026/03/home-page-hero-mobile2.jpg') center center / cover no-repeat !important;
  }
  .hero-bg {
    background: linear-gradient(
      180deg,
      rgba(15,29,51,0.55) 0%,
      rgba(15,29,51,0.35) 45%,
      rgba(15,29,51,0.18) 100%
    );
  }
  .hero-title {
    text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
  }
  .hero-desc {
    text-shadow: 0 1px 12px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.25);
  }
  .hero-label {
    text-shadow: 0 1px 10px rgba(0,0,0,0.35);
  }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-toggle { display: flex; }
  .topbar-right { display: none; }

  .hero {
    min-height: auto !important;
    display: block;
  }
  .hero .container {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    padding-top: 24px;
  }
  .hero-stat {
    border-right: none !important;
    margin-right: 0 !important;
    padding-right: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .hero-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .hero .hero-desc {
    font-size: 1.1rem;
  }

  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-image { order: -1; }

  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 50px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .story-grid, .promise-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse .service-detail-grid { direction: ltr; }

  .cta-banner .container { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
}

/* === 16.3 SMALL MOBILE === */

@media (max-width: 480px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
}

/* ============================================
   17. DECK CALCULATOR
   ============================================ */

/* === 17.1 CALCULATOR LAYOUT === */

.deck-calc-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.deck-calc-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.deck-calc-left {
  padding: 36px;
  background: var(--white);
}

.deck-calc-right {
  padding: 36px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.deck-calc-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.deck-calc-left h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  color: var(--navy);
}

.deck-calc-intro {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 700px;
}

/* === 17.2 CALCULATOR FORM FIELDS === */

.deck-calc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.deck-calc-field,
.deck-calc-field-full {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.deck-calc-field-full {
  grid-column: 1 / -1;
}

.deck-calc-field label,
.deck-calc-field-full > label {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.deck-calc-wrap input,
.deck-calc-wrap select {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #d8d8d2;
  border-radius: 12px;
  font-size: 15px;
  background: #fff;
  color: var(--text);
}

.deck-calc-wrap input:focus,
.deck-calc-wrap select:focus {
  outline: 2px solid rgba(197,165,90,0.35);
  border-color: var(--gold);
}

/* === 17.3 CALCULATOR OPTIONS === */

.deck-calc-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.deck-calc-option-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 14px;
  background: var(--off-white);
}

.deck-calc-option-box input {
  width: auto;
  margin: 0;
}

/* === 17.4 CALCULATOR ACTIONS / BUTTONS === */

.deck-calc-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.deck-calc-wrap button {
  border: none;
  cursor: pointer;
  border-radius: 12px;
  padding: 15px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.deck-calc-wrap button:hover {
  transform: translateY(-1px);
}

.deck-calc-btn-primary {
  background: var(--gold);
  color: var(--white);
}

.deck-calc-btn-primary:hover {
  background: var(--gold-dark);
}

.deck-calc-btn-secondary {
  background: #ecece7;
  color: var(--navy);
}

.deck-calc-pricing-preview {
  margin-top: 20px;
  padding: 16px;
  border: 1px dashed #d7c79b;
  border-radius: 14px;
  background: var(--success-bg);
  color: var(--navy);
  line-height: 1.6;
  font-size: 14px;
}

/* === 17.5 CALCULATOR RESULTS === */

.deck-calc-result-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 14px;
}

.deck-calc-result-range {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--white);
}

.deck-calc-result-sub {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 26px;
}

.deck-calc-result-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 16px;
}

.deck-calc-result-list {
  display: grid;
  gap: 12px;
}

.deck-calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 10px;
}

.deck-calc-result-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.deck-calc-result-row span:first-child {
  color: rgba(255,255,255,0.74);
  font-size: 14px;
}

.deck-calc-result-row strong {
  color: var(--white);
  font-size: 15px;
  text-align: right;
}

.deck-calc-note {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.74);
}

.deck-calc-lead-cta {
  margin-top: 18px;
  display: inline-flex;
  align-self: flex-start;
  text-decoration: none;
  background: var(--gold);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 700;
}

/* === 17.6 CALCULATOR RESPONSIVE === */

@media (max-width: 920px) {
  .deck-calc-card {
    grid-template-columns: 1fr;
  }

  .deck-calc-grid,
  .deck-calc-option-grid {
    grid-template-columns: 1fr;
  }

  .deck-calc-left,
  .deck-calc-right {
    padding: 24px;
  }
}

/* === MATERIALS WE TRUST / SUPPLIERS === */
.suppliers {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.suppliers-inner {
  text-align: center;
}
.suppliers-inner .section-sub {
  margin: 0 auto 50px;
}
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
}
.supplier-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 80px;
}
.supplier-item img {
  max-height: 50px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease;
}
.supplier-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .suppliers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .suppliers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .suppliers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .supplier-item img {
    max-height: 40px;
    max-width: 110px;
  }
}

.site-footer {
  display: none;
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 35px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-primary,
.btn-navy,
.btn-outline,
.btn-outline-navy,
.nav-cta {
  border-radius: 8px;
}

.services-cta {
  text-align: center;
  margin-top: 50px;
}

.services-cta h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.services-cta p {
  font-size: 0.95rem;
  color: var(--gray-text);
  margin-bottom: 24px;
}

.intro-text .btn-navy,
.intro-text .btn-outline-navy {
  margin-bottom: 10px;
}
.service-detail-content .btn-primary {
  margin-bottom: 10px;
}

.cta-banner .btn-primary {
  position: relative;
  z-index: 2;
}

.hero-stat-number,
.hero-stat-text {
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .page-hero.contact-hero {
    background-image: url('/wp-content/uploads/2026/03/mobile-contact-hero.jpg');
    background-position: center center;
  }
}

@media (max-width: 768px) {
  .page-hero.services-hero {
    background-image: url('/wp-content/uploads/2026/03/service-page-hero-mobile2.jpg');
    background-position: center center;
  }
}

@media (max-width: 768px) {
  .page-hero.about-hero {
    background-image: url('/wp-content/uploads/2026/03/about-page-hero-mobile.jpg');
    background-position: center center;
  }
}