/* ========================================================================
   IDEAL MARBLE & GRANITE — Premium Site
   Brand: Bodoni Moda (display) · Inter (text) · JetBrains Mono (eyebrow)
   Palette: #FFFFFF · #0A0A0A · #E30613 · #C9C9C9
   ======================================================================== */

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

:root {
  --white:#ffffff;
  --off:#f3f1ec;
  --stone:#e8e4dc;
  --grey:#c9c9c9;
  --vein:#6a6a6a;
  --ink:#0a0a0a;
  --ink-2:#141414;
  --ink-3:#1c1c1c;
  --red:#e30613;
  --red-2:#ff2a2a;
  --red-d:#b3050f;
  --serif:'Instrument Serif', 'Times New Roman', serif;
  --sans:'DM Sans', system-ui, sans-serif;
  --mono:'JetBrains Mono', ui-monospace, monospace;
  --ease:cubic-bezier(0.23,1,0.32,1);
  --ease-sharp:cubic-bezier(0.76,0,0.24,1);
  --ease-soft:cubic-bezier(0.25,0.46,0.45,0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white); color: var(--ink);
  font-family: var(--sans); font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  cursor: none;
}
body.loading { overflow: hidden; height: 100vh; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; font-family: inherit; cursor: pointer; }

/* ============== TYPE ============== */
.serif { font-family: var(--serif); }
.mono  { font-family: var(--mono); }

.eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--red);
}
.eyebrow::before {
  content: ""; width: 32px; height: 1px; background: currentColor;
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--serif); font-weight: 400;
  letter-spacing: -0.02em; line-height: 0.98;
}
.italic-accent {
  font-style: italic; font-weight: 400; color: var(--red);
}
.serif-i { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ============== UTIL ============== */
.wrap { width: 100%; max-width: 1480px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .wrap { padding: 0 24px; } }

.btn {
  position: relative; display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 32px; border-radius: 0;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  transition: all .5s var(--ease);
  overflow: hidden; isolation: isolate; cursor: none;
}
.btn .arr { display: inline-block; transition: transform .5s var(--ease); }
.btn:hover .arr { transform: translateX(6px); }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  transition: transform .6s var(--ease-sharp);
}

.btn-red { background: var(--red); color: var(--white); }
.btn-red::before { background: var(--ink); transform: translateY(101%); }
.btn-red:hover::before { transform: translateY(0); }

.btn-ghost {
  border: 1px solid var(--ink); color: var(--ink); background: transparent;
}
.btn-ghost::before { background: var(--ink); transform: translateY(101%); }
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::before { transform: translateY(0); }

.btn-ghost-light {
  border: 1px solid rgba(255,255,255,.4); color: var(--white);
}
.btn-ghost-light::before { background: var(--white); transform: translateY(101%); }
.btn-ghost-light:hover { color: var(--ink); }
.btn-ghost-light:hover::before { transform: translateY(0); }

/* ============== CURSOR ============== */
#cur, #cur2 {
  position: fixed; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
#cur {
  width: 6px; height: 6px; background: var(--white);
  transition: width .25s, height .25s, opacity .2s;
}
#cur2 {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.45);
  transition: width .35s var(--ease), height .35s var(--ease),
              background .35s, border-color .35s, opacity .35s;
}
#cur2.view { width: 96px; height: 96px; background: var(--red); border-color: var(--red); mix-blend-mode: normal; }
#cur2 .lbl {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; color: var(--white); opacity: 0; transition: opacity .25s;
}
#cur2.view .lbl { opacity: 1; }
@media (max-width: 900px) {
  #cur, #cur2 { display: none; }
  body { cursor: auto; }
}

/* ============== GRAIN ============== */
.grain {
  position: fixed; inset: 0; z-index: 8000; pointer-events: none;
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: gr 7s steps(8) infinite;
}
@keyframes gr {
  0%{transform:translate(0,0)} 25%{transform:translate(-3%,2%)}
  50%{transform:translate(2%,-2%)} 75%{transform:translate(-2%,3%)}
  100%{transform:translate(0,0)}
}

/* ============== LOADER ============== */
#loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: clip-path 1.4s var(--ease-sharp);
  clip-path: inset(0 0 0 0);
}
#loader.done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.ldr-mark {
  width: 120px; height: 160px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ldr-mark svg { width: 100%; height: 100%; overflow: visible; }
.ldr-mark .arch {
  fill: none; stroke: var(--white); stroke-width: 1.5;
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
  animation: drawArch 1.6s var(--ease-sharp) .2s forwards;
}
.ldr-mark .vein {
  stroke: var(--red); stroke-width: 1.5;
  stroke-dasharray: 200; stroke-dashoffset: 200;
  animation: drawVein .8s var(--ease) 1.4s forwards;
}
@keyframes drawArch { to { stroke-dashoffset: 0; } }
@keyframes drawVein { to { stroke-dashoffset: 0; } }
.ldr-name {
  font-family: var(--serif); font-weight: 400;
  font-size: 44px; letter-spacing: -0.02em; margin-top: 28px;
  opacity: 0; animation: fadeUp .9s var(--ease) 1.5s forwards;
}
.ldr-sub {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.5em;
  color: rgba(255,255,255,.4); margin-top: 14px; text-transform: uppercase;
  opacity: 0; animation: fadeUp .9s var(--ease) 1.7s forwards;
}
.ldr-pct {
  position: absolute; bottom: 48px; left: 48px; right: 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.ldr-bar {
  position: absolute; bottom: 30px; left: 0; height: 2px; background: var(--red);
  width: 0%; transition: width .15s linear;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============== NAV ============== */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  transition: all .5s var(--ease);
  mix-blend-mode: difference;
}
nav#nav.scrolled { padding: 14px 48px; }
nav#nav .nlogo {
  font-family: var(--serif); font-weight: 400; font-size: 28px;
  letter-spacing: -0.02em; color: var(--white);
  display: flex; align-items: baseline; gap: 10px;
}
nav#nav .nlogo .dot { color: var(--red); font-style: italic; font-weight: 400; }
nav#nav .nlogo .sub {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.32em;
  color: rgba(255,255,255,.5); font-weight: 400;
}
nav#nav ul {
  display: flex; gap: 40px; list-style: none;
}
nav#nav ul a {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--white);
  position: relative; padding: 4px 0;
}
nav#nav ul a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px;
  width: 0; background: var(--red); transition: width .4s var(--ease);
}
nav#nav ul a:hover::after { width: 100%; }
nav#nav .ncta {
  display: flex; align-items: center; gap: 24px;
}
nav#nav .nph {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--white);
}
nav#nav .nbtn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; background: var(--red); color: var(--white);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
}
.mhm { display: none; width: 28px; height: 18px; flex-direction: column; justify-content: space-between; }
.mhm span { display: block; height: 2px; background: var(--white); }
@media (max-width: 1024px) {
  nav#nav ul, nav#nav .ncta { display: none; }
  .mhm { display: flex; }
}

