:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --surface-strong: #fff8ed;
  --text: #18202a;
  --muted: #5f6c7b;
  --line: #d8dde4;
  --brand: #ff6b2c;
  --brand-strong: #e14f14;
  --brand-soft: #ffe7dc;
  --accent: #0f766e;
  --accent-soft: #d6f3ef;
  --shadow-sm: 0 12px 30px rgba(24, 32, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(24, 32, 42, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1160px, 92vw);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.is-hidden {
  display: none !important;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b2c, #0ea5a5);
  z-index: 1400;
  transition: width 0.12s ease;
}

.section-soft {
  background: linear-gradient(160deg, rgba(255, 249, 241, 0.95), rgba(239, 250, 248, 0.95));
}

.eyebrow {
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  line-height: 1.2;
  margin-top: 1rem;
}

.section-head p {
  margin-top: 0.95rem;
  color: var(--muted);
}

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.8;
}

.orb-one {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.28), rgba(255, 107, 44, 0));
  top: -120px;
  right: -70px;
  animation: drift 12s ease-in-out infinite;
}

.orb-two {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.22), rgba(15, 118, 110, 0));
  bottom: 20%;
  left: -110px;
  animation: drift 14s ease-in-out infinite reverse;
}

.orb-three {
  width: 290px;
  height: 290px;
  background: radial-gradient(circle, rgba(255, 193, 118, 0.26), rgba(255, 193, 118, 0));
  bottom: -120px;
  right: 20%;
  animation: drift 16s ease-in-out infinite;
}

@keyframes drift {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(247, 245, 241, 0.88);
  box-shadow: 0 8px 30px rgba(24, 32, 42, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(140deg, var(--brand), var(--brand-strong));
  box-shadow: var(--shadow-sm);
}

.brand-text {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  font-size: 0.97rem;
  font-weight: 600;
  color: #263241;
}

.site-nav a:hover {
  color: var(--brand-strong);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #1d2633;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.94rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.64rem 1rem;
  font-size: 0.88rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 14px 28px rgba(225, 79, 20, 0.27);
}

.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(225, 79, 20, 0.38);
}

.btn-ghost {
  border-color: var(--line);
  background: var(--surface);
  color: #223042;
}

.btn-ghost:hover {
  border-color: #bac3cf;
}

.btn-soft {
  color: #0d6159;
  background: var(--accent-soft);
}

.hero {
  padding-top: clamp(5rem, 8vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.hero-copy h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.05rem, 5.2vw, 4rem);
  line-height: 1.07;
  margin-top: 1rem;
}

.hero-copy .lead {
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  color: var(--muted);
  margin-top: 1.2rem;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-metrics {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.75rem;
  list-style: none;
}

.hero-metrics li {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.9rem;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.hero-metrics strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.87rem;
}

.hero-panel {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(254, 250, 243, 0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid rgba(216, 221, 228, 0.75);
}

.profile-card img {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  object-fit: cover;
}

.profile-card h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.profile-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.feature-list article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  display: flex;
  gap: 0.75rem;
}

.feature-list i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(130deg, #0f766e, #0ea5a5);
  flex-shrink: 0;
}

.feature-list h3 {
  font-size: 0.98rem;
  font-family: "Sora", sans-serif;
}

.feature-list p {
  font-size: 0.89rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.trust-strip {
  padding: 1.3rem 0;
}

.trust-row {
  background: linear-gradient(120deg, rgba(255, 233, 218, 0.8), rgba(214, 243, 239, 0.8));
  border: 1px solid rgba(216, 221, 228, 0.7);
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.trust-row p {
  color: #384656;
  font-weight: 600;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chips span {
  font-size: 0.82rem;
  color: #104c46;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
}

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

.services-toolbar {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.faq-toolbar {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: min(520px, 100%);
  padding: 0.62rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.search-field i {
  color: #5f6d7e;
}

.search-field input {
  border: 0;
  outline: 0;
  padding: 0;
  width: 100%;
  background: transparent;
}

.results-label {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.service-card i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--brand-strong);
  background: var(--brand-soft);
  margin-bottom: 0.9rem;
}

.service-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.service-card p {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

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

.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  position: relative;
}

.process-step span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brand), var(--brand-strong));
  color: #fff;
  font-weight: 800;
  font-family: "Sora", sans-serif;
}

.process-step h3 {
  margin-top: 0.85rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.process-step p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.93rem;
}

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

.portfolio-toolbar {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.filter-chip {
  border: 1px solid var(--line);
  background: var(--surface);
  color: #2a3848;
  border-radius: 999px;
  padding: 0.48rem 0.75rem;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
}

.filter-chip.active {
  background: var(--brand-soft);
  border-color: #ffc2a9;
  color: #b03a12;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.project-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.project-card div {
  padding: 1rem;
}

.tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b695f;
}

.project-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.03rem;
}

.project-card p {
  color: var(--muted);
  margin-top: 0.45rem;
  font-size: 0.92rem;
}

.project-link {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0d6f66;
}

.project-link i {
  font-size: 0.82rem;
}

.project-link:hover {
  color: var(--brand-strong);
}

.empty-state {
  margin-top: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 1.2rem;
  align-items: center;
}

.about-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.about-copy h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  margin-top: 0.9rem;
}

.about-copy p {
  margin-top: 0.9rem;
  color: var(--muted);
}

.about-copy ul {
  list-style: none;
  margin-top: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.about-copy li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: #2b3949;
}

.about-copy li i {
  color: #0b8f82;
  margin-top: 0.3rem;
}

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

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.price-card .badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f766e, #0ea5a5);
}

.price-card h3 {
  margin-top: 0.7rem;
  font-family: "Sora", sans-serif;
}

.price {
  margin-top: 0.35rem;
  margin-bottom: 0.85rem;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
}

