:root {
  --bg-main: #111312;
  --bg-soft: #161716;
  --bg-dark: #0c0c0c;
  --bg-dark-alt: #111;
  --bg-card: #f4efe7;
  --text-main: #f4efe7;
  --text-dark: #111312;
  --text-muted: #cfc6ba;
  --accent: #b8965d;
  --danger: #9f1f1f;
  --danger-bg: #fff1ee;
  --border: rgba(255, 255, 255, 0.06);
  --border-dark: rgba(17, 19, 18, 0.14);
  --header-bg: rgba(17, 19, 18, 0.94);
  --hero-overlay-1: rgba(17, 19, 18, 0.84);
  --hero-overlay-2: rgba(17, 19, 18, 0.42);
  --hero-overlay-3: rgba(17, 19, 18, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
}
a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.logo {
  height: 125px;
  width: auto;
  display: block;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.84rem;
}
.desktop-nav a {
  opacity: 0.88;
  white-space: nowrap;
}
.desktop-nav a:hover {
  opacity: 1;
}
.mobile-header-actions,
.mobile-menu {
  display: none;
}
.nav-cta,
.primary-btn,
.mobile-header-cta {
  display: inline-block;
  background: var(--bg-card);
  color: var(--text-dark);
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
}
.secondary-btn {
  display: inline-block;
  border: 1px solid currentColor;
  color: var(--text-main);
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
}
.primary-btn,
.nav-cta,
.mobile-header-cta,
.instagram-btn,
button {
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
}

.secondary-btn {
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
}
.nav-cta,
.primary-btn,
.secondary-btn,
.mobile-header-cta,
.instagram-btn,
.review-arrow,
button {
  transition: background-color 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, opacity 0.25s ease;
}

/* solid buttons */
.nav-cta:hover,
.primary-btn:hover,
.mobile-header-cta:hover,
.instagram-btn:hover,
button:hover:not(.secondary-btn) {
  opacity: 0.88;
}

/* outlined buttons */
.secondary-btn:hover {
  background: var(--bg-card);
  color: var(--bg-main);
}

/* dark sections with black outline buttons */
.instagram-section .secondary-btn:hover,
.quote-section .secondary-btn:hover,
.poultice-btn:hover {
  background: var(--text-dark);
  color: var(--bg-card);
}
.button-row,
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.full {
  width: 100%;
  text-align: center;
  background: var(--bg-main);
  color: var(--bg-card);
}
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  margin: 0 0 16px;
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
}
h1 {
  font-size: clamp(3.5rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
h3 {
  font-size: 1.45rem;
}
.hero {
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  padding: 7vw;
  position: relative;
  overflow: hidden;
}
.carousel-hero {
  background: none;
}
.hero-carousel-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 900ms ease;
}
.hero-slide.active {
  opacity: 1;
}
.carousel-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--hero-overlay-1),
    var(--hero-overlay-2),
    var(--hero-overlay-3)
  );
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}
.hero-copy {
  max-width: 640px;
  margin: 28px 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.hero-carousel-controls {
  position: absolute;
  right: 5vw;
  bottom: 48px;
  z-index: 5;
  display: flex;
  gap: 10px;
}
.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid var(--bg-card);
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}
.carousel-dot.active {
  background: var(--bg-card);
}
.page-hero {
  padding: 110px 7vw 80px;
  background: linear-gradient(
      90deg,
      rgba(17, 19, 18, 0.92),
      rgba(17, 19, 18, 0.72)
    ),
    url("IMG_1258.avif");
  background-size: cover;
  background-position: center;
}
.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.08rem;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg-main);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip div {
  padding: 28px 7vw;
  border-right: 1px solid var(--border);
}
.trust-strip strong,
.trust-strip span {
  display: block;
}
.trust-strip span {
  margin-top: 6px;
  color: var(--text-muted);
  line-height: 1.45;
}
.quote-band {
  background: var(--bg-dark);
  padding: 58px 7vw;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.quote-band p {
  margin: 0 auto;
  max-width: 960px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
}
.section {
  padding: 96px 7vw;
}
.section.soft {
  background: var(--bg-soft);
}
.section.dark-alt {
  background: var(--bg-dark-alt);
}
.section-intro {
  max-width: 900px;
  margin-bottom: 44px;
}
.section-intro p:not(.eyebrow),
.copy-block p {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.narrow {
  max-width: 760px;
}
.home-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 88px 7vw;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.home-story-media {
  min-height: 480px;
  background-image: url("IMG_1258.avif");
  background-size: cover;
  background-position: center;
}
.home-story-content p {
  color: var(--text-muted);
  line-height: 1.7;
}
.home-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.home-featured-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.project-card {
  background: var(--bg-soft);
  padding: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
}

.project-card.large {
  grid-row: auto;
}

.project-card p {
  margin: 14px 4px 4px;
  color: var(--text-muted);
}

.image,
.project-card.large .image {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

/* Our Work page image ratio */
.portfolio-grid .project-card .image {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}
.image-one {
  background-image: url("Calacatta\ Laza\ Oro\ \(Main\ Page\ Photo\).avif");
}
.image-two {
  background-image: url("IMG_1259.avif");
}
.image-three {
  background-image: url("IMG_1278.avif");
}
.image-four {
  background-image: url("IMG_1559.avif");
}
.image-five {
  background-image: url("IMG_1558.avif");
}
.image-six {
  background-image: url("IMG_1272.avif");
}
.image-seven {
  background-image: url("IMG_1271.avif");
}
.image-eight {
  background-image: url("Warwick.avif");
}
.image-nine {
  background-image: url("IMG_1267.avif");
  background-position: center 70% !important;
}
.image-ten {
  background-image: url("Warwick\ Vanity.avif");
}
.image-eleven {
  background-image: url("Portrush.avif");
}
.image-twelve {
  background-image: url("Absolut\ Black\ Leather\ \(Our\ Work\).avif");
}
.image-thirteen {
  background-image: url("Calacatta\ Izaro\ \(Our\ Work\).avif");
}
.image-fourteen {
  background-image: url("Calacatta\ Viola\ \(Our\ Work\).avif");
}
.image-fifteen {
  background-image: url("Calacatta\ Viola\ \(Our\ Work\)\(1\).avif");
}
.image-sixteen {
  background-image: url("IMG_1554.avif");
}
.image-seventeen {
  background-image: url("Solitaj.avif");
}
.image-eighteen {
  background-image: url("Calacatta\ Laza\ Oro\ \(Our\ Work\).avif");
}
.image-nineteen {
  background-image: url("Summerhill\ \(Our\ Work\).avif");
}
.image-twenty {
  background-image: url("Calacatta\ Idillio\ Kit\ \(Our\ Work\).avif");
}
.attribution {
  color: var(--accent);
  font-weight: 700;
}
.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.process-line div,
.review-grid.expanded article,
.about-chapters article,
.stats-grid article {
  background: rgba(246, 234, 217, 0.06);
  border: 1px solid var(--border);
  padding: 24px;
}
.process-line span {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  margin-bottom: 24px;
}
.process-line p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.1;
  margin: 0 0 12px;
}
.process-line small {
  color: var(--text-muted);
}
.reviews-stack {
  background: var(--bg-dark-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid var(--border);
}
.featured-review {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 28px;
}
.featured-review blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3.4rem);
  line-height: 1.1;
  color: #f4f1ec;
}
.review-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
  border: 0;
}
.review-grid.expanded {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-grid.expanded p {
  color: var(--accent);
  margin-top: 0;
}
.review-grid.expanded blockquote {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}
.review-grid.expanded span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.material-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.material-feature .eyebrow {
  color: var(--accent);
  font-size: 0.76rem;
}
.material-list {
  display: grid;
  gap: 16px;
}
.material-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(246, 234, 217, 0.06);
  border: 1px solid var(--border);
  padding: 24px;
}
.material-list span {
  color: var(--accent);
  font-weight: 800;
}
.material-list p {
  color: var(--text-muted);
  line-height: 1.6;
}

