:root {
  --bg: #fcfaf5;
  --bg-soft: #f7f2e8;
  --ink: #0f172a;
  --ink-soft: #475569;
  --deep: #2c2c2c;
  --deep-2: #09111c;
  --gold: #e7c98a;
  --gold-deep: #a57b2b;
  --red: #c52a2a;
  --red-deep: #9f2020;
  --border: #eadfca;
  --white: #ffffff;
  --radius-lg: 32px;
  --radius-xl: 38px;
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 36px 90px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top, rgba(231, 201, 138, 0.18), transparent 28%), linear-gradient(180deg, #fcfaf5 0%, #f7f2e8 38%, #fffdf9 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.wide-container {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow-container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.section-space {
  padding: 88px 0;
}

.section-dark {
  background: var(--deep);
  color: var(--white);
}

.section-cream,
.section-gallery-viewer {
  background: var(--bg-soft);
}

.section-kicker {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.section-kicker-light {
  color: var(--gold);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading.centered {
  max-width: 980px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.estimate-title,
.callout-grid h2,
.hero-copy h1,
.hero-feature-grid h2,
.quote-card h3,
.process-card h3,
.difference-card h3,
.content-card h2,
.faq-card summary,
.gallery-preview-copy h3,
.service-card-copy h3,
.service-card-body h3,
.simple-fallback h1 {
  font-family: "Cormorant Garamond", serif;
}

.section-heading h2,
.estimate-title,
.callout-grid h2,
.simple-fallback h1 {
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-heading p:last-child,
.estimate-copy,
.content-card p,
.faq-card p,
.hero-intro p,
.standard-page-section p,
.quote-card p,
.gallery-grid-card figcaption,
.gallery-heading-row p {
  color: var(--ink-soft);
  line-height: 1.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(252, 250, 245, 0.9);
  border-bottom: 1px solid rgba(234, 223, 202, 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.brand-mark img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 600;
}

.primary-nav > a,
.nav-dropdown-toggle {
  position: relative;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
}

.primary-nav > a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold-deep);
  transition: transform 0.25s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.is-active .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  min-width: 250px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: 0.22s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-soft);
}

.header-cta,
.button-primary,
.button-light,
.quote-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.header-cta,
.button-primary,
.quote-card button {
  color: var(--white);
  background: var(--red-deep);
  box-shadow: 0 14px 35px rgba(197, 42, 42, 0.28);
}

.header-cta {
  padding: 11px 18px;
  font-size: 0.72rem;
}

.header-cta:hover,
.button-primary:hover,
.quote-card button:hover {
  background: var(--red);
}

.button-primary.small {
  padding: 12px 20px;
}

.button-secondary,
.button-light,
.quote-card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(15, 30, 48, 0.56) 0%, rgba(15, 30, 48, 0.34) 48%, rgba(15, 30, 48, 0.08) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: 88px 0;
}

.hero-copy {
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  padding: 12px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-copy h1 {
  margin: 28px 0 0;
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-intro {
  margin-top: 28px;
  max-width: 620px;
}

.hero-intro p,
.hero-highlights p {
  color: rgba(255, 255, 255, 0.8);
}

.hero-feature-grid,
.hero-actions,
.service-card-grid,
.difference-grid,
.process-grid,
.gallery-preview-grid,
.footer-grid,
.estimate-grid,
.standard-page-grid,
.placeholder-form-grid,
.gallery-grid {
  display: grid;
}

.hero-feature-grid {
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-feature-grid article,
.hero-highlights,
.quote-card,
.consultation-panel,
.content-card,
.faq-card,
.process-card,
.difference-card,
.gallery-grid-card,
.service-card-light,
.gallery-slider {
  box-shadow: var(--shadow-lg);
}

.hero-feature-grid article,
.hero-highlights article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
  backdrop-filter: blur(10px);
}

.hero-highlights {
  display: grid;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background: rgba(11, 16, 25, 0.7);
  padding: 32px;
  backdrop-filter: blur(18px);
}

.hero-highlight-count,
.card-label,
.process-count,
.service-card-body span,
.gallery-preview-copy p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.hero-highlight-count,
.gallery-preview-copy p {
  color: var(--gold);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quote-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background: var(--deep);
  padding: 32px;
  color: var(--white);
}

.quote-card h3 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.05;
}

.quote-card p {
  color: rgba(255, 255, 255, 0.74);
}

.placeholder-form-grid {
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.placeholder-form-grid label span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.placeholder-form-grid label.full {
  grid-column: span 2;
}

.placeholder-form-grid input,
.placeholder-form-grid textarea,
.wpforms-shell input,
.wpforms-shell textarea,
.wpforms-shell select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px 18px;
  color: var(--white);
}

.placeholder-form-grid textarea {
  min-height: 132px;
}

.quote-card-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-card-grid {
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.service-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover img,
.gallery-grid-card:hover img,
.gallery-preview-card:hover img {
  transform: scale(1.04);
}

.service-card-dark {
  min-height: 430px;
  color: var(--white);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.service-card-overlay,
.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 16, 0.08) 0%, rgba(7, 10, 16, 0.28) 35%, rgba(7, 10, 16, 0.88) 100%);
}

.service-card-copy,
.gallery-preview-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  z-index: 2;
}

