/* ============================================================
   Lifestyle Renovations — Craftsman's Gold Design System
   Fonts: Playfair Display (headlines) + Source Sans 3 (body)
   Primary: #C9A84C | Dark: #1C1C1C | Cream: #FAF6EF
   ============================================================ */

/* --- Google Fonts loaded via HTML --- */

/* --- CSS Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  background-color: #FAF6EF;
  color: #1C1C1C;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- CSS Variables --- */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #A07C2A;
  --charcoal:    #1C1C1C;
  --cream:       #FAF6EF;
  --stone:       #F0E8D8;
  --taupe:       #8C7B6B;
  --white:       #FFFFFF;
  --red:         #C0392B;
  --border:      #E0D5C5;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.16);
  --radius:      6px;
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', 'Barlow', Arial, sans-serif;
  line-height: 1.1;
  color: #1C1C1C;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.9rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
p  { font-size: 1.0625rem; color: #3a3028; line-height: 1.7; }
[style*="background:var(--charcoal)"] p,
[style*="background: var(--charcoal)"] p { color: #ffffff !important; }

.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: 860px; }
.section-pad { padding: 5rem 0; }
.section-pad--lg { padding: 7rem 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 200ms var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn--dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn--dark:hover {
  background: #333;
  box-shadow: var(--shadow-md);
}

.btn--call {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  font-size: 1.1rem;
  padding: 1rem 2.25rem;
}
.btn--call:hover {
  background: #a93226;
  border-color: #a93226;
  box-shadow: var(--shadow-md);
}

/* --- Top Bar --- */
.top-bar {
  background: var(--charcoal);
  color: #ccc;
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar a { color: var(--gold); transition: color 150ms; }
.top-bar a:hover { color: var(--gold-light); }
.top-bar__phone {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: 0.02em;
}

/* --- Header / Navigation --- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 250ms var(--ease-out);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo img { height: 120px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: color 150ms, background 150ms;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 200ms var(--ease-out);
}
.main-nav a:hover { color: var(--gold-dark); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--gold-dark); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { padding-right: 1.4rem; }
.nav-dropdown > a::before {
  content: '▾';
  position: absolute;
  right: 0.5rem;
  font-size: 0.7rem;
  top: 50%; transform: translateY(-50%);
  color: var(--taupe);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top left;
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  border-radius: 0;
  transition: background 150ms, color 150ms;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: var(--stone); color: var(--gold-dark); }

.header-cta { display: flex; align-items: center; gap: 0.75rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  transition: all 250ms var(--ease-out);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  border-bottom: 4px solid var(--gold);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-main.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.55;
  transition: opacity 0.4s;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(28,28,28,0.82) 0%, rgba(28,28,28,0.45) 55%, rgba(28,28,28,0.15) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 5rem 1.5rem 5rem 0;
  margin-left: 0;
}
.hero__tagline {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.6;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__trust {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 600;
}
.hero__trust-item .icon { color: var(--gold); font-size: 1.1rem; }


/* --- Trust Bar --- */
.trust-bar {
  background: var(--stone);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.trust-bar__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}
.trust-item__icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* --- Services Grid --- */
.services-section { background: var(--cream); }
.services-section .section-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), border-color 200ms;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--charcoal);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}
.service-card h3 {
  font-size: 1.15rem;
  color: var(--charcoal);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--taupe);
  line-height: 1.55;
  flex: 1;
}
.service-card__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  transition: gap 150ms;
}
.service-card:hover .service-card__link { gap: 0.6rem; }

/* --- Why Choose Us --- */
.why-section {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-section {
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}
.why-section .section-label { color: var(--gold-light); }
.why-section h2 { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-image img { width: 100%; height: 480px; object-fit: cover; }
.why-image__badge {
  position: absolute;
  bottom: 1.5rem; right: -1rem;
  background: var(--gold);
  color: var(--charcoal);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.3;
}
.why-image__badge span { display: block; font-size: 2rem; line-height: 1; }
.why-list { display: flex; flex-direction: column; gap: 1.75rem; }
.why-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-item__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}
.why-item h4 { color: var(--white); margin-bottom: 0.35rem; font-size: 1.1rem; }
.why-item p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* --- Service Area --- */
.area-section { background: var(--stone); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
a.city-tag {
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
a.city-tag:hover {
  background: var(--gold);
  color: var(--charcoal);
}
.city-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: background 150ms, border-color 150ms, color 150ms;
}
.city-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}
.area-cta-box {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.area-cta-box h3 { color: var(--gold-light); margin-bottom: 1rem; }
.area-cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
.area-cta-box .contact-details { margin-bottom: 1.75rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .icon { color: var(--gold); width: 1.25rem; text-align: center; }
.contact-detail a { color: var(--gold-light); }
.contact-detail a:hover { color: var(--white); }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--gold);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(28,28,28,0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn--dark { font-size: 1.1rem; padding: 1rem 2.5rem; }

/* --- Footer --- */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 0.9fr 0.9fr 1.3fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 80px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.75); }
.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 150ms;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}
.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--white); }
.footer-phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold) !important;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 150ms; }
.footer-bottom a:hover { color: var(--gold-light); }

