@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Nunito+Sans:wght@300;400;500;600;700;800&display=swap");

:root {
  --background: #ffffff;
  --foreground: #1f1f2e;
  --card: #ffffff;
  --surface: #f8f7f5;
  --muted: #f8f7f5;
  --muted-foreground: #938b84;
  --primary: #c8102e;
  --primary-hover: #a90d27;
  --primary-foreground: #ffffff;
  --accent: #f5a623;
  --accent-hover: #df9318;
  --accent-foreground: #ffffff;
  --border: #e8ded8;
  --input: #e8ded8;
  --destructive: #e5484d;
  --success: #22a15f;
  --shadow-sm: 0 1px 2px rgba(31, 31, 46, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 31, 46, 0.09);
  --shadow-lg: 0 18px 48px rgba(31, 31, 46, 0.14);
  --radius: 8px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Nunito Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.12;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

.section-padding {
  padding: 64px 0;
}

.section-background {
  background: var(--background);
}

.section-surface {
  background: var(--surface);
}

.grain-overlay {
  position: relative;
}

.grain-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.grain-overlay > * {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--foreground);
  color: #fff;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 44px 8px 16px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.82rem;
  text-align: center;
}

.announcement-bar a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-dismiss {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-weight: 800;
}

.announcement-dismiss:hover {
  background: rgba(255, 255, 255, 0.18);
}

body.announcement-hidden .announcement-bar {
  display: none;
}

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--background);
  transition: box-shadow 240ms ease, top 200ms ease;
}

body.announcement-hidden .site-header {
  top: 0;
}

.site-header.is-scrolled,
.site-header.menu-open {
  box-shadow: var(--shadow-md);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--foreground);
}

.brand-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-kicker {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--primary);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.icon-small {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.mobile-menu-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--foreground);
}

.hamburger {
  position: relative;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.site-header.menu-open .hamburger {
  background: transparent;
}

.site-header.menu-open .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.menu-open .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  border-top: 1px solid transparent;
  background: var(--background);
  transition: grid-template-rows 240ms ease, border-color 240ms ease;
}

.mobile-nav.is-open {
  grid-template-rows: 1fr;
  border-top-color: var(--border);
}

.mobile-nav-inner {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 0;
}

.mobile-nav.is-open .mobile-nav-inner {
  padding: 18px 0 22px;
}

.mobile-nav a {
  font-weight: 800;
}

.mobile-nav a.is-active {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--foreground);
}

.btn-accent {
  background: var(--accent);
  color: var(--foreground);
}

.btn-accent:hover {
  background: var(--accent-hover);
}

.btn-dark {
  background: var(--foreground);
  color: #fff;
}

.btn-dark:hover {
  background: #11111c;
}

.arrow {
  transition: transform 180ms ease;
}

.btn:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 900;
  font-size: 0.9rem;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-offset {
  padding-top: 98px;
}

body.announcement-hidden .page-offset {
  padding-top: 64px;
}

.hero-section {
  padding: 56px 0 64px;
  background: var(--surface);
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--foreground);
  font-size: 2.45rem;
  font-weight: 800;
}

.accent-text {
  color: var(--primary);
  font-style: italic;
}

.hero-copy p {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted-foreground);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.rating-line {
  color: var(--muted-foreground);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.floating-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--background);
  box-shadow: var(--shadow-md);
  color: var(--foreground);
  font-size: 0.76rem;
  font-weight: 900;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
  padding-top: 38px;
  border-top: 1px solid var(--border);
}

.stat-card {
  padding-left: 16px;
  border-left: 3px solid var(--primary);
  text-align: center;
}

.stat-value {
  display: block;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  margin: 8px 0 0;
  color: var(--muted-foreground);
  font-size: 0.88rem;
}

.section-title {
  margin: 0 auto 40px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 800;
}

.section-title p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted-foreground);
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--primary) !important;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.grid-3 {
  display: grid;
  gap: 28px;
}

.grid-4 {
  display: grid;
  gap: 24px;
}