.material-accordion {
  border: 1px solid var(--border);
  background: rgba(246, 234, 217, 0.06);
  margin-bottom: 16px;
}

.material-accordion summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
}

.material-accordion summary::-webkit-details-marker {
  display: none;
}

.material-accordion summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 800;
}

.material-accordion[open] summary::after {
  content: "–";
}

.material-accordion summary span {
  color: var(--accent);
  font-weight: 800;
}

.material-accordion summary strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.material-accordion-content {
  padding: 0 24px 28px 94px;
}

.material-accordion-content h4 {
  margin: 22px 0 8px;
  color: var(--text-main);
}

.material-accordion-content p,
.material-accordion-content li {
  color: var(--text-muted);
  line-height: 1.7;
}

.material-note {
  margin-top: 18px;
  font-style: italic;
}

@media (max-width: 820px) {
  .material-accordion summary {
    grid-template-columns: 40px 1fr auto;
    padding: 22px;
  }

  .material-accordion-content {
    padding: 0 22px 24px;
  }
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.image,
.project-card.large .image {
  aspect-ratio: 4 / 3;
}

.portfolio-grid .project-card .image {
  aspect-ratio: 1 / 1;
}

.project-card.large {
  grid-row: auto;
}
.about-story-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.about-sidebar {
  position: sticky;
  top: 130px;
}
.about-sidebar .eyebrow {
  color: var(--accent);
}
.about-sidebar p,
.about-chapters p,
.about-showroom-copy p,
.about-closing p,
.stats-grid span {
  color: var(--text-muted);
  line-height: 1.7;
}
.about-chapters {
  display: grid;
  gap: 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stats-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}
.about-showroom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-showroom-image {
  min-height: 560px;
  background-color: #d9d1c7;
  background-image: url("ns_logo_emblem_gray.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 220px;
}
.about-showroom-copy {
  padding: 96px 7vw;
  background: var(--bg-soft);
}
.about-closing {
  text-align: center;
}
.about-closing p {
  max-width: 760px;
  margin: 24px auto 0;
}
.instagram-section {
  padding: 80px 7vw;
  background: #f4efe7;
  color: var(--text-dark);
}
.instagram-section .eyebrow {
  color: #9b7a4d;
}
.instagram-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}
.instagram-handle {
  color: rgba(17, 19, 18, 0.62);
  margin: 8px 0 0;
}
.instagram-btn {
  display: inline-block;
  background: var(--text-dark);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  margin-top: 12px;
}
.quote-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  padding: 96px 7vw;
  background: var(--bg-card);
  color: var(--text-dark);
}
.quote-copy p:not(.eyebrow),
.quote-copy li {
  color: rgba(42, 36, 30, 0.72);
  font-size: 1.05rem;
  line-height: 1.7;
}
.next-steps {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(42, 36, 30, 0.16);
}
.next-steps ol {
  padding-left: 20px;
}
.quote-form {
  background: #fff8ed;
  color: var(--text-dark);
  border: 1px solid var(--border-dark);
  padding: 20px;
  box-shadow: 0 24px 70px rgba(42, 36, 30, 0.18);
}

