@charset "UTF-8";
/*
Theme Name: DW Installations
Theme URI: http://dwinstallation.kinsta.cloud
Author: Fisher Tech Solutions LLC
Author URI: http://fishertechsolutions.com
Description: DW Installations Theme
Version: 1.0
*/
:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2e42;
  --slate: #2c4a6e;
  --gold: #c8973a;
  --gold-light: #e2b85c;
  --cream: #f5f0e8;
  --white: #ffffff;
  --gray-light: #f7f8fa;
  --gray-text: #4a5568;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
}

.eapps-widget {
  margin-top: 2em;
  padding-left: 1em;
  padding-right: 1em;
}

.dwi-fab-container {
  display: none;
}

@media (max-width: 768px) {
  .dwi-fab-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 9999;
  }
  /* Child action rows */
  .dwi-fab-action {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(12px) scale(0.88);
    transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
  }
  .dwi-fab-action.dwi-fab-action--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  /* Stagger delays */
  .dwi-fab-quote {
    transition-delay: 0.05s;
  }
  .dwi-fab-call {
    transition-delay: 0s;
  }
  /* Labels */
  .dwi-fab-label {
    font-family: var(--font-body, "Source Sans 3", sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  }
  .dwi-fab-call .dwi-fab-label {
    background: #c9a84c;
  }
  .dwi-fab-quote .dwi-fab-label {
    background: #1b2a4a;
  }
  /* Icon circles */
  .dwi-fab-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.15s ease;
    text-decoration: none;
  }
  .dwi-fab-icon:active {
    transform: scale(0.92);
  }
  .dwi-fab-call .dwi-fab-icon {
    background: #c9a84c;
  }
  .dwi-fab-quote .dwi-fab-icon {
    background: #1b2a4a;
  }
  /* Main FAB */
  .dwi-fab-main {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--navy);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 18px rgba(201, 168, 76, 0.55);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease;
    flex-shrink: 0;
  }
  .dwi-fab-main:active {
    transform: scale(0.92);
  }
  .dwi-fab-main.is-open {
    background: #1b2a4a;
    transform: rotate(45deg);
  }
  /* Icon swap */
  .dwi-fab-icon-close {
    display: none;
  }
  .dwi-fab-main.is-open .dwi-fab-icon-phone {
    display: none;
  }
  .dwi-fab-main.is-open .dwi-fab-icon-close {
    display: block;
  }
}
/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .intro, .why-grid, .area-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .step:not(:last-child)::after {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .badge {
    display: none;
  }
  .stats-block {
    grid-template-columns: 1fr 1fr;
  }
}
/* ─── NAV ─── */
nav {
  background: var(--navy);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
nav ul.sub-menu {
  display: none;
  position: absolute;
  background: var(--navy);
  padding: 1rem;
  top: 100%;
  left: 0;
  border: 2px solid var(--gold);
  border-top: none;
  border-radius: 2px;
  flex-direction: column;
  gap: 0.5rem;
}
nav ul.sub-menu a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
nav ul.sub-menu a:hover {
  background: var(--gold);
  color: var(--navy) !important;
}
nav ul a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav ul a:hover {
  color: var(--gold);
}
nav ul li {
  position: relative;
  /* Submenu */
}
nav ul li:has(.sub-menu) > a::after {
  content: "▼";
  font-size: 0.6rem;
  margin-left: 0.3rem;
  color: rgba(255, 255, 255, 0.6);
  vertical-align: middle;
  transition: transform 0.2s, color 0.2s;
}
nav ul li:has(.sub-menu):hover > a::after, nav ul li:has(.sub-menu).open > a::after {
  content: "▲";
  color: var(--gold);
}
nav ul li:hover > .sub-menu, nav ul li.open > .sub-menu {
  display: flex !important;
  animation: fadeIn 0.3s ease-out;
}
nav > ul > li:last-of-type a {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-weight: 600 !important;
}
nav > ul > li:last-of-type a:hover {
  background: var(--gold-light);
  color: var(--navy) !important;
}
nav .nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
nav .nav-phone {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.2s;
}
nav .nav-phone .nav-phone-icon {
  margin-right: 0.3rem;
}
nav .nav-phone:hover {
  color: var(--gold);
}
nav .nav-estimate {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
nav .nav-estimate:hover {
  background: var(--gold-light);
}

.nav-logo {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1rem 0;
  letter-spacing: 0.02em;
  max-width: 50vw !important;
}
.nav-logo a {
  display: block;
}
.nav-logo img {
  max-height: 80px;
  width: auto;
  max-width: 100%;
  height: auto;
}

.nav-logo span {
  color: var(--gold);
}

/* ─── MOBILE NAV ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

img.emoji[alt=📞] {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    padding: 0 1.25rem;
  }
  nav .nav-hamburger {
    display: flex;
  }
  nav .nav-right {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0 1.25rem;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  nav .nav-right.open {
    display: flex !important;
  }
  nav .nav-right.open .nav-links {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }
  nav ul.nav-links {
    flex-direction: column;
    gap: 0;
    /* Submenu */
  }
  nav ul.nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  nav ul.nav-links a {
    display: block;
    padding: 0.75rem 0.25rem;
  }
  nav ul.nav-links .sub-menu {
    position: static;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0 0 0 1rem;
    display: none;
  }
  nav ul.nav-links .sub-menu.open {
    display: flex !important;
  }
  nav ul.nav-links > li:last-of-type a {
    background: none;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.75rem 0.25rem;
    font-weight: 500 !important;
    border-radius: 0;
  }
  nav .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-top: 1rem;
  }
  nav .nav-actions .nav-phone, nav .nav-actions .nav-estimate {
    text-align: center;
    padding: 0.75rem;
  }
}
/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--slate) 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 5rem;
  text-align: center;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-trust {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.trust-icon {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--navy);
  font-weight: 800;
  flex-shrink: 0;
}