.info-card,
.service-card,
.testimonial-card,
.team-card,
.cert-pill,
.faq-item,
.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.info-card {
  padding: 30px;
  text-align: center;
  transition: box-shadow 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.info-card:hover {
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.icon-circle {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 2px solid var(--primary);
  border-radius: 999px;
  background: var(--background);
  color: var(--primary);
  transition: background 220ms ease, color 220ms ease;
}

.info-card:hover .icon-circle {
  background: var(--primary);
  color: var(--primary-foreground);
}

.icon-circle svg {
  width: 28px;
  height: 28px;
}

.info-card h3,
.service-card h3,
.testimonial-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.info-card p,
.service-card p,
.testimonial-card p,
.team-card p {
  margin-bottom: 0;
  color: var(--muted-foreground);
  font-size: 0.92rem;
}

.service-card {
  overflow: hidden;
  transition: box-shadow 220ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
}

.service-card-media {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 208px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

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

.card-kicker {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.center-actions {
  margin-top: 34px;
  text-align: center;
}

.process-grid {
  position: relative;
  display: grid;
  gap: 34px;
}

.process-line {
  display: none;
}

.process-step {
  position: relative;
  text-align: center;
}

.watermark-number {
  position: absolute;
  top: -22px;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
  color: #f0f0f0;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.process-step .icon-circle {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}

.step-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 900;
}

.process-step h3,
.process-step p {
  position: relative;
  z-index: 1;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted-foreground);
  font-size: 0.92rem;
}

.estimate-booking-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-lg);
}

.estimate-sidebar {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.estimate-progress-label {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.estimate-progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--border);
}

.estimate-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  transition: width 220ms ease;
}

.estimate-step-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.estimate-step-button {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 9px 10px;
  background: transparent;
  color: var(--foreground);
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.estimate-step-button.is-active {
  border-color: var(--primary);
  background: var(--background);
  box-shadow: var(--shadow-sm);
}

.estimate-step-button.is-complete:not(.is-active) {
  background: rgba(255, 255, 255, 0.72);
}

.estimate-step-button small {
  display: block;
  margin-bottom: 1px;
  color: var(--muted-foreground);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.estimate-step-button span:last-child {
  min-width: 0;
  font-weight: 900;
}

.estimate-step-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--background);
  color: var(--muted-foreground);
}

.estimate-step-button.is-active .estimate-step-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.estimate-step-button.is-complete:not(.is-active) .estimate-step-icon {
  background: rgba(200, 16, 46, 0.1);
  color: var(--primary);
}

.estimate-step-icon svg {
  width: 18px;
  height: 18px;
}

.estimate-main {
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.estimate-panel,
.estimate-success {
  flex: 1;
  padding: 26px;
}

.estimate-panel h3,
.estimate-success h3 {
  margin-bottom: 0;
  font-size: 1.7rem;
  font-weight: 800;
}

.estimate-option-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.estimate-option,
.estimate-choice-list button {
  position: relative;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--card);
  color: var(--foreground);
  box-shadow: var(--shadow-sm);
  text-align: left;
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.estimate-option:hover,
.estimate-choice-list button:hover,
.estimate-slot-grid button:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.estimate-option.is-active,
.estimate-choice-list button.is-active {
  border-color: var(--primary);
  background: rgba(200, 16, 46, 0.05);
  box-shadow: var(--shadow-md);
}

.estimate-option-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 16, 46, 0.22);
  border-radius: 999px;
  background: var(--background);
  color: var(--primary);
}

.estimate-option-icon svg {
  width: 21px;
  height: 21px;
}

.estimate-option.is-active .estimate-option-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.estimate-check {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 20px;
  height: 20px;
  display: none;
  border-radius: 999px;
  background: var(--primary);
}

.estimate-check::after,
.estimate-success-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.is-active > .estimate-check,
.estimate-choice-list button.is-active .estimate-check {
  display: block;
}

.estimate-field {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.estimate-field span,
.estimate-label {
  margin: 0;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 900;
}

.estimate-field input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--background);
  color: var(--foreground);
  outline: none;
}

.estimate-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}

.estimate-choice-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.estimate-choice-list button {
  min-height: 68px;
  flex-direction: row;
  align-items: center;
}