/* mobile menu */
.mm {
  position: fixed; inset: 0; z-index: 250; background: var(--ink);
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
}
.mm.open { display: flex; }
.mm a {
  font-family: var(--serif); font-size: 48px; font-weight: 400; color: var(--white);
}
.mm .mmx { position: absolute; top: 24px; right: 24px; color: var(--white); font-size: 24px; }

/* ============== HERO ============== */
#hero {
  position: relative; min-height: 100vh; overflow: hidden;
  background: #0a0a0a; color: var(--white);
  padding: 140px 48px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: #0a0a0a;
  background-image: url('marble-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: brightness(1) contrast(1.05);
}
/* Decorative animated veins removed per design */
.hero-veins { display: none !important; }
/* Checkered grid overlay removed per design */
.hero-grid { display: none !important; }

.hero-content {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px; align-items: center;
  width: 100%; max-width: 1480px; margin: 0 auto;
}
.hero-eye {
  display: flex; align-items: center; gap: 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--grey);
  margin-bottom: 36px;
}
.hero-eye .live {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  position: relative;
}
.hero-eye .live::after {
  content: ""; position: absolute; inset: -4px; border: 1px solid var(--red);
  border-radius: 50%; animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0% { transform: scale(.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.hero-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(3.4rem, 9vw, 9rem);
  line-height: 0.92; letter-spacing: -0.03em;
  color: var(--white);
}
.hero-title .line { display: block; overflow: hidden; padding: 4px 0; }
.hero-title .line > span {
  display: inline-block; transform: translateY(110%);
  animation: titleUp 1.2s var(--ease) forwards;
}
.hero-title .line:nth-child(1) > span { animation-delay: 1.5s; }
.hero-title .line:nth-child(2) > span { animation-delay: 1.7s; }
.hero-title .line:nth-child(3) > span { animation-delay: 1.9s; }
@keyframes titleUp { to { transform: translateY(0); } }
.hero-title .ital {
  font-style: italic; font-weight: 400; color: var(--red-2);
}

.hero-sub {
  margin-top: 40px; max-width: 540px;
  font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.7);
  font-weight: 300;
  opacity: 0; animation: fadeUp .9s var(--ease) 2.3s forwards;
}
.hero-cta {
  display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s var(--ease) 2.5s forwards;
}

/* hero side card stack */
.hero-side {
  position: relative; height: 600px;
  opacity: 0; animation: fadeUp 1.2s var(--ease) 2.1s forwards;
}
.hero-card {
  position: absolute; border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transition: transform .8s var(--ease);
}
.hero-card .img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transform: scale(1.05); transition: transform 1.5s var(--ease);
}
.hero-card:hover .img { transform: scale(1); }
.hero-card .label {
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--white);
  background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
  padding: 6px 12px;
}
.hero-card.c1 { top: 0; right: 0; width: 320px; height: 420px;
  animation: floatA 8s ease-in-out infinite; }
.hero-card.c2 { top: 180px; right: 220px; width: 220px; height: 280px;
  animation: floatB 9s ease-in-out infinite; }
.hero-card.c3 { bottom: 20px; right: 60px; width: 180px; height: 240px;
  animation: floatA 7s ease-in-out infinite reverse; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(14px)} }

.hero-meta {
  position: absolute; left: 48px; bottom: 80px; right: 48px;
  display: flex; justify-content: space-between; align-items: flex-end;
  z-index: 4; pointer-events: none;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  opacity: 0; animation: fadeUp .9s var(--ease) 2.7s forwards;
}
.hero-meta .scroll {
  display: flex; align-items: center; gap: 14px;
}
.hero-meta .scroll .ln {
  width: 60px; height: 1px; background: rgba(255,255,255,.3); position: relative;
  overflow: hidden;
}
.hero-meta .scroll .ln::after {
  content: ""; position: absolute; top: 0; left: -40%; width: 40%; height: 100%;
  background: var(--red); animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { left: -40%; }
  100% { left: 100%; }
}
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-side { display: none; }
}

/* ============== TICKER ============== */
.ticker {
  background: var(--ink); color: var(--white);
  padding: 32px 0; overflow: hidden; border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
  position: relative; z-index: 5;
}
.ticker-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: tickerMove 40s linear infinite;
  font-family: var(--serif); font-size: 88px; font-weight: 400;
  letter-spacing: -0.02em;
}
.ticker-track .ti { display: inline-flex; align-items: center; gap: 60px; }
.ticker-track .ti::after {
  content: "✦"; color: var(--red); font-size: 32px;
}
.ticker-track .ti.ital { font-style: italic; font-weight: 400; color: var(--red); }
@keyframes tickerMove { to { transform: translateX(-50%); } }

