/* ─── SYRINGA SUMMIT HOMES — PAGE STYLES ─── */

/* ── Theme button ── */
.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  transition: all var(--transition);
}
.theme-btn:hover { color: var(--white); background: rgba(255,255,255,0.2); }

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-block: 120px var(--sp-20);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,20,40,0.45) 0%,
    rgba(11,20,40,0.6) 50%,
    rgba(11,20,40,0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  margin-block: var(--sp-4) var(--sp-6);
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: var(--sp-8);
  max-width: 56ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-trust-dot { color: var(--gold); opacity: 0.6; }
.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  z-index: 1;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Page Hero (interior pages) ── */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 320px;
  max-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-12);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-top: var(--sp-3);
}
.page-hero-content .eyebrow { color: var(--gold-light); }

/* ── Contact Hero (taller) ── */
.contact-hero {
  position: relative;
  height: 60vh;
  min-height: 360px;
  max-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.contact-hero-bg { position: absolute; inset: 0; }
.contact-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.contact-hero-content {
  position: relative;
  z-index: 1;
}
.contact-hero-content h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-block: var(--sp-3) var(--sp-5);
}
.contact-hero-content > p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
}

/* ── Section header ── */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-top: var(--sp-2);
}
.section-sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 56ch;
  margin-inline: auto;
  margin-top: var(--sp-4);
}
.section-header .gold-line { margin-inline: auto; }

/* ── Intro grid ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.intro-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.intro-text p { font-size: var(--text-base); color: var(--text-muted); margin-bottom: var(--sp-4); }
.intro-image img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-6);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: var(--sp-5);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}
.service-card p { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--sp-5); }
.card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.card-link:hover { color: var(--gold); }

/* ── Budget section ── */
.budget-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-16);
  align-items: center;
}
.budget-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.budget-text > p { color: var(--text-muted); margin-bottom: var(--sp-6); }
.budget-ranges {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.budget-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  padding: var(--sp-5) var(--sp-6);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.budget-item:last-child { border-bottom: none; }
.budget-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  grid-column: 1;
  grid-row: 1;
}
.budget-range {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}
.budget-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  grid-column: 1;
  grid-row: 2;
  margin-top: var(--sp-1);
}
.budget-disclaimer {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0 !important;
}
.budget-visual img {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ── Process teaser ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-8);
  margin-top: var(--sp-10);
}
.step-item {
  padding: var(--sp-6);
  border-top: 1px solid rgba(184,150,46,0.3);
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.step-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: var(--sp-3);
}
.step-item p { font-size: var(--text-sm); color: rgba(255,255,255,0.65); }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.placeholder-card {
  opacity: 0.65;
  border-style: dashed;
}
.testimonial-stars {
  color: var(--gold);
  font-size: var(--text-base);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
}
.testimonial-card > p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: var(--sp-6);
}
.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  font-size: var(--text-xs);
}
.testimonial-card footer strong { color: var(--navy); font-family: var(--font-body); }
.testimonial-card footer span { color: var(--text-muted); }
.testimonials-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: italic;
}
.testimonials-note a { color: var(--navy); font-weight: 600; }
.testimonials-note a:hover { color: var(--gold); }

/* ── Portfolio teaser ── */
.portfolio-teaser-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.portfolio-teaser-img img {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.portfolio-teaser-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.portfolio-teaser-text p { color: var(--text-muted); margin-bottom: var(--sp-4); }

/* ── CTA band ── */
.cta-band {
  background: var(--navy);
  padding-block: clamp(var(--sp-12), 6vw, var(--sp-20));
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--sp-2);
}
.cta-text p { font-size: var(--text-base); color: rgba(255,255,255,0.7); }