.estimate-schedule-grid,
.estimate-contact-grid {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.estimate-schedule-grid .estimate-field {
  margin-top: 0;
}

.estimate-slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.estimate-slot-grid button {
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--foreground);
  font-size: 0.92rem;
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.estimate-slot-grid button.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}

.estimate-summary {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.estimate-summary-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.estimate-summary-item span {
  display: block;
  color: var(--foreground);
  font-size: 0.92rem;
  font-weight: 800;
}

.estimate-actions {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  padding: 18px;
  border-top: 1px solid var(--border);
}

.estimate-actions .btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.estimate-success {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 42px 24px;
  text-align: center;
}

.estimate-success-icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: block;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--primary);
}

.estimate-success-icon::after {
  left: 24px;
  top: 16px;
  width: 12px;
  height: 24px;
  border-width: 0 4px 4px 0;
}

.estimate-success p {
  max-width: 460px;
  margin: 12px auto 24px;
  color: var(--muted-foreground);
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 16px;
  color: #efefef;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  pointer-events: none;
}

.stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 1rem;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: var(--foreground);
  font-size: 0.92rem;
  font-style: italic;
}

.testimonial-card cite {
  position: relative;
  z-index: 1;
  display: block;
  font-style: normal;
}

.testimonial-card strong {
  display: block;
  font-size: 0.92rem;
}

.testimonial-card span {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.76rem;
}

.verified {
  color: var(--success) !important;
  margin-top: 5px;
}

.cta-banner {
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
}

.cta-banner-inner {
  padding: 60px 0;
}

.cta-banner h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.cta-banner p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.cta-form {
  max-width: 450px;
  margin-inline: auto;
}

.cta-form-shell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  border-radius: 12px;
  background: var(--background);
}

.cta-form input {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--background);
  color: var(--foreground);
  outline: none;
}

.cta-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}

.page-hero {
  padding: 82px 0 64px;
  background: var(--surface);
  text-align: center;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0 auto 16px;
  font-size: 2.5rem;
  font-weight: 800;
}

.page-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted-foreground);
  font-size: 1.08rem;
}

.split-row {
  display: grid;
  gap: 42px;
  align-items: center;
}

.split-row img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.split-copy h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.split-copy p {
  color: var(--muted-foreground);
}

.quote-block {
  margin: 28px 0 0;
  padding-left: 20px;
  border-left: 3px solid var(--primary);
}

.quote-block p {
  color: var(--foreground);
  font-style: italic;
}

.quote-block cite {
  display: block;
  margin-top: 8px;
  color: var(--muted-foreground);
  font-size: 0.88rem;
  font-style: normal;
}

.team-card {
  padding: 24px;
  text-align: center;
}

.avatar {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
}

.team-card h3 {
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.team-card .role {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cert-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.88rem;
}

.cert-pill svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.services-layout {
  position: relative;
}

.service-detail-list {
  display: grid;
  gap: 72px;
  max-width: 1180px;
  margin-inline: auto;
}

.service-detail {
  display: grid;
  gap: 34px;
  align-items: center;
}

.service-detail-media {
  position: relative;
}

.service-detail-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--foreground);
  box-shadow: var(--shadow-md);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.service-detail-copy {
  position: relative;
}

.service-detail-copy .watermark-number {
  top: -38px;
  left: 0;
  transform: none;
  font-size: 7rem;
}

.service-detail-copy-inner {
  position: relative;
  z-index: 1;
}

.service-detail-copy h2 {
  margin-bottom: 16px;
  font-size: 1.9rem;
}

.service-detail-copy p {
  margin-bottom: 22px;
  color: var(--muted-foreground);
}

.check-list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--foreground);
  font-size: 0.92rem;
}

.check-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 3px;
  border-radius: 999px;
  background: var(--primary);
  position: relative;
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 42px;
}

.gallery-tab {
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  background: var(--background);
  color: var(--foreground);
  font-size: 0.88rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.gallery-tab:hover {
  background: var(--surface);
}

.gallery-tab.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}

.masonry-grid {
  columns: 1;
  column-gap: 24px;
}

.project-tile {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 24px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  box-shadow: var(--shadow-sm);
  break-inside: avoid;
  text-align: left;
}