/* ============== INTRO / ABOUT ============== */
.about {
  padding: 180px 48px 160px; background: var(--white);
  position: relative; overflow: hidden;
}
.about::before {
  content: "Ideal."; position: absolute;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 32vw; line-height: 0.85; letter-spacing: -0.05em;
  color: rgba(0,0,0,0.025);
  top: -8vw; right: -3vw;
  pointer-events: none; user-select: none;
}
.about-head {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 96px;
  align-items: start; max-width: 1480px; margin: 0 auto;
  position: relative; z-index: 1;
}
.about-copy h2 {
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 56px;
}
.about-lead {
  font-size: 20px; line-height: 1.55; color: var(--ink);
  letter-spacing: -0.005em; max-width: 620px;
}
.about-lead strong { font-weight: 500; color: var(--ink); }
.about-lead-2 {
  font-size: 17px; line-height: 1.65; color: var(--vein);
  margin-top: 22px; max-width: 620px;
}
.about-lead-2 em {
  font-style: italic; font-family: var(--serif); font-weight: 400;
  color: var(--red); font-size: 19px; letter-spacing: -0.005em;
}
.about-sign {
  display: flex; align-items: center; gap: 22px;
  margin-top: 48px;
}
.about-sign .sig-line {
  width: 56px; height: 1px; background: var(--ink); flex-shrink: 0;
}
.about-sign .sig-name {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 28px; line-height: 1; color: var(--ink);
  letter-spacing: -0.01em;
}
.about-sign .sig-role {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--vein);
  margin-top: 8px;
}

/* Right aside — material card + meta details */
.about-aside {
  display: flex; flex-direction: column; gap: 36px;
  position: sticky; top: 120px;
}
.about-card {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--ink);
}
.about-card .aac-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(0.15) contrast(1.05);
  transform: scale(1.05); transition: transform 1.4s var(--ease), filter 1s var(--ease);
}
.about-card:hover .aac-img { transform: scale(1.1); filter: grayscale(0) contrast(1.08); }
.about-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
}
.about-card .aac-overlay {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  z-index: 2; color: var(--white);
}
.about-card .aac-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--red-2); margin-bottom: 6px;
  display: flex; align-items: center; gap: 10px;
}
.about-card .aac-tag::before {
  content: ""; width: 18px; height: 1px; background: var(--red-2);
}
.about-card .aac-mat {
  font-family: var(--serif); font-weight: 400; font-size: 32px;
  letter-spacing: -0.02em; line-height: 1;
}

.about-meta {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.about-meta .am-row {
  display: grid; grid-template-columns: 1fr 1.6fr;
  padding: 18px 0; gap: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: baseline;
}
.about-meta .am-k {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--red);
}
.about-meta .am-v {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  letter-spacing: -0.01em; color: var(--ink); line-height: 1.35;
}

/* Stats row */
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin: 120px auto 0;
  max-width: 1480px;
  border-top: 1px solid rgba(0,0,0,0.12);
  position: relative; z-index: 1;
}
.about-stat {
  padding: 56px 32px 48px; border-right: 1px solid rgba(0,0,0,0.08);
  position: relative;
}
.about-stat:last-child { border-right: none; }
.about-stat .num {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(3.8rem, 6.5vw, 6rem);
  line-height: 1; letter-spacing: -0.03em; color: var(--ink);
}
.about-stat .num em { font-style: italic; font-weight: 400; color: var(--red); }
.about-stat .lbl {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--vein); margin-top: 16px;
}
.about-stat .index {
  position: absolute; top: 48px; right: 32px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--red);
}
@media (max-width: 1024px) {
  .about-head { grid-template-columns: 1fr; gap: 64px; }
  .about-aside { position: static; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
}
@media (max-width: 600px) {
  .about-stats { grid-template-columns: 1fr; }
}

/* ============== SERVICES ============== */
.services {
  background-color: #0a0a0a;
  color: var(--white); padding: 160px 48px;
  position: relative; overflow: hidden;
}
.services::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('marble-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(1) contrast(1.05);
  z-index: 0;
  pointer-events: none;
}
.services > * { position: relative; z-index: 1; }
.services-head {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
  align-items: end; max-width: 1480px; margin: 0 auto 100px;
  position: relative; z-index: 1;
}
.services-head h2 {
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.92;
}
.services-head p {
  color: rgba(255,255,255,0.55); font-size: 17px; line-height: 1.6;
  max-width: 480px;
}
.svc-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
  max-width: 1480px; margin: 0 auto; position: relative; z-index: 1;
}
.svc {
  position: relative; padding: 40px 36px;
  background: rgba(10,10,10,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  transition: all .6s var(--ease);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 480px;
}
.svc:hover { border-color: var(--red); background: rgba(227,6,19,0.06); }
.svc::before {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 0;
  background: var(--red); transition: height .6s var(--ease-sharp);
  z-index: 0;
}
.svc:hover::before { height: 100%; }
.svc > * { position: relative; z-index: 1; }

.svc.sp1 { grid-column: span 4; }
.svc.sp2 { grid-column: span 4; }
.svc.sp3 { grid-column: span 4; }
.svc.sp4 { grid-column: span 6; min-height: 380px; }
.svc.sp5 { grid-column: span 6; min-height: 380px; }
@media (max-width: 1024px) {
  .svc.sp1, .svc.sp2, .svc.sp3, .svc.sp4, .svc.sp5 { grid-column: span 12; }
}

.svc-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.3em;
  color: var(--red); transition: color .4s;
}
.svc:hover .svc-num { color: var(--white); }
.svc-img {
  width: 100%; height: 200px; margin-top: 28px; overflow: hidden;
  background-size: cover; background-position: center;
  filter: grayscale(0.3) contrast(1.05);
  transition: filter .8s var(--ease), transform .8s var(--ease);
}
.svc:hover .svc-img { filter: grayscale(0); transform: scale(1.02); }
.svc-name {
  font-family: var(--serif); font-weight: 400;
  font-size: 48px; letter-spacing: -0.02em; line-height: 1;
  margin-top: 36px;
}
.svc-name em { font-style: italic; font-weight: 400; color: var(--red-2); transition: color .4s; }
.svc:hover .svc-name em { color: var(--white); }
.svc-desc {
  margin-top: 18px; font-size: 14px; line-height: 1.65;
  color: rgba(255,255,255,0.55); transition: color .4s;
}
.svc:hover .svc-desc { color: rgba(255,255,255,0.85); }
.svc-go {
  margin-top: 24px; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.6); transition: color .4s, gap .4s;
}
.svc:hover .svc-go { color: var(--white); gap: 16px; }