.home {
  /* ─── HERO ─── */
  /* Full-bleed photo grid behind everything */
  /* Diagonal cream panel */
  /* Content */
  /* Override btn-secondary for light background */
  /* Gold stat bar — pinned to bottom */
  /* Mobile */
}
.home .hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 0;
  color: var(--navy);
}
.home .hero-overlay {
  display: none;
}
.home .hero-photos {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  z-index: 0;
  margin-left: 37vw;
}
.home .hero-photo {
  background-size: cover;
  background-position: center;
}
.home .hero-photo--empty {
  background: var(--navy-mid);
}
.home .hero-cream {
  position: absolute;
  inset: 0;
  background: #f5f0e8;
  clip-path: polygon(0 0, 56% 0, 40% 100%, 0 100%);
  z-index: 1;
}
.home .hero-cream::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
}
.home .hero-left {
  position: relative;
  z-index: 2;
  padding: 4.5rem 3rem 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 52%;
  min-height: 560px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .home .hero-left {
    display: grid;
  }
}
.home .hero-line {
  width: 36px;
  height: 3px;
  background: var(--navy);
  margin-bottom: 1.25rem;
}
.home .hero-eyebrow {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 1.25rem;
  width: fit-content;
}
.home .hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: var(--navy);
  text-align: left;
}
.home .hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.home .hero-sub {
  font-size: 1.05rem;
  color: #4a4540;
  max-width: 420px;
  margin: 0 0 2rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.6;
}
.home .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .home .hero-actions {
    grid-row-start: 1;
    margin-bottom: 2em;
  }
}
.home .hero .btn-secondary {
  border-color: rgba(11, 24, 40, 0.4);
  color: var(--navy);
}
.home .hero .btn-secondary:hover {
  border-color: var(--navy);
  background: rgba(11, 24, 40, 0.06);
}
.home .hero-trust {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.home .trust-item {
  color: #6a6058;
}
.home .trust-icon {
  background: var(--navy);
  color: var(--gold);
}
.home .hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0.85rem 1rem;
}
.home .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.home .hero-stats .stat-num {
  color: var(--navy);
}
.home .stat-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.home .stat-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 24, 40, 0.6);
  margin-top: 3px;
}
.home .stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(11, 24, 40, 0.15);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .home {
    /* Photo grid shows below content on mobile */
  }
  .home .hero {
    min-height: auto;
  }
  .home .hero h1 {
    text-align: center;
  }
  .home .hero-cream {
    clip-path: polygon(0 0, 100% 0, 100% 46%, 0 56%);
  }
  .home .hero-left {
    max-width: 100%;
    min-height: auto;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    background: #f5f0e8;
  }
  .home .hero-line {
    margin: 0 auto 1.25rem;
  }
  .home .hero-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .home .hero-actions {
    justify-content: center;
  }
  .home .hero-trust {
    justify-content: center;
  }
  .home .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .home .hero-photos {
    position: relative;
    height: 300px;
    inset: auto;
    margin-left: 0;
  }
  .home .hero-cream {
    clip-path: none;
    position: relative;
    inset: auto;
  }
  .home .hero-stats {
    position: relative;
  }
}