.project-tile[hidden] {
  display: none;
}

.project-tile img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-tile.is-tall img {
  height: 320px;
}

.project-tile.is-portrait img {
  height: 520px;
  object-position: center top;
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(31, 31, 46, 0);
  opacity: 0;
  text-align: center;
  transition: background 260ms ease, opacity 260ms ease;
}

.project-tile:hover img {
  transform: scale(1.05);
}

.project-tile:hover .project-overlay,
.project-tile:focus-visible .project-overlay {
  background: rgba(31, 31, 46, 0.62);
  opacity: 1;
}

.project-category {
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.72rem;
  font-weight: 900;
}

.project-overlay strong {
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.project-overlay span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.before-after-wrapper {
  max-width: 900px;
  margin-inline: auto;
}

.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  cursor: col-resize;
  user-select: none;
}

.before-after-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.before-after-slider .after-img {
  object-position: right center;
}

.before-clip {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.before-clip img {
  object-position: left center;
}

.slider-label {
  position: absolute;
  top: 16px;
  z-index: 3;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.slider-label.before {
  left: 16px;
  background: rgba(31, 31, 46, 0.7);
}

.slider-label.after {
  right: 16px;
  background: rgba(200, 16, 46, 0.9);
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
}

.slider-handle::after {
  content: "<>";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--foreground);
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.contact-layout {
  display: grid;
  gap: 44px;
}

.contact-form-card {
  padding: 28px;
}

.success-panel {
  display: none;
  padding: 48px 0;
  text-align: center;
}

.success-panel.is-visible {
  display: block;
}

.form-stack {
  display: grid;
  gap: 18px;
}

.form-stack h2 {
  margin-bottom: 0;
  font-size: 1.65rem;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  color: var(--foreground);
  font-size: 0.88rem;
  font-weight: 900;
}

.input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: var(--background);
  color: var(--foreground);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea.input {
  min-height: 118px;
  resize: vertical;
}

.input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}

.form-error {
  display: none;
  color: var(--destructive);
  font-size: 0.78rem;
}

.form-error.is-visible {
  display: block;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted-foreground);
  font-size: 0.78rem;
  text-align: center;
}

.contact-info {
  display: grid;
  gap: 32px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(200, 16, 46, 0.1);
  color: var(--primary);
}

.contact-list small {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.76rem;
}

.contact-list strong,
.contact-list a,
.contact-list span {
  font-weight: 900;
}

.map-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: var(--surface);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
}

.social-proof {
  margin-top: 56px;
  text-align: center;
}

.social-proof .stars {
  justify-content: center;
  margin-bottom: 8px;
}

.social-proof p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.faq-wrap {
  max-width: 760px;
  margin: 56px auto 0;
}

.faq-wrap h2 {
  margin-bottom: 34px;
  font-size: 1.85rem;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  border: 0;
  padding: 16px 20px;
  background: transparent;
  color: var(--foreground);
  text-align: left;
  font-weight: 900;
}

.faq-question span {
  flex: 0 0 auto;
  color: var(--muted-foreground);
  transition: transform 240ms ease;
}

.faq-item.is-open .faq-question {
  color: var(--primary);
}

.faq-item.is-open .faq-question span {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 240ms ease, opacity 240ms ease;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted-foreground);
  font-size: 0.92rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.secondary-cta-link {
  margin-top: 38px;
  text-align: center;
}

.trust-badges {
  border-bottom: 1px solid var(--border);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 30px 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--background);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--primary);
}

.site-footer {
  background: var(--surface);
}

.footer-main {
  display: grid;
  gap: 34px;
  padding: 48px 0;
}

.footer-brand img {
  width: 170px;
  margin-bottom: 12px;
}

.footer-brand p,
.footer-column li,
.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.footer-brand p {
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--border);
  color: var(--muted-foreground);
  transition: background 180ms ease, color 180ms ease;
}

.social-link:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.footer-column h3 {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.footer-column ul {
  display: grid;
  gap: 9px;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 0;
  text-align: center;
}

.floating-phone {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-lg);
  transition: transform 180ms ease;
}

.floating-phone:hover {
  transform: scale(1.08);
}

