/* ORASPACES — Black, White, Beige + Coral accent */
:root {
  --coral: #e85d4c;
  --coral-dark: #d14a3a;
  --coral-light: #fff0ee;
  --black: #1a1a1a;
  --charcoal: #2d2d2d;
  --muted: #6b6b6b;
  --beige: #f5f0eb;
  --beige-dark: #e8e0d5;
  --white: #ffffff;
  --footer-bg: #1e1e24;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --font: "Poppins", system-ui, sans-serif;
  --header-h: 104px;
  --topbar-h: 36px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

main {
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  background: var(--beige-dark);
}

.hero-slide img,
.bento-item img,
.service-card img,
.project-slide img {
  min-height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92%);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 93, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--coral);
}

.btn-white:hover {
  background: var(--beige);
}

/* Top bar */
.top-bar {
  background: var(--beige-light, #faf8f5);
  border-bottom: 1px solid var(--beige-dark);
  font-size: 0.75rem;
  color: var(--muted);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a:hover {
  color: var(--coral);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 100%;
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.header-inner .logo {
  margin-top: 1rem;
}

.logo-img {
  height: 92px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  background: transparent;
  display: block;
}

.logo-footer .logo-img {
  height: 100px;
}

.nav-main {
  display: flex;
  gap: 2rem;
}

.nav-main a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--coral);
}

.nav-main a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--coral);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: 0.3s;
}

/* Sub nav */
.sub-nav {
  border-top: 1px solid var(--beige-dark);
  background: var(--white);
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sub-nav::-webkit-scrollbar {
  display: none;
}

.sub-nav ul {
  display: flex;
  gap: 1.5rem;
  padding: 0.65rem 0;
  white-space: nowrap;
}

.sub-nav a {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.sub-nav a:hover {
  color: var(--coral);
}

/* Section utilities */
.section {
  padding: 5rem 0;
}

.section-beige {
  background: var(--beige);
}

.section-dark {
  background: var(--footer-bg);
  color: var(--white);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 0.5rem;
  max-width: 560px;
}

.link-arrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.link-arrow:hover {
  gap: 0.55rem;
}

/* Hero slider */
.hero {
  position: relative;
  height: min(85vh, 640px);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  color: var(--white);
  max-width: 720px;
}

.hero-content h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  z-index: 10;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
}

.hero-arrow.prev {
  left: 1.5rem;
}

.hero-arrow.next {
  right: 1.5rem;
}

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero-dots button.active {
  background: var(--white);
}

/* Service cards grid */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.cards-4,
.services-index-grid {
  overflow: hidden;
}

.service-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.service-card-body {
  padding: 1.25rem;
  text-align: center;
}

.service-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card-body .link-arrow {
  font-size: 0.8rem;
}

/* Bento gallery */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.bento-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.bento-item:hover img {
  transform: scale(1.05);
}

.bento-item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}

.bento-item:nth-child(2) {
  grid-column: span 4;
}

.bento-item:nth-child(3) {
  grid-column: span 3;
}

.bento-item:nth-child(4) {
  grid-column: span 3;
}

.bento-item:nth-child(5) {
  grid-column: span 4;
}

.bento-item:nth-child(6) {
  grid-column: span 5;
}

/* Why choose — icons row */
.features-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.feature-item .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--coral-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
}

/* Estimate cards */
.estimate-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.estimate-card {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.estimate-card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow);
}

.estimate-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.estimate-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.estimate-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* Promo banner */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  background: var(--beige);
}

.promo-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.promo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.promo-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.promo-text p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  font-size: 4rem;
  color: var(--coral-light);
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: Georgia, serif;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-style: italic;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}

/* Projects carousel */
.projects-track-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.projects-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.project-slide {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}

.project-slide-overlay h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.project-slide-overlay span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.carousel-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}

.carousel-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--beige-dark);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
}

.carousel-nav button:hover {
  border-color: var(--coral);
  color: var(--coral);
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Brands */
.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
}

.brand-item {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  opacity: 0.7;
  letter-spacing: 0.05em;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--beige-dark);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--coral);
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-answer-inner a {
  color: var(--coral);
  font-weight: 500;
}

.faq-answer-inner a:hover {
  text-decoration: underline;
}

.faq-item.open .faq-answer {
  max-height: 320px;
}

/* CTA banner */
.cta-banner {
  background: var(--coral-light);
  text-align: center;
  padding: 4rem 2rem;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.social-links a:hover {
  background: var(--coral);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--coral);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-bottom a:hover {
  color: var(--coral);
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--beige);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
}

.page-hero .breadcrumb a:hover {
  color: var(--coral);
}

/* About page */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.expertise-item {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--coral);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Services page */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-block:nth-child(even) .service-block-img {
  order: 2;
}

.service-block img {
  border-radius: var(--radius);
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.service-block h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-block p {
  color: var(--muted);
}

/* Process timeline */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.process-step .step-num {
  width: 48px;
  height: 48px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}

.portfolio-card:hover {
  transform: translateY(-6px);
}

.portfolio-card img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.portfolio-card-body {
  padding: 1.5rem;
  background: var(--white);
}

.portfolio-card-body .tag {
  font-size: 0.75rem;
  color: var(--coral);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.portfolio-card-body h3 {
  font-size: 1.15rem;
  margin: 0.35rem 0 0.5rem;
}

.portfolio-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Project detail */
.project-hero-img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--beige);
  border-radius: var(--radius);
}