/* --- Page Hero (interior pages) --- */
.page-hero {
  background: var(--charcoal);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,28,28,0.9) 0%, rgba(28,28,28,0.5) 100%);
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* --- Service Page Content --- */
.service-content { background: var(--cream); }
.service-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.service-body__main h2 { margin-bottom: 1rem; }
.service-body__main p { margin-bottom: 1.25rem; }
.service-body__main ul {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-body__main ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: #3a3028;
}
.service-body__main ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.service-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-cta {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.sidebar-cta h3 { color: var(--gold-light); margin-bottom: 0.75rem; font-size: 1.2rem; }
.sidebar-cta p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 1.25rem; }
.sidebar-phone {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
}
.sidebar-services {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sidebar-services h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1rem;
  font-family: 'Source Sans 3', sans-serif;
}
.sidebar-services ul { display: flex; flex-direction: column; gap: 0; }
.sidebar-services ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: color 150ms;
}
.sidebar-services ul li:last-child a { border-bottom: none; }
.sidebar-services ul li a:hover { color: var(--gold-dark); }
.sidebar-services ul li a.active { color: var(--gold-dark); font-weight: 700; }

/* --- Compliance Notice --- */
.compliance-notice {
  background: #fffbf0;
  border: 1px solid #e8d8a0;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: 0.88rem;
  color: #5a4a2a;
  line-height: 1.6;
}
.compliance-notice strong { color: #3a2a0a; }

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 560px; object-fit: cover; object-position: top; }
.about-image__frame {
  position: absolute;
  inset: 1rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.4;
  pointer-events: none;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--stone);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
}
.value-card h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.value-card p { font-size: 0.88rem; color: var(--taupe); }

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap .subtitle { color: var(--taupe); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 200ms;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label-group {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem 1rem;
  margin-top: 0.25rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  transition: background 150ms;
}
.checkbox-label:hover { background: var(--stone); }
.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"] {
  width: auto;
  flex-shrink: 0;
  accent-color: var(--gold-dark);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  display: none;
}
.form-message.success { background: #edfaf0; border: 1px solid #6fcf97; color: #1a5c30; display: block; }
.form-message.error   { background: #fdf0ef; border: 1px solid #e07070; color: #7a1a1a; display: block; }

.contact-info-col { display: flex; flex-direction: column; gap: 2rem; }
.info-card {
  background: var(--stone);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
}
.info-card h3 { margin-bottom: 1.25rem; font-size: 1.2rem; }
.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.info-row:last-child { border-bottom: none; }
.info-row .icon { color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }
.info-row strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--taupe); margin-bottom: 0.2rem; }
.info-row a { color: var(--gold-dark); }
.info-row a:hover { color: var(--charcoal); }

/* --- Alert / Success Page --- */
.alert-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.alert-box {
  max-width: 540px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}
.alert-box .icon-big {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.alert-box h2 { margin-bottom: 0.75rem; }
.alert-box p { color: var(--taupe); margin-bottom: 2rem; }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.55s var(--ease-out) forwards;
}
.fade-up--1 { animation-delay: 0.05s; }
.fade-up--2 { animation-delay: 0.13s; }
.fade-up--3 { animation-delay: 0.21s; }
.fade-up--4 { animation-delay: 0.29s; }
.fade-up--5 { animation-delay: 0.37s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-image { display: none; }
  .area-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-body { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  /* No sticky header on mobile/tablet — eliminates iOS scroll conflict */
  .site-header {
    position: relative !important;
    top: auto !important;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0; right: 0;
    bottom: 0;
    background: var(--cream);
    padding: 5rem 1rem 3rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .main-nav.open a { padding: 0.75rem 1rem; border-radius: var(--radius); }
  .main-nav.open a::after { display: none; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--stone);
    border-radius: var(--radius);
    padding: 0.25rem 0;
    margin-top: 0.25rem;
  }
  .hero { min-height: 75vh; }
  .hero__content { padding: 3rem 1.5rem; }
  .hero__actions { flex-direction: column; }
  .hero__trust { gap: 1rem; }
  .trust-bar__grid { flex-direction: column; align-items: center; gap: 1rem; }
  .trust-divider { display: none; }
  .trust-item { text-align: left; }
  .service-body__main ul li {
    align-items: flex-start;
  }
  .service-body__main ul li::before {
    flex-shrink: 0;
    margin-top: 0.2rem;
  }
  .svc-li {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }
  .svc-li strong {
    display: block;
    line-height: 1.4;
  }
  .svc-li span {
    display: block;
    line-height: 1.5;
    color: #3a3028;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* --- Portfolio Page --- */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 2rem;
  background: var(--white);
  color: var(--charcoal);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 180ms var(--ease-out);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.filter-btn.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--gold-light);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms var(--ease-out);
}
.portfolio-item:hover { box-shadow: var(--shadow-md); }
.portfolio-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 350ms var(--ease-out);
}
.portfolio-item:hover .portfolio-img-wrap img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.88) 0%, rgba(28,28,28,0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 200ms var(--ease-out);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  margin-bottom: 0.5rem;
  align-self: flex-start;
}
.portfolio-caption {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
.portfolio-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
  transition: background 150ms;
}
.portfolio-zoom:hover { background: var(--gold); color: var(--charcoal); }
.portfolio-cta {
  margin-top: 4rem;
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
}
.portfolio-cta h3 { color: var(--white); margin-bottom: 0.5rem; }
.portfolio-cta p { color: rgba(255,255,255,0.7); }