.floating-phone svg {
  width: 24px;
  height: 24px;
}

.chat-root {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
}

.chat-toggle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--foreground);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.chat-toggle.hidden {
  display: none;
}

.chat-panel {
  position: fixed;
  right: 0;
  bottom: 0;
  width: min(calc(100vw - 32px), 380px);
  max-height: min(640px, 100vh);
  display: none;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--background);
  box-shadow: var(--shadow-lg);
}

.chat-panel.is-open {
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr) auto;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--primary);
  color: #fff;
}

.chat-logo {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
}

.chat-title {
  min-width: 0;
  flex: 1 1 auto;
}

.chat-title strong,
.chat-title span {
  display: block;
}

.chat-title span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
}

.chat-close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 900;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 16px;
  background: var(--surface);
}

.chat-msg {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.88rem;
}

.chat-msg.bot {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  background: #fff;
  color: var(--foreground);
  box-shadow: var(--shadow-sm);
}

.chat-msg.user {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  background: var(--primary);
  color: #fff;
}

.typing {
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
}

.typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--muted-foreground);
  animation: typing 900ms infinite ease-in-out;
}

.typing span:nth-child(2) {
  animation-delay: 120ms;
}

.typing span:nth-child(3) {
  animation-delay: 240ms;
}

.chat-controls {
  padding: 14px;
  border-top: 1px solid var(--border);
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-options button,
.chat-row button,
.chat-form button,
.chat-form .btn {
  min-height: 38px;
  border: 0;
  border-radius: var(--radius);
  padding: 8px 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.chat-row,
.chat-form {
  display: grid;
  gap: 8px;
}

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

.chat-row input,
.chat-form input {
  min-height: 40px;
  width: 100%;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  padding: 8px 10px;
  outline: none;
}

.chat-row input:focus,
.chat-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

.chat-form button[disabled] {
  opacity: 0.7;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes typing {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@media (min-width: 640px) {
  .section-padding {
    padding: 76px 0;
  }

  .cta-form-shell {
    flex-direction: row;
  }

  .cta-form .btn {
    flex: 0 0 auto;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-full {
    grid-column: 1 / -1;
  }

  .masonry-grid {
    columns: 2;
  }

  .estimate-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estimate-contact-grid,
  .estimate-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estimate-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .header-shell {
    height: 80px;
  }

  .brand {
    font-size: 1.32rem;
  }

  .page-offset {
    padding-top: 114px;
  }

  body.announcement-hidden .page-offset {
    padding-top: 80px;
  }

  .hero-section {
    padding: 72px 0 80px;
  }

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

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

  .stat-value {
    font-size: 3rem;
  }

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

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

  .section-title h2 {
    font-size: 2.45rem;
  }

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

  .process-line {
    position: absolute;
    top: 31px;
    left: 12.5%;
    right: 12.5%;
    display: block;
    border-top: 2px dashed rgba(200, 16, 46, 0.3);
  }

  .estimate-step-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .estimate-step-button {
    min-height: 84px;
    align-items: flex-start;
    flex-direction: column;
  }

  .estimate-schedule-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

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

  .page-hero {
    padding: 96px 0 78px;
  }

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

  .split-row,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .main-nav,
  .header-actions {
    display: flex;
  }

  .mobile-menu-button,
  .mobile-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  }

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

  .service-detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
  }

  .service-detail:nth-child(even) .service-detail-media {
    order: 2;
  }

  .service-detail:nth-child(even) .service-detail-copy {
    order: 1;
  }

  .masonry-grid {
    columns: 3;
  }

  .estimate-booking-card {
    grid-template-columns: 310px minmax(0, 1fr);
  }

  .estimate-sidebar {
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .estimate-step-list {
    grid-template-columns: 1fr;
  }

  .estimate-step-button {
    min-height: 58px;
    align-items: center;
    flex-direction: row;
  }

  .estimate-panel,
  .estimate-success {
    padding: 38px;
  }

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

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

  .floating-phone {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-kicker {
    font-size: 0.6rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.15rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .floating-phone {
    display: none;
  }

  .chat-root {
    right: 16px;
  }
}