/* ============== PROCESS ============== */
.process {
  background: var(--white); padding: 160px 48px; position: relative; overflow: hidden;
}
/* Subtle paper-grain backdrop using SVG noise */
.process::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(800px 400px at 18% 22%, rgba(227,6,19,0.025), transparent 60%),
    radial-gradient(600px 320px at 85% 78%, rgba(0,0,0,0.025), transparent 60%);
}
/* Big italic watermark "Method" */
.process::after {
  content: "Method."; position: absolute;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 28vw; line-height: 0.85; letter-spacing: -0.05em;
  color: rgba(0,0,0,0.028);
  bottom: -7vw; left: -3vw;
  pointer-events: none; user-select: none;
}
.process-head {
  max-width: 1480px; margin: 0 auto 120px; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: end;
}
.process-head h2 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  margin-top: 28px; line-height: 0.92;
}
.process-head .ph-meta {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--vein); line-height: 1.8;
  border-left: 1px solid rgba(0,0,0,0.12); padding-left: 22px;
}
.process-head .ph-meta strong {
  color: var(--ink); font-weight: 500; display: block; margin-bottom: 6px;
}
.process-track {
  position: relative; max-width: 1480px; margin: 0 auto; z-index: 1;
}
.process-track .line {
  position: absolute; top: 12px; left: 6%; right: 6%; height: 1px;
  background: linear-gradient(90deg, rgba(0,0,0,0.06), rgba(0,0,0,0.18) 50%, rgba(0,0,0,0.06));
}
.process-track .line::after {
  content: ""; position: absolute; left: 0; top: -1px; height: 3px;
  width: var(--p, 0%); background: linear-gradient(90deg, var(--red), var(--red-2));
  transition: width 2s var(--ease);
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px;
}
.proc-step {
  padding-top: 0; position: relative;
  padding-right: 24px;
}
.proc-step .dot {
  width: 14px; height: 14px; background: var(--white);
  border: 2px solid var(--ink); border-radius: 50%;
  margin: 0 0 38px; position: relative; z-index: 2;
  transition: background .5s, border-color .5s, box-shadow .5s;
  box-shadow: 0 0 0 6px var(--white), 0 0 0 7px rgba(0,0,0,0.06);
}
.proc-step:hover .dot { background: var(--red); border-color: var(--red); box-shadow: 0 0 0 6px var(--white), 0 0 0 7px rgba(227,6,19,0.25); }
.proc-step.active .dot { background: var(--red); border-color: var(--red); }
.proc-step .num {
  font-family: var(--serif); font-weight: 400;
  font-size: 120px; line-height: 1; letter-spacing: -0.03em;
  color: var(--ink);
  position: relative; display: inline-block;
}
.proc-step .num em { font-style: italic; font-weight: 400; color: var(--red); }
.proc-step .num::after {
  content: ""; position: absolute; left: 0; bottom: 8px;
  width: 28px; height: 2px; background: var(--ink);
  transform-origin: left; transform: scaleX(0);
  transition: transform .6s var(--ease-sharp);
}
.proc-step:hover .num::after { transform: scaleX(1); background: var(--red); }
.proc-step .name {
  font-family: var(--serif); font-weight: 400;
  font-size: 32px; letter-spacing: -0.02em;
  margin: 22px 0 16px;
  line-height: 1.05;
}
.proc-step .desc {
  font-size: 14px; line-height: 1.7; color: var(--vein);
  max-width: 90%;
}
.proc-step .meta {
  margin-top: 22px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 10px;
}
.proc-step .meta::before {
  content: ""; width: 18px; height: 1px; background: var(--red);
}
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-track .line { display: none; }
  .process-head { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

/* ============== MARQUEE BAND ============== */
.band-marble {
  height: 70vh; background: var(--ink); color: var(--white);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.band-marble .img {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1615873968403-89e068629265?w=1800&q=85');
  background-size: cover; background-position: center;
  opacity: 0.45; transform: scale(1.1);
  transition: transform 1.5s var(--ease);
  filter: grayscale(0.3) contrast(1.1);
}
.band-marble:hover .img { transform: scale(1); }
.band-marble .quote {
  position: relative; z-index: 1; text-align: center;
  max-width: 1200px; padding: 0 48px;
}
.band-marble .eyebrow { color: var(--red-2); margin-bottom: 32px; }
.band-marble .quote .text {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 5.5rem); line-height: 1.08;
  letter-spacing: -0.02em;
}
.band-marble .quote em {
  font-style: italic; font-weight: 400; color: var(--red-2);
}
.band-marble .author {
  margin-top: 48px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}

/* ============== PORTFOLIO ============== */
.portfolio {
  background: var(--off); padding: 160px 0;
  position: relative; overflow: hidden;
}
.portfolio::before {
  content: "Selected"; position: absolute;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 28vw; line-height: 0.85; letter-spacing: -0.05em;
  color: rgba(0,0,0,0.025);
  top: -6vw; right: -3vw;
  pointer-events: none; user-select: none;
}
.port-head {
  display: flex; justify-content: space-between; align-items: end;
  max-width: 1480px; margin: 0 auto 80px; padding: 0 48px;
  position: relative; z-index: 1;
}
.port-head h2 {
  font-size: clamp(3rem, 7vw, 6.5rem); line-height: 0.92;
  margin-top: 28px;
}
.port-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 24px; padding: 0 48px; max-width: 1480px; margin: 0 auto;
  position: relative; z-index: 1;
}
.port-item {
  position: relative; overflow: hidden; aspect-ratio: 4/5;
  background: var(--ink); cursor: none;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.port-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}