/* ─────────────── CTA BANNER ─────────────── */
.cta-section {
  background: linear-gradient(130deg, var(--navy) 0%, var(--slate) 100%);
  padding: 6rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(200, 151, 58, 0.07);
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(200, 151, 58, 0.05);
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.73);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-phone {
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.cta-phone a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
}

.cta-phone a:hover {
  color: var(--gold);
}

/* ─────────────── PORTFOLIO ─────────────── */
.portfolio-section {
  background: var(--cream);
  padding: 6rem 2rem;
}

.portfolio-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 1rem;
  margin-top: 3rem;
}

.portfolio-item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy-mid), var(--slate));
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-item.featured {
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.portfolio-item:hover img {
  transform: scale(1.04);
}

.portfolio-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.85), transparent);
  padding: 1.5rem 1.25rem 1rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portfolio-placeholder {
  font-size: 3rem;
  opacity: 0.15;
}

.portfolio-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ─────────────── WHY US ─────────────── */
.why-section {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .why-layout .why-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.why-layout h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.1rem;
}

.why-layout > div > p {
  color: var(--gray-text);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--gray-text);
  font-size: 1rem;
}

.check {
  width: 24px;
  height: 24px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check svg {
  width: 11px;
  height: 11px;
}

.checklist li strong {
  color: var(--navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* ─────────────── SERVICES ─────────────── */
.services-section {
  background: var(--gray-light);
  padding: 6rem 2rem;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.section-header p {
  color: var(--gray-text);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

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

.service-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--slate) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.service-card-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 2rem;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.service-card-body p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.service-card:hover .card-link {
  gap: 0.7rem;
}

/* ─────────────── ABOUT / INTRO ─────────────── */
.about-section {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-section {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.about-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.about-section p {
  color: var(--gray-text);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.about-image {
  position: relative;
}

.about-img-block {
  width: 100%;
  height: 480px;
  background: linear-gradient(150deg, var(--navy-mid) 0%, var(--slate) 100%);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative window graphic */
.about-img-block svg {
  width: 160px;
  height: 160px;
  opacity: 0.15;
}

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

.about-img-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--navy);
  border: 3px solid var(--gold);
  color: var(--white);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-badge strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.about-badge span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ─── INTRO SECTION ─── */
.intro {
  background: var(--white);
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .intro {
    grid-template-columns: 1fr;
  }
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.intro p {
  color: var(--gray-text);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.intro-image-block {
  position: relative;
}

.door-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.door-photo-placeholder {
  width: 100%;
  height: 440px;
  background: linear-gradient(135deg, var(--navy-mid), var(--slate));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.door-photo-placeholder::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.door-icon {
  font-size: 3rem;
  opacity: 0.3;
}

.badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--navy);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  font-size: 0.8rem;
  box-shadow: 0 4px 20px rgba(200, 151, 58, 0.4);
}

.badge strong {
  font-size: 1.4rem;
  display: block;
}

/* ─── SERVICES GRID ─── */
.services-section {
  background: var(--gray-light);
  padding: 5rem 2rem;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
  border-top: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── WHY SECTION ─── */
.why-section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.why-grid p {
  color: var(--gray-text);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--gray-text);
}

.check {
  width: 22px;
  height: 22px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check svg {
  width: 11px;
  height: 11px;
  fill: var(--white);
}

.stats-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.stat {
  background: var(--navy);
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
  color: var(--white);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 0.25rem;
}

/* ─── PROCESS SECTION ─── */
.process-section {
  background: var(--navy);
  padding: 5rem 2rem;
  color: var(--white);
}

.process-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.process-section .section-header h2 {
  color: var(--white);
}

.process-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -0.5rem;
  top: 2rem;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
}

.step-num {
  width: 52px;
  height: 52px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ─── DOOR TYPES ─── */
.types-section {
  background: var(--cream);
  padding: 5rem 2rem;
}

.types-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.type-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.type-image {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-mid), var(--slate));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.type-body {
  padding: 1.5rem;
}

.type-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.type-body p {
  font-size: 0.9rem;
  color: var(--gray-text);
}

/* ─── SERVICE AREA ─── */
.area-section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

.area-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.area-section p {
  color: var(--gray-text);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.towns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.town {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--gray-text);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.town::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.map-placeholder {
  height: 340px;
  background: linear-gradient(135deg, #e8edf2, #d4dde8);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--slate);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border: 2px solid rgba(200, 151, 58, 0.3);
}

.map-placeholder .map-icon {
  font-size: 2.5rem;
  opacity: 0.4;
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--gray-light);
  padding: 5rem 2rem;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border-left: 4px solid var(--gold);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q .faq-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.faq-q.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a.open {
  max-height: 300px;
}

.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-text);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--slate));
  padding: 5rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(200, 151, 58, 0.08);
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(200, 151, 58, 0.06);
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.phone-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-top: 1.5rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.phone-cta a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
}

.phone-cta a:hover {
  color: var(--gold);
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  border-top: 3px solid var(--gold);
}

footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin: 0 0.75rem;
}

footer a:hover {
  color: var(--gold);
}

/* ─── CALLOUT BANNER ─── */
.callout-banner {
  padding: 5rem 2rem;
  background: var(--gray-light);
}

.callout-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem;
  border-top: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.callout-banner-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.callout-banner-inner p {
  color: var(--gray-text);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 1.5rem auto;
}

/* ─── GRAVITY FORMS BUTTON THEME OVERRIDE ─── */
.gform_wrapper.gform-theme {
  --gf-ctrl-btn-bg-color-primary: var(--gold);
  --gf-ctrl-btn-color-primary: var(--navy);
  --gf-ctrl-btn-radius: 4px;
  --gf-ctrl-btn-font-family: var(--font-body);
  --gf-ctrl-btn-font-weight: 700;
  --gf-ctrl-btn-font-size: 0.95rem;
  --gf-ctrl-btn-letter-spacing: 0.04em;
  --gf-ctrl-btn-text-transform: uppercase;
  --gf-ctrl-btn-padding-y: 0.9rem;
  --gf-ctrl-btn-padding-x: 1.6rem;
  --gf-ctrl-btn-shadow: 0 2px 8px rgba(0,0,0,0.12);
  --gf-ctrl-btn-bg-color-hover-primary: var(--gold-light);
  --gf-ctrl-btn-shadow-hover: 0 6px 14px rgba(0,0,0,0.18);
}

.page-template-about {
  /* ── STORY ────────────────────────────── */
  /* signature card */
  /* ── PILLARS ──────────────────────────── */
  /* ── OWNERS ───────────────────────────── */
}
.page-template-about .story {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 768px) {
  .page-template-about .story {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}
.page-template-about .story-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-template-about .story h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.page-template-about .story p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.1rem;
}
.page-template-about .story p:last-child {
  margin-bottom: 0;
}
.page-template-about .sig-card {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 2rem 1.8rem;
  border-radius: 0 6px 6px 0;
}
.page-template-about .sig-card blockquote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.page-template-about .sig-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.page-template-about .sig-title {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.page-template-about .pillars {
  background: var(--navy);
  padding: 4.5rem 2rem;
}
.page-template-about .pillars-inner {
  max-width: 900px;
  margin: 0 auto;
}
.page-template-about .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.page-template-about .section-header .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.page-template-about .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--white);
  font-weight: 600;
}
.page-template-about .pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .page-template-about .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.page-template-about .pillar {
  background: var(--navy-lt);
  border: 1px solid rgba(200, 150, 62, 0.2);
  border-radius: 6px;
  padding: 2rem 1.6rem;
  transition: border-color 0.2s, transform 0.2s;
}
.page-template-about .pillar:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.page-template-about .pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.page-template-about .pillar h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.page-template-about .pillar p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}
.page-template-about .owners {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.page-template-about .owners-header {
  text-align: center;
  margin-bottom: 3rem;
}
.page-template-about .owners-header .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.page-template-about .owners-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--navy);
  font-weight: 600;
}
.page-template-about .owners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .page-template-about .owners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
.page-template-about .owner-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.page-template-about .owner-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.page-template-about .owner-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 60%, var(--navy-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
}
.page-template-about .owner-body {
  padding: 1.8rem 1.8rem 2rem;
  border-top: 4px solid var(--gold);
  flex: 1;
}
.page-template-about .owner-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.page-template-about .owner-role {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
}
.page-template-about .owner-card p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
}

.portfolio-marquee {
  padding: 80px 0;
  overflow: hidden;
}

.portfolio-marquee__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 var(--container-padding, 5%);
  margin-bottom: 32px;
}