.form-accordion {
  border: 1px solid var(--border-dark);
  margin-bottom: 14px;
  background: #fff8ed;
}
.form-accordion summary {
  cursor: pointer;
  padding: 18px 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-accordion summary::-webkit-details-marker {
  display: none;
}
.form-accordion summary:after {
  content: "+";
  font-family: Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.form-accordion[open] summary:after {
  content: "–";
}
.form-accordion .form-section {
  padding: 20px 20px 22px;
  border-top: 1px solid var(--border-dark);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  margin-bottom: 18px;
}
.checkbox-grid label {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
}
input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 18px;
  padding: 14px 13px;
  border: 1px solid var(--border-dark);
  background: #fff;
  color: var(--text-dark);
  font: inherit;
}
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  margin: 0;
}
textarea {
  resize: vertical;
}
button {
  font: inherit;
}
.form-note {
  color: rgba(42, 36, 30, 0.68);
  font-size: 0.88rem;
  text-align: center;
}
.acknowledgment {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  margin-bottom: 28px;
}
.success-message {
  display: none;
  margin-top: 18px;
  padding: 16px;
  background: #eef3ea;
  color: #263322;
  border: 1px solid #cbd8c4;
}
.success-message.show {
  display: block;
}
footer {
  padding: 48px 7vw 92px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.footer-logo {
  height: 54px;
  width: auto;
  margin-bottom: 16px;
}
.mobile-sticky-cta {
  display: none;
}
@media (max-width: 1180px) {
  .desktop-nav {
    gap: 10px;
    font-size: 0.78rem;
  }
}
@media (max-width: 980px) {
  .site-header {
    height: 104px;
  }
  .logo {
    height: 68px;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mobile-header-cta {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    display: grid;
    place-items: center;
    padding: 12px;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-main);
    margin: 2px 0;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 104px;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(17, 19, 18, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 20px 5vw;
  }
  body.menu-open .mobile-menu {
    display: grid;
    gap: 14px;
  }
  .mobile-menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }
}
@media (max-width: 820px) {
  .logo {
    height: 85px;
    width: auto;
  }

  .site-header {
    height: 104px;
    padding: 0 5vw;
  }
  h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }
  h2 {
    font-size: clamp(2.25rem, 10vw, 3.9rem);
  }
  .hero {
    min-height: calc(100vh - 104px);
    padding: 64px 5vw 120px;
  }
  .hero-carousel-controls {
    right: 26px;
    bottom: 34px;
    z-index: 40;
    pointer-events: auto;
  }
  .carousel-dot {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
  }
  .trust-strip,
  .home-story,
  .home-featured-secondary,
  .featured-work-grid,
  .process-line,
  .review-grid.expanded,
  .featured-review,
  .quote-section,
  .form-grid,
  .material-feature,
  .portfolio-grid,
  .about-story-layout,
  .stats-grid,
  .about-showroom {
    grid-template-columns: 1fr;
  }
  .trust-strip div {
    padding: 22px 5vw;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .section,
  .home-story,
  .quote-section,
  .instagram-section,
  .about-showroom-copy {
    padding: 72px 5vw;
  }
  .home-story-media,
  .about-showroom-image {
    min-height: 340px;
  }

  .image,
  .project-card.large .image {
    aspect-ratio: 4 / 3;
  }

  .portfolio-grid .project-card .image {
    aspect-ratio: 1 / 1;
  }

  .featured-review {
    gap: 14px;
    padding: 24px;
  }
  .review-arrow {
    width: 40px;
    height: 40px;
  }
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  .quote-form {
    padding: 14px;
  }
  .instagram-header {
    display: block;
  }
  .instagram-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 70%;
    overflow-x: auto;
  }
  .about-sidebar {
    position: static;
  }
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 80;
    text-align: center;
    background: var(--bg-card);
    color: var(--text-dark);
    padding: 15px 18px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  }
}

