/* ===========================================================
   DunRite Construction Group — design system
   Rugged-premium concrete & shell contractor
   =========================================================== */

:root {
  /* concrete / ink scale (warm) */
  --ink:        #131313;
  --char:       #1b1c1d;
  --steel:      #26282a;
  --steel-2:    #34373a;
  --concrete:   #7e8284;
  --concrete-2: #a9a7a0;
  --haze:       #e4e1da;
  --paper:      #f4f1ea;
  --paper-2:    #eae6dd;
  --white:      #ffffff;

  /* accent — safety amber (tweakable) */
  --amber:      #f4a01e;
  --amber-deep: #d97a06;
  --accent:     var(--amber);
  --accent-deep:var(--amber-deep);
  --on-accent:  #1a1205;

  --line:       rgba(255,255,255,.12);
  --line-dark:  rgba(20,20,20,.14);

  /* type */
  --display: "Archivo Expanded", "Archivo", system-ui, sans-serif;
  --cond:    "Saira Condensed", "Archivo", sans-serif;
  --mono:    "Spline Sans Mono", ui-monospace, monospace;
  --body:    "Archivo", system-ui, sans-serif;

  --radius: 2px;
  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
}

/* tweak: soft corners */
[data-corners="soft"] { --radius: 12px; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--on-accent); }

/* ---------- texture utilities ---------- */
.blueprint {
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 38px 38px;
}
[data-texture="off"] .blueprint { background-image: none; }
.grain::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
[data-texture="off"] .grain::after { display: none; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }

/* ---------- type helpers ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--accent); }

h1,h2,h3 { font-family: var(--display); font-weight: 800; line-height: .98; letter-spacing: -.01em; margin: 0; }
[data-display="oswald"] h1, [data-display="oswald"] h2, [data-display="oswald"] h3,
[data-display="oswald"] .ticker-num { font-family: "Oswald", sans-serif; letter-spacing: 0; font-weight: 700; }
[data-display="saira"] h1, [data-display="saira"] h2, [data-display="saira"] h3 { font-family: "Saira Condensed", sans-serif; font-weight: 800; }

.display-xl { font-size: clamp(44px, 7.4vw, 116px); text-transform: uppercase; }
.display-lg { font-size: clamp(34px, 5vw, 76px); text-transform: uppercase; }
.display-md { font-size: clamp(26px, 3.2vw, 46px); text-transform: uppercase; }

.lead { font-size: clamp(17px, 1.45vw, 21px); line-height: 1.55; color: var(--steel-2); font-weight: 400; max-width: 60ch; }
.muted { color: var(--concrete); }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--mono);
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-accent { background: var(--accent); color: var(--on-accent); }
.btn-accent:hover { background: var(--white); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--accent); color: var(--on-accent); }

/* ---------- utility top bar ---------- */
.utility {
  background: var(--ink);
  color: var(--concrete-2);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .03em;
  border-bottom: 1px solid var(--line);
}
.utility .wrap { display: flex; align-items: center; gap: 26px; height: 42px; }
.utility a { color: var(--concrete-2); transition: color .2s; display: inline-flex; align-items: center; gap: 7px; }
.utility a:hover { color: var(--accent); }
.utility .sep { flex: 1; }
.utility .hours { color: var(--concrete); }
.utility .crosslink { color: var(--accent); }
.utility svg { width: 14px; height: 14px; }
@media (max-width: 900px){ .utility .u-hide { display: none; } }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(19,19,19,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header .wrap { display: flex; align-items: center; gap: 28px; height: 78px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; margin-left: 14px; }
.nav a {
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: #d8d5cf;
  padding: 6px 0; position: relative;
}
.nav a::after { content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0; background:var(--accent); transition:width .22s ease; }
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }
.header .spacer { flex: 1; }
.header .cta-wrap { display: flex; align-items: center; gap: 18px; }
.header .phone { font-family: var(--cond); font-size: 22px; font-weight: 700; color: #fff; letter-spacing: .01em; }
.burger { display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius); width: 46px; height: 46px; cursor: pointer; align-items: center; justify-content: center; }
.burger span { display:block; width: 20px; height: 2px; background: #fff; position: relative; }
.burger span::before, .burger span::after { content:""; position:absolute; left:0; width:20px; height:2px; background:#fff; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }

@media (max-width: 1040px){
  .nav, .header .phone { display: none; }
  .burger { display: inline-flex; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 80;
  background: var(--ink);
  display: flex; flex-direction: column;
  padding: 28px var(--gutter);
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.drawer.open { transform: translateY(0); }
.drawer .d-top { display:flex; align-items:center; justify-content: space-between; }
.drawer .d-top img { height: 38px; }
.drawer .close { background:none; border:1px solid var(--line); color:#fff; width:46px; height:46px; border-radius:var(--radius); font-size:22px; cursor:pointer; }
.drawer nav { display:flex; flex-direction: column; gap: 4px; margin-top: 40px; }
.drawer nav a { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 30px; color:#fff; padding: 12px 0; border-bottom: 1px solid var(--line); }
.drawer nav a:hover { color: var(--accent); }
.drawer .d-cta { margin-top: auto; display:flex; flex-direction:column; gap:14px; }

/* ---------- hero ---------- */
.hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25) contrast(1.05) brightness(.62); }
.hero-media::after {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(15,15,15,.92) 0%, rgba(15,15,15,.7) 42%, rgba(15,15,15,.25) 100%),
    linear-gradient(0deg, rgba(15,15,15,.9) 0%, rgba(15,15,15,0) 38%);
}
[data-hero="dark"] .hero-media img { opacity: .14; }
.hero-inner { position: relative; padding: clamp(64px, 11vw, 150px) 0 0; }
.hero h1 { max-width: 17ch; }
.hero h1 .amber { color: var(--accent); }
.hero .lead { color: #cfccc5; margin-top: 26px; }
.hero .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero .corner-spec {
  position: absolute; top: 28px; right: 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--concrete); text-align: right; line-height: 1.9;
}
.hero .corner-spec b { color: var(--accent); font-weight: 600; }
@media (max-width: 760px){ .hero .corner-spec { display: none; } }

/* hero ticker */
.ticker {
  position: relative;
  margin-top: clamp(48px, 8vw, 96px);
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.ticker .cell { padding: 26px 0 30px; border-right: 1px solid var(--line); }
.ticker .cell:last-child { border-right: none; }
.ticker-num { font-family: var(--cond); font-size: clamp(40px, 5vw, 64px); font-weight: 800; line-height: 1; color: #fff; letter-spacing: .01em; }
.ticker-num .u { color: var(--accent); }
.ticker .lab { font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--concrete); margin-top: 8px; }
@media (max-width: 760px){
  .ticker { grid-template-columns: repeat(2,1fr); }
  .ticker .cell:nth-child(2){ border-right:none; }
  .ticker .cell:nth-child(1),.ticker .cell:nth-child(2){ border-bottom:1px solid var(--line); }
}

/* ---------- section frame ---------- */
.sec { padding: clamp(72px, 9vw, 132px) 0; }
.sec-head { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; margin-bottom: clamp(38px, 5vw, 64px); }
.sec-head .h-left { max-width: 24ch; }
.sec-head h2 { margin-top: 18px; }
.sec-head .h-right { max-width: 42ch; }
@media (max-width: 820px){ .sec-head { grid-template-columns: 1fr; } .sec-head .h-right { display:none; } }

/* ---------- about ---------- */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.about-figure { position: relative; }
.about-figure img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; border-radius: var(--radius); filter: grayscale(.1) contrast(1.03); }
.about-figure .badge {
  position: absolute; left: -18px; bottom: 34px;
  background: var(--accent); color: var(--on-accent);
  padding: 20px 24px; border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
}
.about-figure .badge .n { font-family: var(--cond); font-size: 54px; font-weight: 800; line-height: .9; }
.about-figure .badge .t { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
.mv { display: grid; gap: 22px; margin-top: 30px; }
.mv .card { border-left: 3px solid var(--accent); padding: 4px 0 4px 20px; }
.mv .card h4 { font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-deep); margin: 0 0 8px; }
.mv .card p { margin: 0; color: var(--steel-2); line-height: 1.55; font-size: 16px; }
@media (max-width: 820px){ .about-grid { grid-template-columns: 1fr; } .about-figure { order: -1; } }

/* ---------- services ---------- */
.services { background: var(--char); color: #fff; position: relative; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.svc {
  background: var(--char); padding: 30px; position: relative; min-height: 420px;
  display: flex; flex-direction: column; overflow: hidden;
  transition: background .25s ease;
}
.svc:hover { background: #202224; }
.svc .num { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; color: var(--concrete); }
.svc .svc-img { position: absolute; inset: 0; }
.svc .svc-img img { width:100%; height:100%; object-fit: cover; opacity: .16; filter: grayscale(.4); transition: opacity .3s ease, transform .5s ease; }
.svc:hover .svc-img img { opacity: .3; transform: scale(1.05); }
.svc .svc-body { position: relative; margin-top: auto; }
.svc h3 { font-size: clamp(24px, 2vw, 30px); text-transform: uppercase; }
.svc .who { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin: 14px 0 12px; }
.svc p { color: #c9c6bf; font-size: 15px; line-height: 1.5; margin: 0 0 20px; }
.svc .more { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #fff; display: inline-flex; gap: 8px; align-items: center; }
.svc .more .arr { color: var(--accent); transition: transform .2s; }
.svc:hover .more .arr { transform: translateX(5px); }
@media (max-width: 980px){ .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .svc-grid { grid-template-columns: 1fr; } .svc { min-height: 320px; } }

/* ---------- process ---------- */
.process { background: var(--paper-2); }
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.proc { padding-top: 26px; border-top: 2px solid var(--ink); }
.proc .pn { font-family: var(--cond); font-size: 56px; font-weight: 800; line-height: .8; color: var(--accent-deep); }
.proc h4 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 19px; margin: 16px 0 10px; letter-spacing: 0; }
.proc p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--steel-2); }
@media (max-width: 880px){ .proc-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; } }
@media (max-width: 480px){ .proc-grid { grid-template-columns: 1fr; } }

/* ---------- portfolio ---------- */
.portfolio { background: var(--ink); color: #fff; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.filters button {
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 16px; border-radius: var(--radius); border: 1px solid var(--line);
  background: transparent; color: var(--concrete-2); cursor: pointer; transition: all .2s;
}
.filters button:hover { border-color: var(--concrete); color: #fff; }
.filters button.active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.grid-port { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: 12px; }
.tile { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: var(--steel); }
.tile img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.3) contrast(1.04); transition: transform .55s ease, filter .3s ease; }
.tile:hover img { transform: scale(1.07); filter: grayscale(0); }
.tile .meta { position: absolute; inset: auto 0 0 0; padding: 18px; background: linear-gradient(0deg, rgba(10,10,10,.92), transparent); transform: translateY(8px); opacity: 0; transition: all .3s ease; }
.tile:hover .meta { transform: translateY(0); opacity: 1; }
.tile .meta .t { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 17px; }
.tile .meta .s { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }
.tile .tag { position: absolute; top: 12px; left: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; background: rgba(10,10,10,.7); padding: 5px 9px; border-radius: var(--radius); color: var(--concrete-2); }
.tile.big { grid-column: span 3; grid-row: span 2; }
.tile.tall { grid-row: span 2; grid-column: span 2; }
.tile.wide { grid-column: span 2; }
.tile.std { grid-column: span 2; }
.tile.hide { display: none; }
@media (max-width: 900px){
  .grid-port { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .tile.big, .tile.tall, .tile.wide, .tile.std { grid-column: span 1; grid-row: span 1; }
  .tile.big { grid-column: span 2; }
}

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(8,8,8,.94); display: none; align-items: center; justify-content: center; padding: 5vh 5vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 84vh; object-fit: contain; border-radius: var(--radius); }
.lightbox .lb-cap { position: absolute; bottom: 4vh; left: 0; right: 0; text-align: center; font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--concrete-2); }
.lightbox .lb-close { position: absolute; top: 4vh; right: 5vw; background: none; border: 1px solid var(--line); color: #fff; width: 50px; height: 50px; border-radius: var(--radius); font-size: 24px; cursor: pointer; }

/* ---------- testimonials ---------- */
.testi { background: var(--paper); position: relative; overflow: hidden; }
.testi .quote-mark { position: absolute; top: -40px; right: 4vw; font-family: var(--display); font-weight: 900; font-size: clamp(200px, 30vw, 460px); color: rgba(0,0,0,.04); line-height: 1; pointer-events: none; }
.testi-stage { position: relative; min-height: 230px; }
.testi-item { position: absolute; inset: 0; opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; pointer-events: none; }
.testi-item.active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.testi .stars { color: var(--accent); letter-spacing: 3px; font-size: 18px; }
.testi blockquote { font-family: var(--display); font-weight: 700; text-transform: none; font-size: clamp(22px, 2.6vw, 38px); line-height: 1.22; letter-spacing: -.01em; margin: 20px 0 26px; max-width: 22ch; }
.testi .who { font-family: var(--mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--steel-2); }
.testi .who b { color: var(--ink); }
.testi-nav { display: flex; gap: 10px; margin-top: 34px; align-items: center; }
.testi-nav button { width: 50px; height: 50px; border-radius: var(--radius); border: 1.5px solid var(--line-dark); background: transparent; cursor: pointer; font-size: 18px; color: var(--ink); transition: all .2s; }
.testi-nav button:hover { background: var(--ink); color: #fff; }
.testi-dots { display: flex; gap: 8px; margin-left: 10px; }
.testi-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-dark); cursor: pointer; transition: all .2s; }
.testi-dots i.on { background: var(--accent); width: 26px; border-radius: 5px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); color: var(--on-accent); position: relative; overflow: hidden; }
.cta-band .wrap { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; padding: clamp(56px,7vw,92px) var(--gutter); }
.cta-band h2 { font-size: clamp(32px, 4.6vw, 68px); text-transform: uppercase; max-width: 16ch; }
.cta-band p { font-family: var(--mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin: 16px 0 0; opacity: .8; }
.cta-band .stamp { position: absolute; right: -30px; top: 50%; transform: translateY(-50%) rotate(-8deg); font-family: var(--display); font-weight: 900; font-size: clamp(120px, 18vw, 260px); color: rgba(26,18,5,.07); text-transform: uppercase; pointer-events: none; }
@media (max-width: 760px){ .cta-band .wrap { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--concrete-2); padding: clamp(60px,7vw,90px) 0 34px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .f-brand img { height: 42px; margin-bottom: 22px; }
.footer .f-brand p { font-size: 14.5px; line-height: 1.6; max-width: 38ch; color: var(--concrete); }
.footer h5 { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a, .footer .ci a, .footer .ci span { font-size: 14px; color: var(--concrete-2); transition: color .2s; }
.footer ul a:hover { color: var(--accent); }
.footer .ci { display: grid; gap: 14px; }
.footer .ci .row { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; line-height: 1.4; }
.footer .ci svg { width: 16px; height: 16px; color: var(--accent); flex: none; margin-top: 2px; }
.areas { display: flex; flex-wrap: wrap; gap: 7px; }
.areas span { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; padding: 5px 10px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--concrete-2); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 12px; letter-spacing: .05em; color: var(--concrete); flex-wrap: wrap; }
.foot-bottom .socials { display: flex; gap: 12px; }
.foot-bottom .socials a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.foot-bottom .socials a:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.foot-bottom .socials svg { width: 16px; height: 16px; }
@media (max-width: 900px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .foot-grid { grid-template-columns: 1fr; } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; transition:none; } }

/* straighten the Stone-Frame Shell photo so the block courses read level.
   The shot leans slightly down to the right; counter-rotate and scale up
   so the overflow:hidden frame stays filled (no corner gaps). */
.tile[data-title="Stone-Frame Shell"] img,
.svc-row img[src*="stone-frame-shell"] { transform: rotate(-1.2deg) scale(1.07); transform-origin: center; }
.tile[data-title="Stone-Frame Shell"]:hover img { transform: rotate(-1.2deg) scale(1.13); }
