:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #15140f;
  --muted: #625d54;
  --line: #e8e4da;
  --surface: #f6f4ef;
  --red: #c81e1a;
  --shadow: rgba(21, 20, 15, 0.1);
  --max: 1220px;
  --radius: 14px;
  --ease: cubic-bezier(.16, .84, .32, 1);
  --font: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
}

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

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

::selection {
  background: var(--ink);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

strong {
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav {
  justify-self: center;
  display: inline-flex;
  gap: 6px;
}

.nav a,
.header-cta {
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0 15px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s var(--ease), background .2s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: var(--surface);
}

.header-cta {
  color: #fff;
  background: var(--ink);
  padding: 0 20px;
  font-weight: 700;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--red);
}

.contact-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 22;
  display: grid;
  gap: 10px;
}

.contact-float a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px var(--shadow);
  transition: transform .2s var(--ease), background .2s var(--ease);
}

.contact-float a:hover,
.contact-float a:focus-visible {
  transform: translateY(-2px);
  background: var(--red);
}

.contact-float svg {
  width: 20px;
  height: 20px;
}

/* Hero */

.hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 24px auto 0;
}

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 640px;
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--radius);
  background: rgba(15, 14, 12, .82);
  backdrop-filter: blur(6px);
  color: #fff;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #ffb3ae;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
}

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

h1 {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.18;
  letter-spacing: -.01em;
}

.hero-panel p {
  max-width: 460px;
  color: rgba(255,255,255,.78);
  font-size: 15.5px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  font-weight: 700;
  font-size: 14px;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.primary:hover {
  background: var(--red);
  border-color: var(--red);
}

.hero-panel .button.primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.hero-panel .button.primary:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--red);
  color: var(--red);
}

.hero-panel .button.secondary {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

.hero-panel .button.secondary:hover {
  border-color: #fff;
  color: #fff;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 600;
}

.hero-phone svg {
  width: 17px;
  height: 17px;
  color: var(--red);
}

.hero-stats {
  margin-top: 1px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-stats div {
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--red);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.section,
.about,
.showroom,
.location,
.contact,
.footer {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.about {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
  margin-top: 110px;
}

.about-media {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
}

.about-media img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-badge {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  display: grid;
  gap: 2px;
  padding: 18px 24px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 40px var(--shadow);
}

.about-badge strong {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.about-badge span {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.eyebrow-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow-label::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
}

h2 {
  margin-bottom: 0;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -.01em;
}

.about-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
}

.feature-list svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--red);
}

.quote-box {
  position: relative;
  margin: 28px 0 0;
  padding: 22px 24px 22px 52px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.quote-box span {
  position: absolute;
  left: 18px;
  top: 8px;
  font-size: 40px;
  font-weight: 800;
  color: var(--red);
  opacity: .5;
  line-height: 1;
  font-family: Georgia, serif;
}

.section {
  padding: 110px 0 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.text-link {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid currentColor;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.product-grid article {
  position: relative;
}

.product-grid .media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.product-grid .media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s var(--ease);
}

.product-grid article:hover .media img {
  transform: scale(1.05);
}

.product-grid h3 {
  margin: 16px 2px 4px;
  font-size: 16px;
  font-weight: 700;
}

.product-grid span.tag {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.showroom {
  margin-top: 110px;
}

.showroom .section-head {
  margin-bottom: 32px;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}

.gallery-mosaic img {
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery-mosaic img:first-child {
  grid-row: span 2;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.video-grid video {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--ink);
}

.video-grid video.wide {
  grid-column: 1 / -1;
  height: 460px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.why-grid article {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
}

.why-grid strong {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.why-grid h3 {
  margin: 36px 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.why-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14.5px;
}

.contact {
  margin-top: 110px;
  padding: 44px;
  border-radius: var(--radius);
  background: var(--surface);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}

.contact-right {
  display: grid;
  gap: 28px;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 6px;
}

.quote-form label span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  resize: vertical;
  transition: border-color .2s var(--ease);
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

.quote-form .button {
  justify-self: start;
  border: none;
}

.contact-panel {
  display: grid;
  gap: 10px;
}

.contact-panel a,
.contact-panel address {
  display: block;
  margin: 0;
  padding: 16px 18px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  font-style: normal;
  transition: border-color .2s var(--ease);
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  border-color: var(--red);
}

.contact-panel span {
  color: var(--red);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.contact-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 15.5px;
}

.stone-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.stone-strip article {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.stone-strip img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.stone-strip article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(10,9,7,.86));
}

.stone-strip .caption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.stone-strip h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.stone-strip span.use {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.74);
  font-size: 12.5px;
  font-weight: 600;
}

.stone-strip article:hover img {
  transform: scale(1.06);
}

.process {
  margin-top: 110px;
}

.process ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.process li {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
}

.process li span {
  display: block;
  color: var(--red);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.process li strong {
  display: block;
  margin-top: 14px;
  font-size: 16px;
  font-weight: 700;
}

.process li p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14.5px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  max-width: 780px;
}

.faq-list details {
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
}

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

.faq-list summary::after {
  content: "+";
  flex: none;
  color: var(--red);
  font-size: 22px;
  font-weight: 500;
  transition: transform .2s var(--ease);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.location {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 110px;
}

.location-copy {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--surface);
}

.location-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.map-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.map-panel address {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 26px var(--shadow);
  font-style: normal;
}

.map-panel span {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.map-panel strong {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.35;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 44px;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13.5px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--ink);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

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

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

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .about,
  .section-head,
  .showroom,
  .location,
  .contact {
    grid-template-columns: 1fr;
  }

  .about {
    gap: 60px 0;
  }

  .about-badge {
    bottom: -18px;
  }

  .hero-media {
    min-height: 460px;
  }

  .hero-panel {
    max-width: none;
  }

  .hero-stats,
  .product-grid,
  .why-grid,
  .stone-strip,
  .process ol {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
  }

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

  .gallery-mosaic {
    grid-template-rows: 220px 220px;
  }

  .contact {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .about,
  .showroom,
  .location,
  .contact,
  .footer {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    padding: 0 14px;
  }

  .hero {
    margin-top: 16px;
  }

  .hero-media {
    position: static;
    min-height: 0;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .hero-panel {
    position: static;
    max-width: none;
    padding: 22px 20px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  h1 {
    font-size: clamp(24px, 7.4vw, 30px);
  }

  .button {
    width: 100%;
  }

  .about {
    margin-top: 92px;
  }

  .about-media {
    grid-template-columns: 1fr 1fr;
  }

  .about-media img {
    min-height: 160px;
  }

  .section,
  .showroom,
  .location,
  .contact {
    margin-top: 64px;
  }

  .section {
    padding-top: 0;
  }

  .product-grid,
  .stone-strip,
  .gallery-mosaic,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-rows: 220px 200px 200px;
  }

  .gallery-mosaic img:first-child {
    grid-row: auto;
  }

  .video-grid video,
  .video-grid video.wide {
    height: 300px;
  }

  .contact {
    padding: 26px;
  }

  .location-copy {
    padding: 26px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 300px;
  }

  .footer {
    display: block;
  }

  .footer a {
    display: inline-block;
    margin-top: 14px;
  }
}