.port-item .pi-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05); transition: transform 1.4s var(--ease), filter 1s var(--ease);
  filter: grayscale(0.25) contrast(1.05) brightness(0.92);
}
.port-item:hover .pi-img { transform: scale(1.12); filter: grayscale(0) contrast(1.08) brightness(1); }
.port-item .pi-info {
  position: absolute; left: 28px; bottom: 28px; right: 28px;
  z-index: 2; color: var(--white);
  transition: transform .6s var(--ease);
}
.port-item:hover .pi-info { transform: translateY(-8px); }
.port-item .pi-num {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em;
  color: var(--red-2); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.port-item .pi-num::before {
  content: ""; width: 18px; height: 1px; background: var(--red-2);
}
.port-item .pi-title {
  font-family: var(--serif); font-weight: 400; font-size: 36px;
  letter-spacing: -0.02em; line-height: 1.05;
}
.port-item .pi-mat {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 8px;
}
.port-item .pi-arr {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--white);
  margin-top: 18px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.port-item:hover .pi-arr { opacity: 1; transform: translateY(0); }

.port-item .pi-tag {
  position: absolute; top: 22px; left: 22px; z-index: 2;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--white);
  padding: 6px 12px;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
}

/* Frame corner accents */
.port-item::before {
  content: ""; position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; z-index: 2; pointer-events: none;
  border-top: 1px solid rgba(255,255,255,0.4);
  border-right: 1px solid rgba(255,255,255,0.4);
  opacity: 0; transition: opacity .5s var(--ease);
}
.port-item:hover::before { opacity: 1; }

.port-item::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%),
    linear-gradient(0deg, transparent 92%, rgba(0,0,0,0.4) 100%);
  transition: opacity .5s var(--ease);
}
.port-item.tall { grid-column: span 4; aspect-ratio: 3/4; }
.port-item.wide { grid-column: span 8; aspect-ratio: 16/10; }
.port-item.sq   { grid-column: span 4; aspect-ratio: 1/1; }
.port-item.med  { grid-column: span 6; aspect-ratio: 4/3; }
@media (max-width: 1024px) {
  .port-item.tall, .port-item.wide, .port-item.sq, .port-item.med { grid-column: span 12; }
}

/* ============== WHY (Pillars) ============== */
.why {
  padding: 160px 48px; background: var(--off);
  position: relative; overflow: hidden;
}
.why::before {
  content: "Ideal"; position: absolute;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 38vw; line-height: 0.85; letter-spacing: -0.05em;
  color: rgba(0,0,0,0.025);
  bottom: -8vw; right: -4vw;
  pointer-events: none; user-select: none;
}
.why-head { max-width: 1480px; margin: 0 auto 100px; position: relative; z-index: 1; }
.why-head h2 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  margin-top: 28px; line-height: 0.92;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1480px; margin: 0 auto; position: relative; z-index: 1;
}
.pillar {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 44px 40px 0; min-height: 540px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), background .6s var(--ease), color .6s var(--ease), border-color .6s var(--ease);
  position: relative; overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.pillar:hover {
  background: var(--ink); color: var(--white); border-color: var(--ink);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}
.pillar .top {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.pillar .name {
  font-family: var(--serif); font-weight: 400; font-size: 48px;
  letter-spacing: -0.02em; line-height: 1;
}
.pillar .num {
  font-family: var(--serif); font-weight: 400; font-size: 110px;
  line-height: 0.85; color: var(--red); opacity: 0.85;
  transition: color .5s, transform .6s var(--ease);
}
.pillar:hover .num { color: var(--red-2); transform: translateX(4px); }
.pillar .desc {
  font-size: 15px; line-height: 1.7; color: var(--vein);
  transition: color .5s; max-width: 90%;
  margin-top: 24px;
}
.pillar:hover .desc { color: rgba(255,255,255,0.72); }

/* Material specimen — replaces flat swatch with real stone band */
.pillar .swatch {
  width: calc(100% + 80px); margin: 32px -40px 0;
  height: 180px;
  background-size: cover; background-position: center;
  position: relative;
  filter: grayscale(0.25) contrast(1.05) brightness(0.95);
  transition: filter .8s var(--ease), transform .9s var(--ease);
}
.pillar:hover .swatch {
  filter: grayscale(0) contrast(1.1) brightness(1);
  transform: scale(1.02);
}
.pillar .swatch::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.pillar .swatch-tag {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--white);
  padding: 5px 10px; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
}

.pillar:nth-child(1) .swatch {
  background-image: url('https://images.unsplash.com/photo-1650804068570-7fb2e3dbf888?w=900&q=85');
}
.pillar:nth-child(2) .swatch {
  background-image: url('https://images.unsplash.com/photo-1777014547456-7d94a04382ee?w=900&q=85');
}
.pillar:nth-child(3) .swatch {
  background-image: url('https://images.unsplash.com/photo-1603649276613-09fbb215fd7f?w=900&q=85');
}

/* Corner red bar accent */
.pillar::before {
  content: ""; position: absolute; left: 0; top: 0;
  width: 3px; height: 0; background: var(--red);
  transition: height .6s var(--ease-sharp);
  z-index: 1;
}
.pillar:hover::before { height: 80px; }

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

/* ============== TESTIMONIALS ============== */
.testimonials {
  background-color: #0a0a0a;
  color: var(--white);
  padding: 160px 48px; overflow: hidden; position: relative;
}
.testimonials::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('marble-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 75%;
  filter: brightness(1) contrast(1.05);
  z-index: 0;
  pointer-events: none;
}
.testimonials > * { position: relative; z-index: 1; }
.test-head {
  text-align: center; max-width: 800px; margin: 0 auto 100px;
}
.test-head .eyebrow { justify-content: center; }
.test-head h2 {
  font-size: clamp(3rem, 6vw, 5.5rem); margin-top: 28px; line-height: 1;
}
.test-track {
  display: flex; gap: 32px; padding: 0 48px;
  max-width: 1480px; margin: 0 auto;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.test-track::-webkit-scrollbar { display: none; }
.test-card {
  flex: 0 0 460px; scroll-snap-align: center;
  padding: 48px 40px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10,10,10,0.55);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 380px;
  transition: all .5s var(--ease);
}
.test-card:hover { background: rgba(227,6,19,0.05); border-color: var(--red); }
.test-card .quote-mark {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: 140px; line-height: 0.5; color: var(--red);
  margin-bottom: 12px;
}
.test-card .stars {
  display: flex; gap: 4px; color: var(--red);
  margin-bottom: 24px; font-size: 14px;
}
.test-card .text {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: 26px; line-height: 1.35; flex: 1;
  letter-spacing: -0.005em;
}
.test-card .meta {
  display: flex; align-items: center; gap: 16px; margin-top: 28px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
}
.test-card .av {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
}
.test-card .name { font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; color: var(--white); }
.test-card .loc { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }
@media (max-width: 768px) {
  .test-card { flex: 0 0 85%; }
}