.project-meta dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.project-meta dd {
  font-weight: 600;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.project-gallery img {
  border-radius: var(--radius);
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--beige);
  padding: 2.5rem;
  border-radius: var(--radius);
}

.contact-info-card h3 {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-item .icon {
  font-size: 1.25rem;
}

.contact-info-card a {
  color: var(--coral);
  font-weight: 500;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--beige-dark);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 1rem;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 8px;
  font-size: 0.9rem;
}

.form-success.show {
  display: block;
}

/* Mobile */
@media (max-width: 1024px) {
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: 200px;
  }

  .project-slide {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 80px;
    --topbar-h: 0px;
  }

  .header-inner .logo {
    margin-top: 0.5rem;
  }

  .logo-img {
    height: 64px;
    max-width: 280px;
  }

  .top-bar {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-main {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
  }

  .nav-main.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sub-nav {
    display: none;
  }

  .cards-4,
  .estimate-cards,
  .testimonial-grid,
  .stats-row,
  .portfolio-grid,
  .two-col,
  .service-block,
  .contact-grid,
  .promo-split {
    grid-template-columns: 1fr;
  }

  .promo-split img {
    min-height: 280px;
  }

  .promo-text {
    padding: 2.5rem 1.5rem;
  }

  .features-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-arrow {
    display: none;
  }

  .project-slide {
    flex: 0 0 85%;
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .service-block:nth-child(even) .service-block-img {
    order: 0;
  }

  .services-index-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Services pages ========== */

/* Services listing hero */
.services-page-hero {
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-light, #faf8f5) 50%, var(--white) 100%);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--beige-dark);
}

.services-page-hero-inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.services-page-hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  margin: 0.5rem 0 0.75rem;
}

.services-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.services-stat {
  text-align: center;
}

.services-stat .num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1.2;
}

.services-stat .label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.services-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem 0;
}

.services-tags span {
  padding: 0.4rem 1rem;
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* Service index cards */
.services-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.service-index-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.service-index-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: var(--coral-light);
}

.service-card-media {
  position: relative;
  overflow: hidden;
}

.service-index-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  min-height: 200px;
  background: var(--beige-dark);
  transition: transform 0.5s ease;
}

.service-index-card:hover img {
  transform: scale(1.06);
}

.service-card-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.service-card-arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transform: translate(8px, 8px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 2;
}

.service-index-card:hover .service-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.service-index-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.service-index-card-body h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-index-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.6;
}

.service-index-card-body .link-arrow {
  margin-top: auto;
  font-size: 0.85rem;
}

/* Services mini process strip */
.services-process-strip {
  padding: 3.5rem 0;
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.services-process-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.services-process-item .step {
  width: 44px;
  height: 44px;
  background: var(--coral-light);
  color: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.services-process-item h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.services-process-item p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Service detail — hero banner */
.service-banner {
  position: relative;
  min-height: min(52vh, 480px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.service-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-banner-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3rem 0 2.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  color: var(--white);
}

.service-banner-overlay .breadcrumb {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}

.service-banner-overlay .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.service-banner-overlay .breadcrumb a:hover {
  color: var(--white);
}

.service-banner-overlay h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  max-width: 640px;
}

.service-banner-tagline {
  font-size: 1.05rem;
  opacity: 0.9;
  font-weight: 300;
  max-width: 520px;
}

/* Service detail — content layout */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.service-lead {
  font-size: 1.15rem;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--coral);
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.service-highlight {
  padding: 1.25rem;
  background: var(--beige);
  border-radius: var(--radius);
  text-align: center;
}

.service-highlight .icon {
  font-size: 1.5rem;
  color: var(--coral);
  display: block;
  margin-bottom: 0.5rem;
}

.service-highlight h4 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.service-highlight p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.service-section-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.service-features-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-feature-item:hover {
  border-color: var(--coral);
  box-shadow: 0 4px 16px rgba(232, 93, 76, 0.08);
}

.service-feature-item .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--coral-light);
  color: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Sidebar quote card */
.service-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--topbar-h) + 1.5rem);
}

.service-quote-card {
  background: var(--black);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-quote-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.service-quote-card > p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.service-quote-contact {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.service-quote-contact li {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  opacity: 0.9;
}

.service-quote-contact a {
  color: var(--white);
}

.service-quote-contact a:hover {
  color: var(--coral);
}

.btn-block {
  width: 100%;
  text-align: center;
}

.service-link-muted {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.service-link-muted:hover {
  color: var(--coral);
}

/* Related services cards */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.related-service-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.related-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.related-service-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.related-service-card span {
  display: block;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Legacy aliases */
.service-detail-hero {
  display: none;
}

.service-detail-content {
  max-width: none;
}

.service-includes {
  display: none;
}

.related-services {
  display: none;
}

@media (max-width: 1024px) {
  .services-index-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

  .service-highlights {
    grid-template-columns: 1fr;
  }

  .related-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-features-grid {
    grid-template-columns: 1fr;
  }

  .related-services-grid {
    grid-template-columns: 1fr;
  }

  .services-stats {
    gap: 1.5rem;
  }
}