/* --- FAQ Page --- */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.faq-section { margin-bottom: 3rem; }
.faq-section-title {
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 180ms;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 150ms;
}
.faq-question:hover { background: var(--stone); }
.faq-question[aria-expanded="true"] { background: var(--stone); color: var(--gold-dark); }
.faq-icon {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--gold);
  transition: transform 250ms var(--ease-out);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-size: 0.95rem;
  color: var(--taupe);
  line-height: 1.7;
  margin: 0;
}
.faq-answer a { color: var(--gold-dark); font-weight: 600; }
.faq-answer a:hover { color: var(--charcoal); }

/* FAQ Sidebar */
.faq-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-cta {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.sidebar-cta h3 { color: var(--gold-light); font-size: 1.2rem; margin-bottom: 0.75rem; }
.sidebar-cta p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1rem; }
.sidebar-phone {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1rem;
  text-decoration: none;
}
.sidebar-phone:hover { color: var(--gold-light); }
.sidebar-services {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sidebar-services h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--taupe);
  margin-bottom: 1rem;
  font-family: 'Source Sans 3', sans-serif;
}
.sidebar-services ul { list-style: none; padding: 0; margin: 0; }
.sidebar-services ul li { margin-bottom: 0.4rem; }
.sidebar-services ul li a {
  font-size: 0.9rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 150ms;
}
.sidebar-services ul li a i { font-size: 0.65rem; color: var(--gold); }
.sidebar-services ul li a:hover { color: var(--gold-dark); }
.sidebar-compliance {
  background: var(--stone);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
  color: var(--taupe);
  line-height: 1.6;
}

/* --- Service Page Photo --- */
.service-photo {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Responsive additions --- */
@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
}
@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .portfolio-filters { gap: 0.4rem; }
  .filter-btn { font-size: 0.8rem; padding: 0.4rem 0.9rem; }
}

/* ===================================================
   CITY SERVICE AREA PAGES
   =================================================== */
.city-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
}
.city-map-wrap iframe {
  display: block;
  width: 100%;
}

/* ===================================================
   LIGHTBOX — Lifestyle Renovations Portfolio
   =================================================== */
.lr-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lr-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lr-lightbox__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  max-height: 95vh;
}

/* Close button */
.lr-lb-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 150ms, border-color 150ms;
  z-index: 10;
}
.lr-lb-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* Prev / Next navigation */
.lr-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(28,28,28,0.7);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 150ms, border-color 150ms, opacity 150ms;
  z-index: 10;
  /* keep buttons outside the image area */
  margin-top: -2.5rem; /* offset for caption bar */
}
.lr-lb-nav:disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}
.lr-lb-nav:not(:disabled):hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}
.lr-lb-prev { left: -4rem; }
.lr-lb-next { right: -4rem; }

/* Image area */
.lr-lb-img-wrap {
  position: relative;
  width: 100%;
  max-height: calc(95vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  min-height: 200px;
}
.lr-lb-img {
  max-width: 100%;
  max-height: calc(95vh - 120px);
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  transition: opacity 200ms ease;
}
.lr-lb-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem;
}

/* Caption bar */
.lr-lb-caption-bar {
  width: 100%;
  background: var(--charcoal);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.lr-lb-caption-left {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}
.lr-lb-badge {
  flex-shrink: 0;
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
  white-space: nowrap;
  margin-top: 0.15rem;
}
.lr-lb-caption-text {
  min-width: 0;
}
.lr-lb-caption-text strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.lr-lb-caption-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}
.lr-lb-counter {
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-family: 'Source Sans 3', sans-serif;
  white-space: nowrap;
  padding-top: 0.15rem;
}

/* Responsive lightbox */
@media (max-width: 900px) {
  .lr-lb-prev { left: -0.5rem; }
  .lr-lb-next { right: -0.5rem; }
  .lr-lb-nav { width: 40px; height: 40px; font-size: 0.85rem; }
}
@media (max-width: 600px) {
  .lr-lb-close { top: -2.75rem; right: 0; }
  .lr-lb-caption-bar { flex-direction: column; gap: 0.5rem; }
  .lr-lb-counter { align-self: flex-end; }
  .lr-lb-nav { background: rgba(28,28,28,0.85); }
}