/* ============== CONTRACTORS ============== */
.contractors {
  background: var(--white); padding: 160px 48px;
  position: relative; overflow: hidden;
}
.ctr-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1480px; margin: 0 auto;
}
.ctr-grid h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-top: 28px; line-height: 0.95;
}
.ctr-grid p {
  margin: 28px 0 36px; color: var(--vein); font-size: 17px; line-height: 1.6;
  max-width: 480px;
}
.ctr-feats { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.ctr-feat {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; border-top: 1px solid rgba(0,0,0,0.08);
}
.ctr-feat:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.ctr-feat .chk {
  font-family: var(--serif); font-weight: 400; font-size: 24px;
  color: var(--red); width: 36px; flex-shrink: 0;
}
.ctr-feat .txt { font-size: 16px; line-height: 1.5; color: var(--ink); }
.ctr-img {
  position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--ink);
}
.ctr-img .img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.05); transition: transform 1.5s var(--ease);
}
.ctr-img:hover .img { transform: scale(1); }
.ctr-img .badge {
  position: absolute; top: 24px; right: 24px;
  background: var(--red); color: var(--white);
  padding: 14px 20px; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
}
.ctr-img .corner {
  position: absolute; bottom: 24px; left: 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--white);
  display: flex; align-items: center; gap: 12px;
}
.ctr-img .corner .dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; }

/* ============== FAQ ============== */
.faq {
  padding: 160px 48px; background: var(--off);
  position: relative; overflow: hidden;
}
.faq::before {
  content: "FAQ."; position: absolute;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 38vw; line-height: 0.85; letter-spacing: -0.05em;
  color: rgba(0,0,0,0.025);
  bottom: -8vw; left: -3vw;
  pointer-events: none; user-select: none;
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.35fr; gap: 96px;
  max-width: 1480px; margin: 0 auto;
  position: relative; z-index: 1; align-items: start;
}
.faq-side {
  position: sticky; top: 120px;
}
.faq-side h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95; letter-spacing: -0.03em;
}
.faq-side p {
  font-size: 17px; line-height: 1.6; color: var(--vein);
  margin: 32px 0 36px; max-width: 460px;
}

/* Showroom card on left side */
.faq-card {
  margin-top: 56px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.faq-card .fac-img {
  height: 220px; background-size: cover; background-position: center;
  filter: grayscale(0.15) contrast(1.05);
  transition: filter .8s var(--ease), transform 1.2s var(--ease);
}
.faq-card:hover .fac-img { filter: grayscale(0) contrast(1.08); transform: scale(1.03); }
.faq-card .fac-content {
  padding: 32px 32px 28px;
}
.faq-card .fac-eye {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.faq-card .fac-eye::before {
  content: ""; width: 22px; height: 1px; background: var(--red);
}
.faq-card .fac-place {
  font-family: var(--serif); font-weight: 400;
  font-size: 28px; letter-spacing: -0.02em; line-height: 1.15;
  color: var(--ink);
}
.faq-card .fac-hours {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 22px; border-top: 1px solid rgba(0,0,0,0.08);
}
.faq-card .fac-hours > div {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.faq-card .fac-hours span {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--vein);
}
.faq-card .fac-hours em {
  font-family: var(--serif); font-style: italic; font-size: 17px;
  color: var(--ink); letter-spacing: -0.005em;
}
.faq-card .fac-foot {
  margin-top: 18px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--vein);
}

/* FAQ list */
.faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.10);
  transition: background .4s var(--ease);
  position: relative;
}
.faq-item::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--red);
  transform: scaleY(0); transform-origin: top;
  transition: transform .5s var(--ease-sharp);
}
.faq-item.open::before { transform: scaleY(1); }
.faq-item:hover { background: rgba(0,0,0,0.015); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 28px 28px 32px;
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; letter-spacing: -0.01em; color: var(--ink);
  cursor: pointer; transition: color .3s var(--ease);
  line-height: 1.25;
}
.faq-item:hover .faq-q { color: var(--red); }
.faq-q .ic {
  font-family: var(--sans); font-size: 24px; font-weight: 300;
  color: var(--red); flex-shrink: 0; margin-left: 24px;
  transition: transform .5s var(--ease);
  display: inline-block; line-height: 1;
}
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .6s var(--ease);
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p {
  padding: 0 28px 28px 32px; max-width: 640px;
  font-size: 15px; line-height: 1.7; color: var(--vein);
}
@media (max-width: 1024px) {
  .faq-grid { grid-template-columns: 1fr; gap: 56px; }
  .faq-side { position: static; }
}
@media (max-width: 1024px) { .ctr-grid { grid-template-columns: 1fr; } }

