:root {
  --bg: #f4ede4;
  --bg-soft: #e9dccb;
  --surface: #fffaf4;
  --surface-strong: #fff5ea;
  --text: #3b2a1d;
  --muted: #6f5b48;
  --primary: #ad8562;
  --primary-dark: #724f31;
  --accent: #c19b72;
  --line: #ddcebc;
  --shadow: 0 14px 40px rgba(70, 46, 27, 0.12);
  --glow: 0 18px 36px rgba(109, 73, 42, 0.2);
  --motion-fast: 240ms;
  --motion-med: 420ms;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -10%, #ead9c5 0, transparent 40%),
    radial-gradient(circle at 85% 0%, #e8d8c5 0, transparent 38%),
    linear-gradient(160deg, rgba(255, 248, 238, 0.55), rgba(233, 220, 203, 0.25)),
    var(--bg);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(244, 237, 228, 0.92);
  border-bottom: 1px solid rgba(221, 206, 188, 0.85);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.3px;
  color: var(--primary-dark);
}

.brand img {
  height: 64px;
  width: auto;
  display: block;
  border-radius: 0;
}

.brand-text {
  display: none;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  width: 44px;
  height: 40px;
  padding: 0;
  font-size: 1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-icon {
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 999px;
  transition: background var(--motion-fast) ease;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 999px;
  transition: transform var(--motion-fast) ease, top var(--motion-fast) ease;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav-toggle.open .nav-toggle-icon {
  background: transparent;
}

.nav-toggle.open .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.open .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-size: 0.93rem;
}

.nav-links a {
  padding: 0.35rem 0.2rem;
  border-bottom: 2px solid transparent;
  transition: all var(--motion-fast) ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(114, 79, 49, 0.28);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  box-shadow: var(--glow);
}

.hero {
  padding: 5.2rem 0 3.8rem;
}

.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 76vh;
  padding: 6rem 0 6.6rem;
  background-image: linear-gradient(rgba(55, 38, 23, 0.52), rgba(55, 38, 23, 0.52)),
    image-set(
      url("images/opt/herobg-opt.webp") type("image/webp"),
      url("images/opt/herobg-opt.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center;
  color: #fff;
}

.home-hero .lead {
  color: rgba(247, 242, 234, 0.95);
}

.home-hero .kicker {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.home-hero .btn-secondary {
  background: rgba(255, 247, 238, 0.9);
}

.home-hero .hero-grid {
  width: 100%;
  grid-template-columns: 1fr;
  justify-items: center;
}

.home-hero .hero-grid > div {
  max-width: 820px;
  text-align: center;
}

.home-hero .lead {
  margin-left: auto;
  margin-right: auto;
}

.home-hero .hero-ctas {
  justify-content: center;
}

.hero-grid > div,
.hero-grid > aside,
.hero > .container > .kicker,
.hero > .container > h1,
.hero > .container > .lead {
  opacity: 0;
  transform: translateY(12px);
  animation: riseIn var(--motion-med) ease forwards;
}

.hero-grid > div {
  animation-delay: 80ms;
}

.hero-grid > aside {
  animation-delay: 160ms;
}

.hero > .container > .kicker {
  animation-delay: 40ms;
}

.hero > .container > h1 {
  animation-delay: 110ms;
}

.hero > .container > .lead:nth-of-type(1) {
  animation-delay: 180ms;
}

.hero > .container > .lead:nth-of-type(2) {
  animation-delay: 250ms;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  background: #efe2d4;
  color: #5c3f27;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid #d8c1a6;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.7rem;
}

h1,
h2,
h3 {
  font-family: "Montserrat", "Inter", sans-serif;
  letter-spacing: 0.2px;
}

h1 {
  font-size: clamp(2.05rem, 4vw, 3.2rem);
  margin-top: 0.9rem;
}

.lead {
  font-size: 1.04rem;
  color: var(--muted);
  max-width: 64ch;
}

.hero-ctas {
  margin-top: 1.45rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-ctas .btn {
  padding: 0.95rem 1.6rem;
  font-size: 1.02rem;
}

.visual-card {
  background: linear-gradient(170deg, #fffaf4, #f1e3d1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.photo {
  min-height: 120px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
}

.stone-feature-media,
.finish-media,
.gallery-item .media,
.video-placeholder {
  border-radius: var(--radius-sm);
}

.photo.one {
  background-image: image-set(
    url("images/opt/IMG_7188-opt.webp") type("image/webp"),
    url("images/opt/IMG_7188-opt.jpg") type("image/jpeg")
  );
}

.photo.two {
  background-image: image-set(
    url("images/opt/IMG_7191-opt.webp") type("image/webp"),
    url("images/opt/IMG_7191-opt.jpg") type("image/jpeg")
  );
}

.photo.three {
  background-image: url("images/IMG_7193.JPG");
}

.photo.four {
  background-image: image-set(
    url("images/opt/IMG_7194-opt.webp") type("image/webp"),
    url("images/opt/IMG_7194-opt.jpg") type("image/jpeg")
  );
}

main section {
  padding: 2.8rem 0;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.home-content-flow {
  padding-top: 3rem;
  padding-bottom: 1.2rem;
}

.stone-feature {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: transparent;
  border: none;
  box-shadow: none;
}

.stone-feature-media {
  min-height: 410px;
  background-image: image-set(
    url("images/opt/IMG_7392-opt.webp") type("image/webp"),
    url("images/opt/IMG_7392-opt.jpg") type("image/jpeg")
  );
  background-size: cover;
  background-position: center;
}

.protect-surfaces-media {
  background-image: image-set(
    url("images/opt/IMG_7200-opt.webp") type("image/webp"),
    url("images/opt/IMG_7200-opt.jpg") type("image/jpeg")
  );
}

.choose-cleartop-media {
  background-image: image-set(
    url("images/opt/card-hd-opt.webp") type("image/webp"),
    url("images/opt/card-hd-opt.jpg") type("image/jpeg")
  );
}

.stone-feature-content {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

.stone-feature-content h2 {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.75rem, 3.1vw, 2.65rem);
  margin-bottom: 0.35rem;
}

.stone-feature-content h1 {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.75rem, 3.1vw, 2.65rem);
  margin-bottom: 0.35rem;
}

.stone-feature-content h2::after {
  content: "";
  display: block;
  width: 170px;
  height: 1px;
  margin-top: 0.85rem;
  background: rgba(60, 42, 27, 0.5);
}

.stone-feature-content h1::after {
  content: "";
  display: block;
  width: 170px;
  height: 1px;
  margin-top: 0.85rem;
  background: rgba(60, 42, 27, 0.5);
}

.stone-feature-content p {
  color: #2f2318;
  font-size: 1.08rem;
  max-width: 43ch;
}

.page-hero-wrap {
  padding-top: 2.4rem;
  padding-bottom: 1.1rem;
}

.page-hero-wrap .stone-feature {
  min-height: 360px;
}

.page-hero-wrap .stone-feature-content .lead {
  max-width: 46ch;
}

.contact-hero-section {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 220px;
  width: 100%;
  padding: 0;
}

.contact-hero-section .stone-feature-content {
  width: min(980px, 92%);
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.contact-hero-section .stone-feature-content h1::after {
  margin-left: auto;
  margin-right: auto;
}

.contact-content-section {
  padding-top: 0.85rem;
}

.faq-hero-section {
  min-height: 220px;
}

.faq-content-section {
  padding-top: 0.9rem;
}

.gallery-hero-media {
  background-image: image-set(
    url("images/opt/IMG_7191-opt.webp") type("image/webp"),
    url("images/opt/IMG_7191-opt.jpg") type("image/jpeg")
  );
  border-radius: var(--radius-md);
}

.faq-hero-media {
  background-image: image-set(
    url("images/opt/IMG_7392-opt.webp") type("image/webp"),
    url("images/opt/IMG_7392-opt.jpg") type("image/jpeg")
  );
}

.contact-hero-media {
  background-image: image-set(
    url("images/opt/IMG_7191-opt.webp") type("image/webp"),
    url("images/opt/IMG_7191-opt.jpg") type("image/jpeg")
  );
}

.care-hero-media {
  background-image: image-set(
    url("images/opt/IMG_7194-opt.webp") type("image/webp"),
    url("images/opt/IMG_7194-opt.jpg") type("image/jpeg")
  );
}

.warranty-hero-media {
  background-image: image-set(
    url("images/opt/card-hd-opt.webp") type("image/webp"),
    url("images/opt/card-hd-opt.jpg") type("image/jpeg")
  );
}

.stone-feature-reverse {
  grid-template-columns: 0.96fr 1.04fr;
}

.home-divider-band {
  margin-top: 0.6rem;
  padding: 2.6rem 0 3rem;
  background: linear-gradient(145deg, #724f31, #5b3f27);
  color: #f8ede1;
}

.home-divider-band .stone-feature {
  color: #f8ede1;
}

.home-divider-band .stone-feature-content p,
.home-divider-band .stone-feature-content li {
  color: rgba(248, 237, 225, 0.95);
}

.home-divider-band .stone-feature-content h2::after {
  background: rgba(255, 230, 200, 0.65);
}

.home-divider-band .checklist li::before {
  background: #e8c39a;
}

.home-finish-grid {
  margin-top: 1.4rem;
}

.finish-options-section {
  padding: 2.4rem 0 2.8rem;
}

.finish-options-heading {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.75rem, 3.1vw, 2.65rem);
  margin: 0 0 0.9rem;
  text-align: center;
}

.finish-options-heading::after {
  content: "";
  display: block;
  width: 170px;
  height: 1px;
  margin: 0.85rem auto 0;
  background: rgba(60, 42, 27, 0.5);
}

.finish-options-intro {
  margin: 0 auto;
  max-width: 880px;
  text-align: center;
  color: var(--muted);
  font-size: 1.04rem;
}

.home-divider-band .finish-card {
  border-color: rgba(255, 231, 204, 0.38);
  background: linear-gradient(165deg, rgba(255, 245, 233, 0.96), rgba(255, 239, 219, 0.9));
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.9rem;
  max-width: 920px;
  margin: 0 auto;
}

.card {
  background: linear-gradient(155deg, #fffdf9, var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: 0 6px 24px rgba(70, 46, 27, 0.08);
  transition: transform var(--motion-med) ease, box-shadow var(--motion-med) ease,
    border-color var(--motion-med) ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #caa98a;
  box-shadow: var(--glow);
}

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

ul.checklist li {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  position: relative;
}

ul.checklist li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  top: 0.52rem;
  left: 0;
}

.finish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.finish-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--motion-med) ease, box-shadow var(--motion-med) ease;
}

.finish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

.finish-media {
  height: 170px;
  background-size: cover;
  background-position: center;
}

.finish-media.gloss {
  background-image: url("images/gloss.png");
}

.finish-media.matte {
  background-image: url("images/matte.png");
}

.finish-copy {
  padding: 1rem;
}

.cta-band {
  background: linear-gradient(120deg, #8e6745 0%, #6e4c2f 100%);
  color: #f7f2ea;
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -70px;
  top: -90px;
  background: radial-gradient(circle, rgba(255, 245, 232, 0.28), transparent 65%);
}

.site-footer {
  margin-top: 0;
  padding: 2.8rem 0 1.1rem;
  background: #efe2d4;
  border-top: 1px solid var(--line);
  color: var(--text);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.2rem;
  align-items: start;
}

.footer-col h3 {
  margin: 0 0 0.95rem;
  font-family: "Montserrat", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

.footer-col p {
  margin: 0 0 0.55rem;
  color: var(--text);
}

.footer-form {
  display: grid;
  gap: 0.55rem;
}

.footer-form input,
.footer-form textarea {
  background: #f4f4f4;
  border: 1px solid #d7d7d7;
  border-radius: 2px;
  padding: 0.62rem 0.65rem;
  color: #222;
}

.footer-form textarea {
  min-height: 42px;
  resize: vertical;
}

.footer-submit {
  justify-self: start;
  border-radius: 6px;
  padding: 0.65rem 1.2rem;
  background: #fff;
  color: #111;
  box-shadow: none;
}

.footer-submit:hover {
  transform: none;
  box-shadow: none;
  background: #f1f1f1;
}

.footer-bottom {
  margin-top: 2.2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom .footer-note {
  color: var(--muted);
}

.footer-bottom .footer-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer .footer-note {
  margin: 0;
}

.footer-note {
  color: var(--muted);
  font-size: 0.93rem;
}

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

.gallery-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.carousel-track {
  display: flex;
  transition: transform var(--motion-med) ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  margin: 0;
}

.carousel-slide .media {
  aspect-ratio: 16 / 10;
}

.carousel-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--primary-dark);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.carousel-btn:hover {
  background: #f2e5d4;
  transform: translateY(-1px);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  transition: transform var(--motion-med) ease, box-shadow var(--motion-med) ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

.gallery-item .media {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.gallery-grid.gallery-grid-showcase .gallery-item:nth-child(2) .media,
.gallery-grid.gallery-grid-showcase .gallery-item:nth-child(3) .media {
  aspect-ratio: 2 / 3;
  background-size: cover;
  background-position: center;
}

@media (min-width: 961px) {
  .gallery-grid.gallery-grid-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: dense;
  }

  .gallery-grid.gallery-grid-showcase .gallery-item .media {
    aspect-ratio: 2 / 3;
  }

  .gallery-grid.gallery-grid-showcase .gallery-item:nth-child(3n) {
    grid-column: span 2;
  }

  .gallery-grid.gallery-grid-showcase .gallery-item:nth-child(3n) .media {
    aspect-ratio: 16 / 10;
  }
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  border: 1px dashed #b7a58b;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: #5f503c;
  background: repeating-linear-gradient(
    -45deg,
    #f8f2e7,
    #f8f2e7 12px,
    #f4e9d8 12px,
    #f4e9d8 24px
  );
  font-weight: 600;
}

.faq-list details {
  background: linear-gradient(155deg, #fffefb, var(--surface));
  border: 1px solid #d9c9b4;
  border-left: 3px solid transparent;
  border-radius: var(--radius-sm);
  padding: 1.05rem 1.15rem;
  margin-bottom: 0.9rem;
  transition: border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease,
    border-left-color var(--motion-fast) ease;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details[open] {
  border-color: #ccb295;
  border-left-color: var(--primary);
  box-shadow: 0 10px 22px rgba(70, 46, 27, 0.08);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-list summary::after {
  content: "+";
  font-size: 1.15rem;
  line-height: 1;
  color: var(--primary-dark);
  flex: 0 0 auto;
}

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

.faq-list details > *:not(summary) {
  margin-top: 0.75rem;
}

.faq-list p,
.faq-list ul {
  color: var(--muted);
  font-size: 0.98rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: start;
}

form {
  display: grid;
  gap: 0.8rem;
}

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

.field-label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  font: inherit;
  background: #fff;
}

input[type="checkbox"] {
  width: auto;
  padding: 0;
}

.checkbox-group {
  display: grid;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.checkbox-option input[type="checkbox"] {
  accent-color: var(--primary-dark);
  margin-top: 0.2rem;
}

.surface-size-fields {
  display: grid;
  gap: 0.6rem;
}

.surface-size-item {
  display: grid;
  gap: 0.35rem;
}

textarea {
  min-height: 125px;
  resize: vertical;
}

.socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.6rem;
}

.socials a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: var(--surface);
  font-size: 0.9rem;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li {
  margin-bottom: 0.55rem;
}

.copy-section .card {
  margin-bottom: 1rem;
}

.copy-section .card:nth-child(odd) {
  border-left: 1px solid var(--line);
}

.copy-section .card:nth-child(even) {
  border-right: 1px solid var(--line);
  background: linear-gradient(155deg, #fffdf9, var(--surface));
}

/* --- Care Instructions: Do / Avoid split layout --- */

.care-section {
  padding: 2.5rem 0 3rem;
}

.care-section .container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.care-group-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.care-heading-do {
  color: #4a7a50;
}

.care-heading-do::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  background: #4a7a50;
  border-radius: 50%;
}

.care-heading-avoid {
  color: #b8572a;
}

.care-heading-avoid::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  background: #b8572a;
  border-radius: 50%;
}

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

.care-grid .card {
  margin-bottom: 0;
  border-left: none;
  border-right: none;
}

.care-do {
  border-left: 3px solid #4a7a50 !important;
}

.care-avoid {
  border-left: 3px solid #b8572a !important;
}

.care-avoid .checklist li::before {
  background: #b8572a;
}

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

/* --- Warranty: featured summary + detail grid --- */

.warranty-section {
  padding: 2.5rem 0 3rem;
}

.warranty-section .container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.warranty-featured-card {
  border-left: 3px solid #4a7a50;
  background: linear-gradient(160deg, #fffdf9, #f6efe5);
  margin-bottom: 0;
}

.warranty-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.warranty-detail-card {
  margin-bottom: 0;
}

.warranty-claims-card {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .warranty-detail-grid {
    grid-template-columns: 1fr;
  }

  .warranty-claims-card {
    grid-column: auto;
  }
}

.card,
.gallery-item,
.faq-list details,
.video-placeholder,
.cta-band {
  opacity: 0;
  transform: translateY(16px);
  animation: riseIn var(--motion-med) ease forwards;
}

.grid-2 .card:nth-child(1),
.gallery-item:nth-child(1),
.copy-section .card:nth-child(1) {
  animation-delay: 60ms;
}

.grid-2 .card:nth-child(2),
.gallery-item:nth-child(2),
.copy-section .card:nth-child(2) {
  animation-delay: 120ms;
}

.gallery-item:nth-child(3),
.copy-section .card:nth-child(3) {
  animation-delay: 180ms;
}

.gallery-item:nth-child(4),
.copy-section .card:nth-child(4) {
  animation-delay: 240ms;
}

.gallery-item:nth-child(5),
.copy-section .card:nth-child(5) {
  animation-delay: 300ms;
}

.gallery-item:nth-child(6),
.copy-section .card:nth-child(6) {
  animation-delay: 360ms;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body[data-style-mode="minimal"] {
  --surface: #fffdf9;
  --surface-strong: #fffdf9;
  --line: #e4d8ca;
  --glow: 0 10px 24px rgba(109, 73, 42, 0.12);
}

body[data-style-mode="minimal"] .card,
body[data-style-mode="minimal"] .gallery-item,
body[data-style-mode="minimal"] .faq-list details,
body[data-style-mode="minimal"] .finish-card {
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(70, 46, 27, 0.06);
}

body[data-style-mode="minimal"] .card::before,
body[data-style-mode="minimal"] .card::after,
body[data-style-mode="minimal"] .cta-band::after {
  display: none;
}

body[data-style-mode="minimal"] .grid-2,
body[data-style-mode="minimal"] .gallery-grid,
body[data-style-mode="minimal"] .finish-grid {
  grid-template-columns: 1fr 1fr;
}

body[data-style-mode="minimal"] .grid-2 > *:first-child,
body[data-style-mode="minimal"] .grid-2 > *:last-child,
body[data-style-mode="minimal"] .gallery-item,
body[data-style-mode="minimal"] .gallery-item:nth-child(1),
body[data-style-mode="minimal"] .gallery-item:nth-child(2),
body[data-style-mode="minimal"] .gallery-item:nth-child(5),
body[data-style-mode="minimal"] .gallery-item:nth-child(6) {
  grid-column: span 1;
  margin-top: 0;
  transform: none;
}

body[data-style-mode="minimal"] .gallery-item .media,
body[data-style-mode="minimal"] .gallery-item:nth-child(2) .media,
body[data-style-mode="minimal"] .gallery-item:nth-child(5) .media {
  height: 220px;
}

body[data-style-mode="minimal"] .card,
body[data-style-mode="minimal"] .gallery-item,
body[data-style-mode="minimal"] .faq-list details,
body[data-style-mode="minimal"] .video-placeholder,
body[data-style-mode="minimal"] .cta-band,
body[data-style-mode="minimal"] .hero-grid > div,
body[data-style-mode="minimal"] .hero-grid > aside {
  animation: none;
  opacity: 1;
  transform: none;
}

body[data-style-mode="editorial"] h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  letter-spacing: -0.02em;
}

body[data-style-mode="editorial"] h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
}

body[data-style-mode="editorial"] .gallery-item:nth-child(odd) {
  transform: rotate(-0.8deg);
}

body[data-style-mode="editorial"] .gallery-item:nth-child(even) {
  transform: rotate(0.8deg);
}

body[data-style-mode="editorial"] .hero-grid {
  gap: 2.6rem;
}

body[data-style-mode="editorial"] .card {
  border-top-left-radius: 32px;
}

body[data-style-mode="commercial"] {
  --surface: #fff9f2;
  --line: #d5c1aa;
  --motion-fast: 180ms;
  --motion-med: 250ms;
  --glow: 0 12px 24px rgba(109, 73, 42, 0.14);
}

body[data-style-mode="commercial"] .grid-2,
body[data-style-mode="commercial"] .gallery-grid,
body[data-style-mode="commercial"] .finish-grid {
  grid-template-columns: repeat(2, 1fr);
}

body[data-style-mode="commercial"] .grid-2 > *:first-child,
body[data-style-mode="commercial"] .grid-2 > *:last-child,
body[data-style-mode="commercial"] .gallery-item,
body[data-style-mode="commercial"] .gallery-item:nth-child(1),
body[data-style-mode="commercial"] .gallery-item:nth-child(2),
body[data-style-mode="commercial"] .gallery-item:nth-child(5),
body[data-style-mode="commercial"] .gallery-item:nth-child(6) {
  grid-column: span 1;
  margin-top: 0;
  transform: none;
}

body[data-style-mode="commercial"] .card {
  border-radius: 14px;
  border-left: 4px solid var(--primary);
}

body[data-style-mode="commercial"] .copy-section .card:nth-child(odd),
body[data-style-mode="commercial"] .copy-section .card:nth-child(even) {
  border-right: 1px solid var(--line);
  background: linear-gradient(155deg, #fffdf9, var(--surface));
}

body[data-style-mode="commercial"] .faq-list details {
  padding: 0.85rem 0.95rem;
}

body[data-style-mode="commercial"] .gallery-item .media,
body[data-style-mode="commercial"] .gallery-item:nth-child(2) .media,
body[data-style-mode="commercial"] .gallery-item:nth-child(5) .media {
  height: 210px;
}

body[data-style-mode="commercial"] .card,
body[data-style-mode="commercial"] .gallery-item,
body[data-style-mode="commercial"] .faq-list details,
body[data-style-mode="commercial"] .video-placeholder,
body[data-style-mode="commercial"] .cta-band,
body[data-style-mode="commercial"] .hero-grid > div,
body[data-style-mode="commercial"] .hero-grid > aside {
  animation-duration: 220ms;
}

@media (max-width: 960px) {
  .brand img {
    height: 52px;
  }

  .hero-grid,
  .grid-2,
  .gallery-grid,
  .contact-layout,
  .finish-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    transform: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 4%;
    flex-wrap: wrap;
  }

  .nav-links.open {
    display: flex;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-form-col {
    max-width: 520px;
  }

  .gallery-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

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

  .gallery-grid.gallery-grid-showcase .gallery-item {
    border-radius: 12px;
  }

  .gallery-grid.gallery-grid-showcase .gallery-item .media {
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center;
  }

  .gallery-grid.gallery-grid-showcase .gallery-item:nth-child(2) .media,
  .gallery-grid.gallery-grid-showcase .gallery-item:nth-child(3) .media {
    aspect-ratio: 2 / 3;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 4.2rem 0 2.8rem;
  }

  .home-content-flow {
    padding-top: 2rem;
  }

  .home-divider-band {
    padding: 2.2rem 0 2.4rem;
  }

  .page-hero-wrap {
    padding-top: 1.8rem;
  }

  .stone-feature {
    grid-template-columns: 1fr;
  }

  .stone-feature-media {
    min-height: 235px;
  }

  .stone-feature-content {
    padding: 1.15rem;
  }

  .stone-feature-content p {
    font-size: 1rem;
  }

  .home-hero {
    min-height: 68vh;
    padding: 4.8rem 0 4.4rem;
  }

  .gallery-grid.gallery-grid-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 0.7rem;
  }

  .gallery-grid.gallery-grid-showcase .gallery-item:nth-child(1),
  .gallery-grid.gallery-grid-showcase .gallery-item:nth-child(6) {
    grid-column: span 2;
  }

  .gallery-grid.gallery-grid-showcase .gallery-item:nth-child(1) .media,
  .gallery-grid.gallery-grid-showcase .gallery-item:nth-child(6) .media {
    aspect-ratio: 16 / 10;
  }

  .gallery-grid.gallery-grid-showcase .gallery-item .media {
    aspect-ratio: 4 / 5;
  }

  .gallery-grid.gallery-grid-showcase .gallery-item:nth-child(2) .media,
  .gallery-grid.gallery-grid-showcase .gallery-item:nth-child(3) .media {
    aspect-ratio: 2 / 3;
  }
}
