/* Turetta Design — Brutalist studio system
   Surface: white/black · Accent: red #FF0000 (signature), blue #1500FF, yellow #FFE500
   Type: Helvetica/Arial display · Times editorial · Courier labels
   Hard offset shadows, zero radius, thick rules. */

:root {
  --paper: #FFFFFF;
  --ink: #000000;
  --red: #FF0000;
  --blue: #1500FF;
  --yellow: #FFE500;
  --grey: #F1F1F1;
  --line: 3px solid #000;
  --shadow: 8px 8px 0 #000;
  --shadow-sm: 5px 5px 0 #000;
  --maxw: 1180px;
  --sans: Helvetica, "Helvetica Neue", Arial, sans-serif;
  --serif: "Times New Roman", Times, Georgia, serif;
  --mono: "Courier New", Courier, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--ink); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Masthead ---------- */
.masthead {
  border-bottom: var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
}
.masthead .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}
.brand {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand .mark {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  background: var(--red);
  color: #fff;
  border: 3px solid #000;
  font-weight: 700;
  font-size: 18px;
  transform: rotate(-4deg);
}
.nav { display: flex; gap: 4px; flex-wrap: wrap; }
.nav a {
  text-decoration: none;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 8px 12px;
  border: 2px solid transparent;
}
.nav a:hover { border: 2px solid #000; }
.nav a.active { background: var(--ink); color: var(--paper); }
.nav-cta {
  background: var(--yellow);
  border: 2px solid #000 !important;
  box-shadow: 3px 3px 0 #000;
}

.menu-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 14px 26px;
  border: 3px solid #000;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .12s steps(2), box-shadow .12s steps(2);
}
.btn:hover { transform: translate(5px,5px); box-shadow: 0 0 0 #000; }
.btn-red { background: var(--red); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-yellow { background: var(--yellow); color: #000; }
.btn-lg { font-size: 19px; padding: 18px 34px; box-shadow: var(--shadow); }
@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .btn:hover { transform: none; box-shadow: var(--shadow-sm); }
}

/* ---------- Labels / kickers ---------- */
.kicker {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--ink);
  color: var(--paper);
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 18px;
}
.kicker.red { background: var(--red); }
.kicker.blue { background: var(--blue); }

/* ---------- Type scale ---------- */
h1, h2, h3 { letter-spacing: -0.03em; line-height: 0.98; margin: 0 0 .4em; }
.display {
  font-weight: 700;
  font-size: clamp(48px, 9vw, 116px);
  text-transform: uppercase;
}
h2.section-title { font-size: clamp(30px, 5vw, 58px); text-transform: uppercase; font-weight: 700; }
h3 { font-size: clamp(20px, 2.4vw, 27px); }
.lead { font-size: clamp(18px, 2.2vw, 23px); line-height: 1.5; max-width: 62ch; }
.serif { font-family: var(--serif); letter-spacing: 0; }

section { padding: 84px 0; border-bottom: var(--line); }
.section-head { max-width: 70ch; margin-bottom: 46px; }

/* ---------- Hero ---------- */
.hero { padding: 0; border-bottom: var(--line); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.35fr 1fr; }
.hero-left { padding: 70px 40px 70px 0; border-right: var(--line); }
.hero-right {
  background: var(--yellow);
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-left { padding-left: 24px; }
.hero .display span { color: var(--red); }
.hero .lead { margin: 26px 0 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* marquee signature */
.marquee {
  border-top: var(--line);
  border-bottom: var(--line);
  background: var(--red);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  padding: 12px 0;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  animation: scroll-x 26s linear infinite;
}
.marquee-track span { padding: 0 22px; }
.marquee-track .dot { color: var(--yellow); }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Bento grid (signature) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tile {
  border: var(--line);
  background: var(--paper);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform .14s steps(2), box-shadow .14s steps(2);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tile:hover { transform: translate(8px,8px); box-shadow: 0 0 0 #000; }
@media (prefers-reduced-motion: reduce) {
  .tile { transition: none; }
  .tile:hover { transform: none; box-shadow: var(--shadow); }
}
.tile.col-2 { grid-column: span 2; }
.tile.row-2 { grid-row: span 2; }
.tile.fill-red { background: var(--red); color: #fff; }
.tile.fill-blue { background: var(--blue); color: #fff; }
.tile.fill-yellow { background: var(--yellow); color: #000; }
.tile.fill-ink { background: var(--ink); color: #fff; }
.tile .tnum { font-family: var(--mono); font-size: 13px; opacity: .7; }
.tile h3 { margin: 10px 0; }
.tile p { margin: 0; font-size: 15px; line-height: 1.5; }
.tile .tbig { font-size: clamp(40px,7vw,86px); font-weight: 700; line-height: .9; letter-spacing: -0.04em; }

/* ---------- Generic grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card {
  border: var(--line);
  background: var(--paper);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-top: 0; }
.card .num { font-family: var(--mono); font-size: 14px; color: var(--red); font-weight: 700; }

/* Service list (editorial index) */
.svc-list { border-top: var(--line); }
.svc-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 30px 8px;
  border-bottom: var(--line);
}
.svc-item .idx { font-family: var(--mono); font-weight: 700; font-size: 20px; color: var(--red); }
.svc-item h3 { margin: 0 0 8px; }
.svc-item p { margin: 0; font-size: 15px; color: #222; max-width: 60ch; }
.svc-item .tag { font-family: var(--mono); font-size: 12px; text-transform: uppercase; align-self: center; }

/* Figures strip */
.figures { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: var(--line); background: #000; }
.figures .fig { background: var(--paper); padding: 30px 22px; border-right: var(--line); }
.figures .fig:last-child { border-right: none; }
.figures .fig .n { font-size: clamp(34px,5vw,54px); font-weight: 700; letter-spacing: -0.03em; }
.figures .fig .l { font-family: var(--mono); font-size: 13px; text-transform: uppercase; margin-top: 6px; }

/* ---------- Store ---------- */
.shop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product {
  border: var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.product .thumb {
  height: 200px;
  border-bottom: var(--line);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.product .thumb svg { width: 100%; height: 100%; }
.product .body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product .pname { font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.product .pdesc { font-size: 14px; color: #333; margin: 0; flex: 1; }
.product .prow { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product .price { font-family: var(--mono); font-weight: 700; font-size: 24px; }
.product .price small { font-size: 13px; font-weight: 400; }
.badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: #fff;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  padding: 4px 8px; letter-spacing: .05em;
}

/* ---------- Checkout ---------- */
.co-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 34px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--mono); font-size: 13px; text-transform: uppercase; margin-bottom: 6px; }
.field input, .field select {
  width: 100%;
  padding: 13px 14px;
  border: var(--line);
  font-family: var(--mono);
  font-size: 15px;
  background: var(--paper);
}
.field input:focus, .field select:focus { outline: 3px solid var(--blue); outline-offset: 2px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.summary { border: var(--line); box-shadow: var(--shadow); }
.summary .sh { background: var(--ink); color: #fff; padding: 16px 20px; font-family: var(--mono); text-transform: uppercase; font-size: 14px; }
.summary .sbody { padding: 20px; }
.line { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed #999; font-size: 15px; }
.line.total { border-bottom: none; border-top: var(--line); margin-top: 8px; padding-top: 14px; font-weight: 700; font-size: 20px; font-family: var(--mono); }
.pay-mark { display: flex; gap: 8px; margin: 10px 0 20px; }
.pay-mark span { font-family: var(--mono); font-size: 11px; border: 2px solid #000; padding: 4px 8px; }
.co-note { font-size: 13px; color: #444; margin-top: 14px; font-family: var(--mono); }

/* ---------- FAQ ---------- */
.faq details {
  border: var(--line);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  background: var(--paper);
}
.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 18px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); font-size: 24px; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { border-bottom: var(--line); background: var(--yellow); }
.faq .fbody { padding: 20px 24px; font-size: 16px; color: #222; }

/* ---------- Split blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split > div { padding: 60px 44px; }
.split .a { border-right: var(--line); }
.split .fill { background: var(--ink); color: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.mailrow {
  display: flex; align-items: center; gap: 14px;
  border: var(--line); padding: 18px 22px; margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.mailrow .tag { font-family: var(--mono); font-size: 12px; text-transform: uppercase; background: var(--ink); color: #fff; padding: 3px 8px; }
.mailrow a { font-family: var(--mono); font-weight: 700; text-decoration: none; font-size: 16px; }

/* ---------- Company legal block ---------- */
.legal-card {
  border: var(--line);
  background: var(--grey);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.legal-card h3 { margin-top: 0; }
.legal-card dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 22px; margin: 0; font-size: 15px; }
.legal-card dt { font-family: var(--mono); text-transform: uppercase; font-size: 12px; color: #555; }
.legal-card dd { margin: 0; font-weight: 700; }

/* ---------- Prose (legal pages / about) ---------- */
.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(24px,3vw,34px); margin-top: 44px; text-transform: uppercase; }
.prose h3 { margin-top: 30px; }
.prose p, .prose li { font-size: 16px; line-height: 1.65; color: #1a1a1a; }
.prose ul { padding-left: 20px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--paper); border-top: var(--line); }
.footer .wrap { padding: 56px 24px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 34px; }
.footer h4 { font-family: var(--mono); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--yellow); margin: 0 0 16px; }
.footer a { color: #fff; text-decoration: none; display: block; margin-bottom: 9px; font-size: 15px; opacity: .85; }
.footer a:hover { opacity: 1; text-decoration: underline; }
.footer .brand-lg { font-weight: 700; font-size: 26px; text-transform: uppercase; letter-spacing: -0.03em; margin-bottom: 12px; }
.footer .fine { font-size: 13px; opacity: .6; line-height: 1.6; }
.footer-bottom { border-top: 1px solid #444; margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--mono); font-size: 12px; opacity: .7; }

/* ---------- Utility ---------- */
.hidden { display: none; }
.center { text-align: center; }
.mt0 { margin-top: 0; }
.stack > * + * { margin-top: 18px; }
.pill { display:inline-block; font-family: var(--mono); font-size:12px; text-transform:uppercase; border:2px solid #000; padding:4px 10px; margin:0 6px 6px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .grid-2, .co-grid, .contact-grid, .split { grid-template-columns: 1fr; }
  .hero-left { border-right: none; border-bottom: var(--line); padding: 50px 24px; }
  .split .a { border-right: none; border-bottom: var(--line); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .shop-grid { grid-template-columns: 1fr 1fr; }
  .figures { grid-template-columns: 1fr 1fr; }
  .figures .fig:nth-child(2) { border-right: none; }
  .figures .fig:nth-child(1), .figures .fig:nth-child(2) { border-bottom: var(--line); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav { display: none; position: absolute; top: 74px; left: 0; right: 0; background: var(--paper); border-bottom: var(--line); flex-direction: column; padding: 10px; }
  .nav.open { display: flex; }
  .nav a { border: 2px solid #000; }
  .menu-toggle {
    display: inline-grid; place-items: center;
    width: 44px; height: 40px; border: 3px solid #000; background: var(--yellow);
    font-size: 20px; cursor: pointer;
  }
  .bento, .grid-3, .shop-grid, .grid-2, .field-row { grid-template-columns: 1fr; }
  .tile.col-2, .tile.row-2 { grid-column: auto; grid-row: auto; }
  .figures { grid-template-columns: 1fr; }
  .figures .fig { border-right: none; border-bottom: var(--line); }
  .figures .fig:last-child { border-bottom: none; }
  .svc-item { grid-template-columns: 1fr; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 56px 0; }
}