/* ── About page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-16);
  align-items: start;
}
.about-portrait {
  position: relative;
}
.about-portrait img {
  width: 100%; height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-credential-card {
  position: absolute;
  bottom: -var(--sp-6);
  right: -var(--sp-6);
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  bottom: var(--sp-6);
  right: calc(-1 * var(--sp-6));
}
.about-cred-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.about-cred-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--white);
  font-weight: 500;
}
.about-story h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}
.about-story h2 em { font-style: italic; color: var(--gold); }
.about-story p { color: var(--text-muted); margin-bottom: var(--sp-4); }
.about-stats {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
}
.about-stat { display: flex; flex-direction: column; gap: var(--sp-1); }
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.stat-label { font-size: var(--text-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Values grid ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-8);
}
.value-item { padding: var(--sp-6) 0; border-top: 2px solid var(--gold); }
.value-icon {
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.value-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}
.value-item p { font-size: var(--text-sm); color: var(--text-muted); }

/* ── Credentials section ── */
.credentials-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-16);
  align-items: center;
}
.credentials-grid h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.credentials-grid > div > p { color: var(--text-muted); margin-bottom: var(--sp-6); }
.credentials-list { display: flex; flex-direction: column; gap: var(--sp-5); }
.cred-row {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.cred-row svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.cred-row strong { display: block; font-size: var(--text-base); color: var(--navy); margin-bottom: 2px; }
.cred-row span { font-size: var(--text-sm); color: var(--text-muted); }
.credentials-image img {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ── Services page ── */
.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  padding-block: var(--sp-12);
}
.service-detail-row.reverse { direction: rtl; }
.service-detail-row.reverse > * { direction: ltr; }
.service-detail-img img {
  width: 100%; height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.service-detail-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.service-detail-text p { color: var(--text-muted); margin-bottom: var(--sp-4); }
.service-detail-text a[href^="https"] { color: var(--navy); font-weight: 600; }
.service-detail-text a[href^="https"]:hover { color: var(--gold); }
.service-includes {
  list-style: none;
  margin-block: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.service-includes li {
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-left: var(--sp-5);
  position: relative;
  max-width: none;
}
.service-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.service-divider {
  height: 1px;
  background: var(--border);
}

/* Cost table */
.cost-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--sp-8);
}
.cost-table {
  background: var(--white);
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.cost-table thead { background: var(--navy); color: var(--white); }
.cost-table th {
  padding: var(--sp-4) var(--sp-6);
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: var(--text-xs);
}
.cost-table td {
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.cost-table td:first-child { color: var(--navy); }
.cost-table tr:last-child td { border-bottom: none; }
.cost-range { font-family: var(--font-display); font-size: var(--text-base); font-weight: 600; color: var(--gold) !important; }
.cost-notes p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
  padding: var(--sp-5);
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}

/* Service area */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}
.area-item {
  padding: var(--sp-2) var(--sp-5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--navy);
  font-weight: 500;
}

/* ── Process page ── */
.process-intro {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  padding-block: var(--sp-6);
}
.process-intro h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.process-intro p { color: var(--text-muted); }

.process-steps-section { background: var(--white); }
.process-step {
  padding-block: var(--sp-10);
}
.process-step-num {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.process-step-num span {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
}
.process-step-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-12);
  align-items: center;
}
.process-step-content.reverse { direction: rtl; }
.process-step-content.reverse > * { direction: ltr; }
.process-step-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--sp-4);
}
.process-step-text p { color: var(--text-muted); margin-bottom: var(--sp-4); }
.process-deliverables {
  list-style: none;
  margin-block: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.process-deliverables li {
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-left: var(--sp-5);
  position: relative;
  max-width: none;
}
.process-deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.process-step-img img {
  width: 100%; height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.process-connector {
  width: 1px;
  height: var(--sp-8);
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  margin-left: clamp(1.5rem, 3vw, 2.5rem);
  opacity: 0.4;
}

/* Timeline */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-6);
}
.timeline-item {
  padding: var(--sp-6);
  border-top: 1px solid rgba(184,150,46,0.4);
}
.timeline-phase {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--sp-2);
}
.timeline-duration {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: var(--sp-3);
}
.timeline-item p { font-size: var(--text-sm); color: rgba(255,255,255,0.55); }

/* ── Portfolio page ── */
.featured-project {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-10);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.featured-project-gallery { position: relative; }
.gallery-hero { position: relative; }
.gallery-hero img { width: 100%; height: 400px; object-fit: cover; }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.gallery-thumbs img { width: 100%; height: 130px; object-fit: cover; }
.project-status-badge {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.project-status-badge.in-progress { background: var(--gold); color: var(--white); }
.project-status-badge.accepting { background: var(--navy); color: var(--white); }
.featured-project-details { padding: var(--sp-8); }
.featured-project-details h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-bottom: var(--sp-5);
}
.project-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
}
.project-meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.meta-value { font-size: var(--text-sm); color: var(--navy); font-weight: 500; }
.featured-project-details p { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--sp-4); }
.project-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}
.project-highlight {
  padding: var(--sp-1) var(--sp-4);
  background: var(--gold-pale);
  color: var(--navy);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}