.price-card ul {
  list-style: none;
  margin-bottom: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: #384758;
}

.price-card li {
  position: relative;
  padding-left: 1.15rem;
}

.price-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #12a58f;
  position: absolute;
  left: 0;
  top: 0.58rem;
}

.price-card.featured {
  border-color: rgba(225, 79, 20, 0.4);
  background: linear-gradient(180deg, #fff9f5, #ffffff);
  transform: translateY(-6px);
}

.estimate-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1rem;
}

.estimate-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
}

.feature-checklist {
  border: 1px dashed #d3dae3;
  border-radius: 12px;
  padding: 0.85rem;
  margin-top: 0.55rem;
  display: grid;
  gap: 0.55rem;
}

.feature-checklist legend {
  font-weight: 700;
  color: #2f3f51;
  padding-inline: 0.35rem;
}

.feature-checklist label {
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #334658;
}

.feature-checklist input {
  accent-color: #ff6b2c;
}

.range-label {
  font-size: 0.87rem;
  color: var(--muted);
}

.estimate-actions {
  margin-top: 1rem;
}

.estimate-summary h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.estimate-value {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-top: 0.65rem;
  color: #0d6f66;
}

.estimate-summary ul {
  list-style: none;
  margin-top: 0.95rem;
  display: grid;
  gap: 0.45rem;
  color: #304256;
}

.estimate-summary li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
}

.estimate-summary li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0d8a7e;
  position: absolute;
  left: 0;
  top: 0.54rem;
}

.estimate-note {
  margin-top: 1rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.availability-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1rem;
}

.availability-form,
.availability-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.slot-btn {
  border: 1px solid #d2dbe4;
  background: #fff;
  color: #2a3a4a;
  border-radius: 10px;
  padding: 0.55rem 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

.slot-btn.active {
  border-color: #f6a17b;
  background: var(--brand-soft);
  color: #a53c14;
}

.availability-actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.availability-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.availability-card p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.availability-card ul {
  list-style: none;
  margin-top: 0.9rem;
  display: grid;
  gap: 0.45rem;
  color: #304153;
}

.availability-card li {
  position: relative;
  padding-left: 1rem;
}

.availability-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0e897d;
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.testimonials .section-head {
  margin-bottom: 1.8rem;
}

.testimonial-slider {
  position: relative;
  min-height: 230px;
}

.testimonial {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.testimonial.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.testimonial p {
  color: #2b3947;
  font-size: 1.02rem;
}

.author {
  margin-top: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.author strong {
  display: block;
  font-family: "Sora", sans-serif;
}

.author span {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-controls {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.testimonial-controls button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: #263241;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
}

.testimonial-controls .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #c8d0da;
}

.testimonial-controls .dot.active {
  background: #ff6b2c;
}

.faq-wrap {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.96rem;
  color: #1f2c3a;
  cursor: pointer;
}

.faq-question i {
  color: #5e6c7c;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.faq-answer p {
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.contact-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
}

.contact-card h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-top: 0.95rem;
}

.contact-card p {
  color: var(--muted);
  margin-top: 0.8rem;
}

.contact-card ul {
  list-style: none;
  margin-top: 1.1rem;
  display: grid;
  gap: 0.65rem;
}

.contact-card li {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  color: #2e3b4c;
}

.contact-card li i {
  color: #0d8a7e;
}

.copy-actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip-btn {
  border: 1px solid #cbd5df;
  background: #fff;
  color: #2a3a4b;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  cursor: pointer;
}

.chip-btn:hover {
  border-color: #ffb591;
  background: #fff5ef;
  color: #b54417;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  gap: 0.55rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: #1c2735;
}

.social-links a:hover {
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

label {
  font-weight: 700;
  font-size: 0.9rem;
}

input,
textarea,
select {
  font: inherit;
  border: 1px solid #c9d2dd;
  border-radius: 10px;
  padding: 0.72rem 0.75rem;
  background: #fff;
  color: #1b2634;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(255, 107, 44, 0.16);
  border-color: #ff976f;
}

.form-feedback {
  min-height: 1.25rem;
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: #0f766e;
}

.form-note {
  margin-top: 0.65rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.draft-actions {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.contact-alt-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-alt-actions[hidden] {
  display: none;
}

.btn-alt {
  padding: 0.62rem 0.95rem;
  font-size: 0.84rem;
}

.site-footer {
  background: #101a24;
  color: #e4ecf6;
  padding: 2.4rem 0;
}

.footer-wrap {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  text-align: center;
}

.site-footer .brand-text {
  color: #fff;
}

.site-footer .brand-mark {
  box-shadow: none;
}

.site-footer p {
  color: #b3c2d0;
}

.site-footer small {
  color: #89a0b8;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(216, 221, 228, 0.7);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  color: #243243;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.quick-actions {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.34rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 221, 228, 0.85);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-actions.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quick-actions a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  color: #273648;
}

.quick-actions a:hover {
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translate(-50%, 18px);
  background: #1d2a39;
  color: #fff;
  border-radius: 10px;
  padding: 0.62rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 16px 28px rgba(10, 17, 27, 0.28);
  opacity: 0;
  pointer-events: none;
  z-index: 1400;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .estimate-grid,
  .availability-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .pricing-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.3rem);
    right: 4vw;
    left: 4vw;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    padding: 0.9rem;
    display: grid;
    gap: 0.35rem;
    transform: scale(0.98) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
  }

  .site-nav .btn-sm {
    margin-top: 0.35rem;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .hero-actions .btn {
    width: 100%;
  }

  .services-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .portfolio-toolbar {
    align-items: flex-start;
  }

  .service-grid,
  .process-grid,
  .pricing-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .trust-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-slider {
    min-height: 270px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