.service-card-copy h3,
.gallery-preview-copy h3 {
  margin: 12px 0 0;
  font-size: 2rem;
  color: var(--gold);
}

.service-card-copy p,
.gallery-preview-copy span {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
}

.service-card-light {
  background: var(--white);
  border: 1px solid var(--border);
}

.service-card-light img {
  height: 288px;
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3,
.process-card h3,
.difference-card h3,
.content-card h2,
.faq-card summary {
  margin: 14px 0 0;
  font-size: 2rem;
}

.difference-grid,
.process-grid,
.gallery-preview-grid,
.footer-grid {
  gap: 24px;
}

.difference-grid,
.process-grid,
.gallery-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.difference-card,
.process-card,
.content-card,
.faq-card,
.gallery-grid-card,
.consultation-panel {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--white);
  padding: 28px;
}

.section-dark .difference-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.section-dark .difference-card h3,
.section-dark .section-heading h2,
.section-dark .stats-pill strong {
  color: var(--white);
}

.section-dark .difference-card p {
  color: rgba(255, 255, 255, 0.72);
}

/* Force gold circle background and dark number in dark sections */
.section-dark .difference-count {
  background: #f7e8c2;
  color: #5a3e0a;
}

.difference-count,
.process-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #f7e8c2 !important;
  color: #5a3e0a !important;
}

.stats-marquee {
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(231, 201, 138, 0.18) 0%, rgba(255, 255, 255, 0.05) 58%, rgba(21, 36, 54, 0.2) 100%);
}

.stats-track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
}

.stats-pill {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: #172233;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.84);
}

.stats-pill span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-preview-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.gallery-preview-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.callout-band {
  background: linear-gradient(135deg, #193047 0%, #6f111c 52%, #c31725 100%);
  color: var(--white);
  padding: 88px 0;
}

.callout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: end;
}

.callout-grid p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
}

.callout-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.estimate-grid,
.standard-page-grid {
  gap: 48px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.consultation-panel {
  position: sticky;
  top: 110px;
  background: #fbf7f0;
}

.standard-content-stack {
  display: grid;
  gap: 32px;
}

.gallery-viewer-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 32px;
}

.gallery-viewer-header h2,
.gallery-heading-row h2 {
  margin: 12px 0 0;
  font-size: clamp(2.3rem, 3.8vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-family: "Cormorant Garamond", serif;
}

.gallery-counter {
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
}

.gallery-slider {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  overflow: hidden;
}

.gallery-stage {
  position: relative;
  aspect-ratio: 18 / 9;
  overflow: hidden;
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-stage-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 96px 32px 32px;
  background: linear-gradient(to top, rgba(9, 17, 28, 0.88), rgba(9, 17, 28, 0.36), transparent);
  color: var(--white);
}

.gallery-stage-overlay p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-stage-overlay span {
  display: block;
  margin-top: 14px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.gallery-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(9, 17, 28, 0.82);
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.gallery-thumb {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: #d2aa57;
  box-shadow: 0 0 0 2px #f1d8ac;
}

.gallery-thumb img {
  width: 100%;
  height: 86px;
  object-fit: cover;
}

.gallery-heading-row {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: end;
  gap: 24px;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-grid-card img {
  width: 100%;
  height: 288px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.faq-stack {
  display: grid;
  gap: 20px;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
}

.site-footer {
  background: var(--deep);
  color: var(--white);
  padding-top: 72px;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.85;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 28px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-fallback {
  padding: 80px 0;
}

.wpforms-shell .wpforms-container,
.wpforms-shell .wpforms-form,
.wpforms-shell .wpforms-field-container {
  width: 100%;
}

.wpforms-shell .wpforms-submit {
  border-radius: 999px !important;
  padding: 14px 24px !important;
  background: var(--red-deep) !important;
  border: none !important;
  color: #fff !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

@media (max-width: 1200px) {
  .service-card-grid,
  .difference-grid,
  .process-grid,
  .gallery-preview-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-thumbnails {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .header-inner,
  .hero-grid,
  .callout-grid,
  .estimate-grid,
  .standard-page-grid,
  .gallery-heading-row,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .header-inner {
    align-items: flex-start;
    padding: 18px 0;
  }

  .primary-nav {
    flex-wrap: wrap;
  }

  .hero-grid {
    display: grid;
    min-height: auto;
  }

  .service-card-grid,
  .difference-grid,
  .process-grid,
  .gallery-preview-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .consultation-panel {
    position: static;
  }

  .gallery-slider {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
  }

  .gallery-arrow.prev {
    left: 16px;
  }

  .gallery-arrow.next {
    right: 16px;
  }

  .gallery-stage {
    min-height: 420px;
  }

  .gallery-thumbnails {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .placeholder-form-grid,
  .hero-feature-grid {
    grid-template-columns: 1fr;
  }

  .placeholder-form-grid label.full {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .container,
  .wide-container,
  .narrow-container {
    width: min(100% - 24px, 1280px);
  }

  .section-space,
  .callout-band {
    padding: 72px 0;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .gallery-stage {
    aspect-ratio: 4 / 5;
    min-height: 320px;
  }

  .gallery-thumbnails {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}