.upcoming-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.upcoming-card-img img { width: 100%; height: 240px; object-fit: cover; position: relative; }
.upcoming-card-img { position: relative; }
.upcoming-placeholder {
  height: 240px;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  color: var(--text-faint);
}
.placeholder-content p { font-size: var(--text-sm); font-style: italic; }
.upcoming-card-body { padding: var(--sp-6); }
.upcoming-card-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--sp-3);
}
.upcoming-card-body p { font-size: var(--text-sm); color: var(--text-muted); }
.photo-promise-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.photo-promise-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.photo-promise-text p { color: var(--text-muted); }
.photo-promise-img img {
  width: 100%; height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ── Contact page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.contact-form-wrapper h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--sp-3);
}
.contact-form-intro { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--sp-8); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}
.form-group label span { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: var(--text-base);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A6580' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  padding-right: var(--sp-10);
}
.form-checkbox {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: var(--sp-3);
  cursor: pointer;
  font-size: var(--text-sm) !important;
  font-weight: 400 !important;
  color: var(--text-muted) !important;
}
.form-checkbox input { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--navy); cursor: pointer; position: relative; z-index: 1; }
.form-submit-btn {
  width: 100%;
  padding-block: var(--sp-4);
  font-size: var(--text-base);
  margin-top: var(--sp-2);
  justify-content: center;
}
.form-privacy { font-size: var(--text-xs); color: var(--text-faint); text-align: center; margin-top: var(--sp-4); }
.form-message[hidden] { display: none !important; }
.form-message {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-6);
  font-size: var(--text-sm);
}
.form-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
.form-error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }
.contact-info { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-info-card,
.contact-service-area,
.contact-license-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.contact-info-card h3,
.contact-service-area h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-6);
  color: var(--navy);
}
.contact-info-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  margin-bottom: var(--sp-5);
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-label { font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); }
.contact-info-value { font-size: var(--text-sm); color: var(--navy); font-weight: 500; line-height: 1.5; }
.contact-info-value a { color: var(--navy); }
.contact-info-value a:hover { color: var(--gold); }
.contact-area-list { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
.contact-area-list span {
  padding: var(--sp-1) var(--sp-4);
  background: var(--gold-pale);
  color: var(--navy);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}
.contact-service-area p { font-size: var(--text-sm); color: var(--text-muted); }
.contact-license-card {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.contact-license-card svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact-license-card .contact-info-label { color: var(--gold-light); }
.contact-license-card .contact-info-value { color: var(--white); }

/* What to expect */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-8);
}
.expect-item { padding: var(--sp-6) 0; border-top: 2px solid var(--border); }
.expect-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.expect-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}
.expect-item p { font-size: var(--text-sm); color: var(--text-muted); }

/* ── Reviews coming soon ── */
.reviews-coming-soon {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
  padding: var(--sp-12) var(--sp-8);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.reviews-icon {
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: var(--sp-5);
}
.reviews-coming-soon p {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
  line-height: 1.65;
}
.reviews-coming-soon a {
  color: var(--navy);
  font-weight: 600;
}
.reviews-coming-soon a:hover { color: var(--gold); }

/* ── Dark mode overrides ── */
[data-theme="dark"] .service-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .upcoming-card,
[data-theme="dark"] .featured-project,
[data-theme="dark"] .contact-info-card,
[data-theme="dark"] .contact-service-area,
[data-theme="dark"] .cost-table,
[data-theme="dark"] .budget-item,
[data-theme="dark"] .cost-notes p {
  background: var(--color-surface);
  border-color: var(--border);
}
[data-theme="dark"] .service-icon { background: rgba(184,150,46,0.12); }
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: var(--color-surface);
  border-color: var(--border);
  color: var(--text);
}
[data-theme="dark"] .about-portrait img,
[data-theme="dark"] .intro-image img,
[data-theme="dark"] .credentials-image img { box-shadow: none; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .intro-grid,
  .budget-grid,
  .about-grid,
  .credentials-grid,
  .portfolio-teaser-grid,
  .photo-promise-inner,
  .contact-layout,
  .featured-project { grid-template-columns: 1fr; }

  .service-detail-row { grid-template-columns: 1fr; }
  .service-detail-row.reverse { direction: ltr; }

  .process-step-content { grid-template-columns: 1fr; }
  .process-step-content.reverse { direction: ltr; }

  .intro-image img,
  .budget-visual img,
  .credentials-image img,
  .portfolio-teaser-img img { height: 300px; }

  .about-portrait img { height: 380px; }
  .about-credential-card { right: 0; }
  .about-stats { flex-wrap: wrap; gap: var(--sp-6); }

  .cta-inner { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { min-height: 85vh; padding-block: 100px var(--sp-16); }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-actions { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid,
  .timeline-grid,
  .values-grid,
  .expect-grid { grid-template-columns: 1fr; }
  .project-meta { grid-template-columns: 1fr; }
  .gallery-thumbs { grid-template-columns: 1fr 1fr; }
  .featured-project-details { padding: var(--sp-5); }
}