.portfolio-marquee__header h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-navy, #1b2a4a);
}

.portfolio-marquee__link {
  font-family: var(--font-body, "Source Sans 3", sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold, #c9a84c);
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.portfolio-marquee__link:hover {
  text-decoration: underline;
}

.portfolio-marquee__stage {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.portfolio-marquee__track {
  display: flex;
  gap: 10px;
  width: max-content;
  will-change: transform;
}

.portfolio-marquee__track--fwd {
  animation: marquee-fwd 40s linear infinite;
}

.portfolio-marquee__track--rev {
  animation: marquee-rev 50s linear infinite;
}

@keyframes marquee-fwd {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-rev {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
/* Pause on hover — gives user control */
.portfolio-marquee__stage:hover .portfolio-marquee__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-marquee__track {
    animation: none;
  }
}
.portfolio-marquee__item {
  position: relative;
  width: 240px;
  height: 160px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}

.portfolio-marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-marquee__item:hover img,
.portfolio-marquee__item:focus img {
  transform: scale(1.04);
}

.portfolio-marquee__item:focus {
  outline: 2px solid var(--color-gold, #c9a84c);
  outline-offset: 2px;
}

.portfolio-marquee__town {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 10px 8px;
  background: linear-gradient(to top, rgba(27, 42, 74, 0.82) 0%, transparent 100%);
  font-family: var(--font-body, "Source Sans 3", sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   PORTFOLIO PAGE
═══════════════════════════════════════ */
.portfolio-page__hero {
  padding: 64px var(--container-padding, 5%) 48px;
  max-width: 680px;
}

.portfolio-page__hero h1 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--color-navy, #1b2a4a);
  margin-bottom: 16px;
}

.portfolio-page__hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.portfolio-town {
  padding: 48px var(--container-padding, 5%);
  border-top: 1px solid #e8e3d8;
}

.portfolio-town__header {
  margin-bottom: 24px;
}

.portfolio-town__header h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-navy, #1b2a4a);
  margin-bottom: 6px;
}

.portfolio-town__header p {
  font-size: 0.95rem;
  color: #666;
  max-width: 560px;
  line-height: 1.6;
}

.portfolio-town__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 600px) {
  .portfolio-town__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 900px) {
  .portfolio-town__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.portfolio-town__item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-town__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}

.portfolio-town__item:hover img,
.portfolio-town__item:focus img {
  transform: scale(1.03);
}

.portfolio-town__item:focus {
  outline: 2px solid var(--color-gold, #c9a84c);
  outline-offset: 2px;
}

.portfolio-town__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 8px 6px;
  background: linear-gradient(to top, rgba(27, 42, 74, 0.75) 0%, transparent 100%);
  font-size: 0.72rem;
  color: #fff;
  font-weight: 600;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.dwi-lightbox__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 25, 0.92);
  z-index: 10000;
}

.dwi-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  align-items: center;
  justify-content: center;
}

.dwi-lightbox.is-open,
.dwi-lightbox.is-open + .dwi-lightbox__backdrop,
.dwi-lightbox__backdrop.is-open {
  display: flex;
}

.dwi-lightbox__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

.dwi-lightbox__inner img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.dwi-lightbox__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.dwi-lightbox__town {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold, #c9a84c);
}

.dwi-lightbox__caption {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.dwi-lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
  z-index: 10002;
}

.dwi-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.dwi-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
  z-index: 10002;
}

.dwi-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.dwi-lightbox__nav--prev {
  left: 16px;
}

.dwi-lightbox__nav--next {
  right: 16px;
}

@media (max-width: 600px) {
  .dwi-lightbox__nav--prev {
    left: 6px;
  }
  .dwi-lightbox__nav--next {
    right: 6px;
  }
}
.page-template-contact {
  /* ── MAIN LAYOUT ──────────────────────── */
  /* ── FORM ─────────────────────────────── */
  /* ── SIDEBAR ──────────────────────────── */
  /* trust card */
  /* ── SERVICE AREA ─────────────────────── */
}
.page-template-contact .contact-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .page-template-contact .contact-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.page-template-contact .form-label-top {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}
.page-template-contact .form-col h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.page-template-contact .form-col > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.page-template-contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.page-template-contact .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.page-template-contact .form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.page-template-contact .form-group input,
.page-template-contact .form-group select,
.page-template-contact .form-group textarea {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 0.7rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.page-template-contact .form-group input:focus,
.page-template-contact .form-group select:focus,
.page-template-contact .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.12);
}
.page-template-contact .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.page-template-contact .form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.page-template-contact .form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
}
.page-template-contact .btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}
.page-template-contact .btn-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}
.page-template-contact .info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.page-template-contact .info-card {
  background: var(--navy);
  border-radius: 6px;
  padding: 2rem 1.8rem;
  color: var(--white);
}
.page-template-contact .info-card-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.page-template-contact .info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.page-template-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}
.page-template-contact .contact-item:last-child {
  margin-bottom: 0;
}
.page-template-contact .contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 150, 62, 0.15);
  border: 1px solid rgba(200, 150, 62, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.page-template-contact .contact-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.15rem;
}
.page-template-contact .contact-item-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}
.page-template-contact .contact-item-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.page-template-contact .contact-item-value a:hover {
  color: var(--gold);
}
.page-template-contact .trust-card {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 1.6rem 1.5rem;
}
.page-template-contact .trust-card p {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.page-template-contact .trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-template-contact .trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.page-template-contact .trust-badge span:first-child {
  color: var(--gold);
  font-size: 1rem;
}
.page-template-contact .service-area {
  background: var(--navy);
  padding: 4rem 2rem;
  text-align: center;
}
.page-template-contact .service-area-inner {
  max-width: 700px;
  margin: 0 auto;
}
.page-template-contact .service-area .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.page-template-contact .service-area h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-template-contact .service-area p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.page-template-contact .towns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.page-template-contact .town {
  background: rgba(200, 150, 62, 0.12);
  border: 1px solid rgba(200, 150, 62, 0.25);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

/*# sourceMappingURL=style.css.map */