/* ============== FAQ ============== */
.faq {
  padding: 160px 48px; background: var(--off);
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
  max-width: 1480px; margin: 0 auto;
}
.faq-grid h2 { font-size: clamp(3rem, 5vw, 4.5rem); line-height: 0.95; margin-top: 28px; }
.faq-side p { margin: 28px 0; color: var(--vein); font-size: 17px; line-height: 1.5; max-width: 360px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid rgba(0,0,0,0.12);
  padding: 28px 0;
  cursor: none;
}
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.12); }
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px;
  font-family: var(--serif); font-weight: 400; font-size: 30px;
  letter-spacing: -0.01em;
  transition: color .4s;
}
.faq-item:hover .faq-q { color: var(--red); }
.faq-q .ic {
  font-family: var(--mono); font-size: 22px; line-height: 1;
  flex-shrink: 0; transition: transform .4s var(--ease);
}
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .6s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
  padding-top: 18px; font-size: 16px; line-height: 1.65; color: var(--vein);
}
@media (max-width: 1024px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============== CTA BANNER ============== */
.cta-banner {
  background: var(--red); color: var(--white);
  padding: 140px 48px; position: relative; overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 30% 30%, rgba(255,255,255,0.1), transparent 60%),
    radial-gradient(600px 300px at 70% 70%, rgba(0,0,0,0.15), transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 {
  font-size: clamp(3rem, 8vw, 8rem); line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 1300px; margin: 28px auto 0;
}
.cta-banner h2 em { font-style: italic; font-weight: 400; color: var(--ink); }
.cta-banner p {
  margin: 36px auto 0; max-width: 600px;
  font-size: 17px; line-height: 1.5; opacity: 0.85;
}
.cta-banner .acts {
  margin-top: 50px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.cta-banner .btn-white { background: var(--white); color: var(--ink); }
.cta-banner .btn-white::before { background: var(--ink); transform: translateY(101%); }
.cta-banner .btn-white:hover { color: var(--white); }
.cta-banner .btn-white:hover::before { transform: translateY(0); }
.cta-banner .btn-outline-w { border: 1px solid rgba(255,255,255,0.6); color: var(--white); background: transparent; }
.cta-banner .btn-outline-w::before { background: var(--white); transform: translateY(101%); }
.cta-banner .btn-outline-w:hover { color: var(--red); }
.cta-banner .btn-outline-w:hover::before { transform: translateY(0); }
/* Ensure text content sits on top of the ::before slide-up overlay */
.cta-banner .btn > * { position: relative; z-index: 1; }

.cta-marquee {
  position: absolute; left: 0; right: 0; padding: 14px 0;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 24px; color: rgba(255,255,255,0.4);
  white-space: nowrap; overflow: hidden;
}
.cta-marquee.top { top: 0; }
.cta-marquee.bot { bottom: 0; }
.cta-marquee-track {
  display: inline-flex; gap: 60px;
  animation: tickerMove 40s linear infinite;
}
.cta-marquee.bot .cta-marquee-track { animation-direction: reverse; }
.cta-marquee-track span::after {
  content: "·"; margin-left: 60px; color: rgba(255,255,255,0.6);
}

/* ============== CONTACT ============== */
.contact {
  background-color: #0a0a0a;
  color: var(--white);
  padding: 160px 48px;
  position: relative; overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('marble-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 50%;
  filter: brightness(1) contrast(1.05);
  z-index: 0;
  pointer-events: none;
}
.contact > * { position: relative; z-index: 1; }
.cont-head {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
  max-width: 1480px; margin: 0 auto 80px; align-items: end;
}
.cont-head h2 { font-size: clamp(3rem, 7vw, 6.5rem); line-height: 0.92; margin-top: 28px; }
.cont-head p { color: rgba(255,255,255,0.55); font-size: 17px; line-height: 1.6; max-width: 480px; }
.cont-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
  max-width: 1480px; margin: 0 auto;
}
.cont-info { display: flex; flex-direction: column; gap: 0; }
.cont-info-item {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.1); align-items: start;
}
.cont-info-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.cont-info-item .icn {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  color: var(--red);
}
.cont-info-item .lbl {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 6px;
}
.cont-info-item .val { font-size: 16px; line-height: 1.5; color: var(--white); }
.cont-info-item a { color: var(--white); transition: color .3s; }
.cont-info-item a:hover { color: var(--red); }
.form {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  padding: 48px;
}
.form h3 {
  font-family: var(--serif); font-weight: 400; font-size: 44px;
  letter-spacing: -0.02em;
}
.form .sub { color: rgba(255,255,255,0.5); font-size: 14px; margin: 12px 0 36px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form .fg { display: flex; flex-direction: column; margin-bottom: 24px; }
.form .fg.fw { grid-column: span 2; }
.form label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 10px;
}
.form input, .form select, .form textarea {
  background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 12px 0; color: var(--white); font-family: var(--sans); font-size: 16px;
  outline: none; transition: border-color .3s;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--red); }
.form textarea { min-height: 100px; resize: vertical; }
.form select option { background: var(--ink); color: var(--white); }
.form .send {
  width: 100%; padding: 20px; background: var(--red); color: var(--white);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 20px; transition: background .4s, gap .4s;
}
.form .send:hover { background: var(--ink); gap: 18px; }
.form .send.sent { background: #1a8c3a; }
@media (max-width: 1024px) {
  .cont-head, .cont-grid { grid-template-columns: 1fr; gap: 40px; }
  .form { padding: 28px; }
  .form .row { grid-template-columns: 1fr; }
  .form .fg.fw { grid-column: span 1; }
}

/* ============== FOOTER ============== */
footer {
  background: var(--ink); color: var(--white); padding: 100px 48px 40px;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.foot-mark {
  position: absolute; left: 0; right: 0; bottom: -40px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(8rem, 22vw, 24rem); line-height: 0.85;
  letter-spacing: -0.03em; text-align: center;
  color: rgba(255,255,255,0.04); pointer-events: none;
  white-space: nowrap;
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1480px; margin: 0 auto;
  position: relative; z-index: 1;
}
.foot-brand .lg {
  font-family: var(--serif); font-weight: 400; font-size: 48px;
  letter-spacing: -0.02em; line-height: 1;
}
.foot-brand .lg em { font-style: italic; font-weight: 400; color: var(--red); }
.foot-brand .lgsub {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.4em;
  color: rgba(255,255,255,0.4); margin-top: 10px;
}
.foot-brand p {
  margin-top: 24px; max-width: 360px; color: rgba(255,255,255,0.5);
  font-size: 14px; line-height: 1.65;
}
.foot-soc { display: flex; gap: 12px; margin-top: 24px; }
.foot-soc a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  transition: all .4s var(--ease);
}
.foot-soc a:hover { background: var(--red); border-color: var(--red); }
.foot-col h4 {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--red); font-weight: 500;
  margin-bottom: 24px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.foot-col a {
  font-size: 14px; color: rgba(255,255,255,0.7); transition: color .3s;
}
.foot-col a:hover { color: var(--red); }
.foot-bot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 80px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  max-width: 1480px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.foot-bot a { transition: color .3s; }
.foot-bot a:hover { color: var(--red); }
@media (max-width: 1024px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-bot { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 600px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ============== REVEAL ============== */
.rv, .rvl, .rvr { transition: opacity 1s var(--ease), transform 1s var(--ease); }
.rv  { opacity: 0; transform: translateY(40px); }
.rvl { opacity: 0; transform: translateX(-40px); }
.rvr { opacity: 0; transform: translateX(40px); }
.rv.on, .rvl.on, .rvr.on { opacity: 1; transform: none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s} .d5{transition-delay:.5s}

/* split letters */
.sp-line { overflow: hidden; display: block; }
.sp-line > span { display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease); }
.sp-line.on > span { transform: translateY(0); }

/* progress bar */
#prog {
  position: fixed; top: 0; left: 0; height: 2px; background: var(--red);
  width: 0; z-index: 300; transition: width .1s linear;
}


/* ============== GOOGLE REVIEW BADGE & CARDS ============== */
.test-head { position: relative; z-index: 1; }
.g-badge {
  display: inline-flex; align-items: center; gap: 18px;
  margin: 36px auto 0;
  padding: 16px 24px 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  text-decoration: none;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
  position: relative; max-width: 480px;
}
.g-badge:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}
.g-badge-logo {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border-radius: 50%; flex-shrink: 0;
}
.g-badge-body { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.g-badge-top {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.g-badge-mid { display: flex; align-items: center; gap: 10px; }
.g-rate {
  font-family: var(--serif); font-size: 28px; line-height: 1;
  color: var(--white); font-weight: 400;
}
.g-stars {
  position: relative; display: inline-block;
  width: 84px; height: 14px; background: #FBBC04;
  -webkit-mask-image: radial-gradient(circle, #000 100%, transparent 100%);
}
.g-stars::before {
  content: "\2605\2605\2605\2605\2605";
  position: absolute; inset: 0;
  font-size: 14px; line-height: 14px; letter-spacing: 1px;
  color: #FBBC04;
  font-family: var(--sans);
}
.g-count {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
}
.g-badge-bot {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.g-badge-arr {
  font-family: var(--sans); font-size: 18px; color: rgba(255,255,255,0.5);
  transition: transform .4s var(--ease);
}
.g-badge:hover .g-badge-arr { transform: translate(2px,-2px); color: var(--white); }

/* Test card adjustments to reflect Google branding */
.test-card { text-decoration: none; color: inherit; }
.test-card .g-mark {
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.test-card .g-mark::after {
  content: "Posted on Google";
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}

.test-card.test-cta {
  background: linear-gradient(135deg, rgba(227,6,19,0.08), rgba(10,10,10,0.55));
  border-color: rgba(255,255,255,0.18);
  cursor: none;
}
.test-card.test-cta:hover {
  background: linear-gradient(135deg, rgba(227,6,19,0.15), rgba(10,10,10,0.55));
  border-color: var(--red);
}
.test-card.test-cta .cta-rate {
  display: flex; align-items: baseline; gap: 16px; margin-bottom: 18px;
}
.test-card.test-cta .cta-rate .big {
  font-family: var(--serif); font-size: 96px; line-height: 0.85;
  color: var(--white); font-weight: 400; letter-spacing: -0.04em;
}
.test-card.test-cta .cta-rate .small {
  color: #FBBC04; font-size: 18px; letter-spacing: 0.05em;
}
.test-card.test-cta .text {
  font-family: var(--serif); font-style: italic; font-size: 19px;
  line-height: 1.4; color: rgba(255,255,255,0.85);
}
.test-card.test-cta .cta-link {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--white);
}

/* visually hidden — for SEO H1 */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (max-width: 600px) {
  .g-badge { gap: 12px; padding: 14px 18px 14px 14px; max-width: 100%; }
  .g-rate { font-size: 22px; }
}

/* ============== A11Y / PERFORMANCE ============== */

/* Skip-to-content link */
.skip {
  position: fixed; top: -40px; left: 8px; z-index: 1000;
  background: var(--ink); color: var(--white);
  padding: 10px 16px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip:focus { top: 8px; outline: 2px solid var(--red); }

/* Mobile: restore native cursor + simpler interactions */
@media (hover: none) and (pointer: coarse) {
  body, a, button, .test-card, .port-item, .svc, .pillar, .hero-card {
    cursor: auto !important;
  }
  #cur, #cur2 { display: none !important; }
}

/* Honor user's motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
    scroll-behavior: auto !important;
  }
  .hero-card { animation: none !important; }
  .ticker-track, .cta-marquee-track { animation-duration: 60s !important; }
  /* Disable hover scaling tricks */
  .pi-img, .svc-img, .aac-img, .swatch, .fac-img { transition: none !important; }
}

/* Lazy-load hint for browsers (background-image fallback) */
.pi-img, .svc-img, .aac-img, .fac-img, .ctr-img .img, .band-marble .img {
  content-visibility: auto;
  contain-intrinsic-size: 600px 400px;
}

/* Print stylesheet — clean PDF */

/* Print stylesheet — clean PDF */
@media print {
  #loader, .grain, #cur, #cur2, #prog, .ticker, .band-marble,
  .cta-banner, .mm, .skip { display: none !important; }
  body { background: #fff; color: #000; cursor: auto; }
  .hero-bg, .services::before, .testimonials::before { display: none; }
  section { page-break-inside: avoid; padding: 24px; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10px; }
}