/* === Content page additions: process, service area, care sheets === */
.process-detail-list {
  display: grid;
  gap: 18px;
}

.process-detail-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  background: rgba(246, 234, 217, 0.06);
}

.process-detail-list span {
  color: var(--accent);
  letter-spacing: 0.16em;
  font-weight: 800;
}

.process-detail-list p,
.process-detail-list small,
.info-card-grid p,
.service-area-split p,
.care-grid p,
.care-grid li,
.faq-list p {
  color: var(--text-muted);
  line-height: 1.7;
}

.process-detail-list small {
  display: block;
  margin-top: 12px;
}

.info-card-grid {
  display: grid;
  gap: 18px;
}

.info-card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card-grid article,
.care-grid article {
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(246, 234, 217, 0.06);
}

.care-grid.care-grid-four {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 820px) {
  .care-grid.care-grid-four {
    grid-template-columns: 1fr;
  }
}

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

.faq-list details {
  border: 1px solid var(--border);
  background: rgba(246, 234, 217, 0.06);
  padding: 20px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.location-grid a {
  border: 1px solid var(--border);
  background: rgba(246, 234, 217, 0.06);
  padding: 18px;
  font-weight: 700;
}

.service-area-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.care-grid ul {
  padding-left: 20px;
  margin: 20px 0 24px;
}

.care-grid .secondary-btn {
  margin-top: auto;
}

@media (max-width: 820px) {
  .process-detail-list article,
  .info-card-grid.three,
  .location-grid,
  .service-area-split,
  .care-grid {
    grid-template-columns: 1fr;
  }

  .process-detail-list article {
    gap: 12px;
  }
}

/* === Service request page additions === */
.warning-box {
  background: var(--danger-bg);
  color: var(--danger);
  border: 2px solid var(--danger);
  padding: 18px;
  font-weight: 800;
  line-height: 1.5;
  margin: 22px 0;
}

#serviceRequestForm .form-grid {
  align-items: start;
}

#serviceRequestForm textarea {
  min-height: 180px;
}

#serviceRequestForm input[type="file"] {
  background: #fff;
  padding: 12px;
}

#serviceSuccessMessage {
  display: none;
  margin-top: 18px;
  padding: 16px;
  background: #eef3ea;
  color: #263322;
  border: 1px solid #cbd8c4;
}

#serviceSuccessMessage.show {
  display: block;
}

@media (max-width: 820px) {
  .warning-box {
    margin: 18px 0;
  }

  #serviceRequestForm textarea {
    min-height: 160px;
  }
}
/* === Mobile review carousel arrow cleanup === */
@media (max-width: 820px) {
  .featured-review {
    position: relative;
    display: block;
    padding: 32px 24px 88px;
  }

  .featured-review blockquote {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .featured-review .review-arrow {
    position: absolute;
    bottom: 24px;
    width: 44px;
    height: 44px;
  }

  .featured-review .review-arrow:first-of-type {
    left: 24px;
  }

  .featured-review .review-arrow:last-of-type {
    left: 82px;
  }
}

/* === Care FAQ arrow cleanup === */
.faq-list summary {
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "+";
  display: inline-block;
  margin-right: 12px;
  color: var(--accent);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
}

.faq-list details[open] summary::before {
  content: "–";
}

@media (max-width: 820px) {
  .faq-list summary {
    font-size: 1.65rem;
    line-height: 1.2;
  }
}

/* Hide mobile review carousel on desktop */
.mobile-review-carousel,
.review-cta-row {
  display: none;
}

.review-desktop-cta {
  width: 100%;
  display: inline-block;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
}

@media (max-width: 820px) {
  .reviews-stack {
    padding-bottom: 80px;
  }

  .mobile-review-carousel {
    display: block;
  }

  .review-cta-row {
    display: flex;
  }

  .review-grid,
  .review-grid.expanded {
    display: none !important;
  }

  .mobile-review-carousel {
    display: block;
    position: relative;
    padding: 28px 22px 72px;
    margin-top: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
  }

  .mobile-review-card {
    text-align: left;
  }

  .mobile-review-card blockquote {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.35;
  }

  .mobile-review-card span {
    display: block;
    margin-top: 16px;
    font-size: 0.9rem;
  }

  .mobile-review-carousel .review-arrow {
    position: absolute;
    bottom: 18px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 1.4rem;
  }

  .mobile-review-carousel .review-arrow[data-review-control="prev"] {
    left: 22px;
  }

  .mobile-review-carousel .review-arrow[data-review-control="next"] {
    right: 22px;
  }

  .review-cta-row {
    display: inline-block;
    justify-content: center;
    margin-top: 20px;
  }

  .review-cta-row .secondary-btn {
    width: auto;
    max-width: none;
    display: inline-block;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
    padding: 14px 22px;
  }

  .review-desktop-cta {
    display: none;
  }
}

.poultice-help {
  margin-top: 28px;
  max-width: 520px;
}

.poultice-help p {
  margin-bottom: 18px;
  color: rgba(20, 20, 20, 0.72);
  line-height: 1.7;
}
.poultice-btn {
  display: inline-flex;
  color: var(--text-dark);
  border-color: var(--text-dark);
  margin-top: 4px;
}

.poultice-btn:hover {
  background: var(--text-dark);
  color: var(--bg-card);
}

.info-card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.info-card-grid.four article {
  display: flex;
  flex-direction: column;
}

.info-card-grid.four .secondary-btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 980px) {
  .info-card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .info-card-grid.four {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .image,
  .project-card.large .image {
    aspect-ratio: 4 / 3;
  }

  .portfolio-grid .project-card .image {
    aspect-ratio: 1 / 1;
  }
}
.other-material-wrapper {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.other-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

#materials-other-input {
  display: none;
  margin-top: 12px;
  width: 100%;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.footer-socials a {
  color: var(--text-light);
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.form-disclaimer {
  margin-top: 18px;
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.45);
}

.form-disclaimer p {
  margin: 0;
  line-height: 1.6;
  color: rgba(42, 36, 30, 0.78);
}

.form-disclaimer p:first-child {
  margin-bottom: 8px;
}
.form-full-width {
  grid-column: 1 / -1;
}
