/* ==========================================================
   TÜFEKÇİ MAKİNA — industrial / editorial design system
   ========================================================== */
:root {
  --ink: #0c0f14;
  --ink-2: #14181f;
  --ink-3: #1d232c;
  --steel: #5f6976;
  --steel-2: #8b95a3;
  --paper: #f3f1ec;
  --paper-2: #e9e6df;
  --white: #ffffff;
  --orange: #ff5a1f;
  --orange-deep: #d9430c;
  --orange-2: #ff8a5b;
  --line: rgba(12,15,20,.12);
  --line-dark: rgba(255,255,255,.12);
  --display: "Barlow Condensed", "Barlow", "Arial Narrow", sans-serif;
  --body: "Barlow", "Segoe UI", Roboto, Arial, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --max: 1440px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
[id] { scroll-margin-top: 96px; }
a, button { -webkit-tap-highlight-color: transparent; }
@supports not (-webkit-text-stroke: 1px #000) { .outline { color: inherit; } }
html { scroll-behavior: smooth; overflow-x: clip; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; overflow-x: hidden; font-family: var(--body); font-size: 17px; line-height: 1.6;
  color: var(--ink); background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: .95; margin: 0 0 .4em; letter-spacing: -.01em; text-transform: uppercase; }
h1 { font-size: clamp(3.2rem, 8vw, 7.4rem); font-weight: 800; }
h2 { font-size: clamp(2.4rem, 5vw, 4.6rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
p { margin: 0 0 1em; }
.wrap { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; }
.dark { background: var(--ink); color: var(--paper); }
.paper { background: var(--paper); }
.white { background: var(--white); }

/* grain overlay for dark sections */
.dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .07; mix-blend-mode: screen;
  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='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.dark > * { position: relative; }

/* labels */
.label {
  display: inline-flex; align-items: center; gap: .75rem; font-family: var(--body); font-weight: 600; text-transform: uppercase;
  letter-spacing: .18em; font-size: .72rem; color: var(--orange); margin-bottom: 1.2rem;
}
.label::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.label.plain::before { display: none; }
.idx { font-family: var(--display); font-weight: 700; font-size: .95rem; letter-spacing: .1em; color: var(--steel-2); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.55; color: var(--steel); max-width: 62ch; }
.dark .lead { color: rgba(243,241,236,.72); }
.outline { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.dark .outline, .hero .outline, .cta .outline { -webkit-text-stroke: 1.5px var(--paper); }
.accent { color: var(--orange); }

/* buttons — squared, industrial */
.btn {
  display: inline-flex; align-items: center; gap: .8rem; padding: 1rem 1.6rem; font-family: var(--display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; font-size: 1.05rem; line-height: 1; border: 1.5px solid transparent;
  cursor: pointer; transition: .25s var(--ease); position: relative; white-space: nowrap;
}
.btn .arr { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-solid { background: var(--orange); color: #fff; }
.btn-solid:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,90,31,.35); }
.btn-ghost { border-color: currentColor; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.dark .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--orange); }

/* hazard stripe */
.hazard { height: 6px; background: repeating-linear-gradient(-45deg, var(--orange) 0 14px, var(--ink) 14px 28px); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 60; color: var(--paper);
}
.header::before { content: ""; position: absolute; inset: 0; background: rgba(12,15,20,.92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line-dark); opacity: 0; transition: opacity .35s; pointer-events: none; }
.header.solid::before { opacity: 1; }
.header .wrap { position: relative; }
.header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 92px; gap: 2rem; }
.header.solid .wrap { min-height: 76px; }
.brand img, .brand .logo { height: 44px; width: auto; display: block; }
.nav { display: flex; }
.nav-links { display: flex; gap: 2.2rem; }
.nav-links a { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: 1rem; position: relative; padding: .3rem 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--orange); transition: right .3s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links .num, .nav-foot { display: none; }
.brand { position: relative; z-index: 86; }
.header-right { display: flex; align-items: center; gap: 1.4rem; }
.header-phone { font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: .04em; display: inline-flex; align-items: center; gap: .5rem; }
.header-phone svg { width: 18px; height: 18px; color: var(--orange); }
.nav-toggle { display: none; width: 46px; height: 46px; background: transparent; border: 1.5px solid rgba(255,255,255,.35); cursor: pointer; color: var(--paper); -webkit-tap-highlight-color: transparent; padding: 0; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px auto; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: clamp(640px, 100svh, 940px); display: grid; align-items: end; color: var(--paper); background: var(--ink); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; filter: saturate(.85) contrast(1.05); animation: heroZoom 14s var(--ease) both; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-media::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(12,15,20,.6) 0%, rgba(12,15,20,.2) 35%, rgba(12,15,20,.92) 100%),
  linear-gradient(90deg, rgba(12,15,20,.88) 0%, rgba(12,15,20,.35) 55%, rgba(12,15,20,.45) 100%); }
.hero-grid { position: absolute; inset: 0; pointer-events: none; opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 120px 120px; mask-image: linear-gradient(180deg, transparent, #000 40%, #000 80%, transparent); }
.hero .wrap { position: relative; display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,.8fr); gap: 3rem; align-items: end; padding: 10rem 0 5rem; }
.hero h1 { margin: 0 0 1.4rem; text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.hero h1 span { display: block; }
.hero p { max-width: 48ch; font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: rgba(243,241,236,.9); margin-bottom: 2rem; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.spec { background: rgba(12,15,20,.62); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.14); padding: .4rem 1.5rem; box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.spec div { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.spec div:last-child { border-bottom: 0; }
.spec strong { font-family: var(--display); font-size: clamp(2.2rem, 3.4vw, 3.2rem); font-weight: 800; line-height: 1; }
.spec span { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--paper); text-align: right; }
.spec strong { color: var(--orange-2, #ff8a5b); }
.vlabel { position: absolute; right: var(--gutter); top: 50%; transform: rotate(90deg) translateX(-50%); transform-origin: right top; font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(243,241,236,.55); white-space: nowrap; }
.vlabel::after { content: ""; display: inline-block; width: 60px; height: 1px; background: currentColor; margin-left: 1rem; vertical-align: middle; }

/* ticker */
.ticker { border-top: 1.5px solid var(--line-dark); border-bottom: 1.5px solid var(--line-dark); overflow: hidden; background: var(--ink); color: var(--paper); }
.ticker-track { display: flex; gap: 0; width: max-content; animation: ticker 40s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker span { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: 1.05rem; padding: .85rem 1.6rem; color: rgba(243,241,236,.85); display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap; }
.ticker span::after { content: ""; width: 8px; height: 8px; background: var(--orange); transform: rotate(45deg); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 6vw, 6rem); }
.about-text { columns: 2; column-gap: 2.5rem; color: var(--steel); }
.about-text p { break-inside: avoid; }
.about-media { position: relative; margin-top: clamp(3rem, 6vw, 5rem); }
.frame { position: relative; }
.frame img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.frame::before, .frame::after { content: ""; position: absolute; width: 26px; height: 26px; border: 2px solid var(--orange); pointer-events: none; }
.frame::before { top: -10px; left: -10px; border-right: 0; border-bottom: 0; }
.frame::after { bottom: -10px; right: -10px; border-left: 0; border-top: 0; }
.frame.tr::before { top: -10px; right: -10px; left: auto; border-left: 0; border-right: 2px solid var(--orange); border-bottom: 0; }
.about-tag { position: absolute; left: -1.5rem; bottom: -2rem; background: var(--orange); color: #fff; padding: 1.4rem 1.6rem 1.2rem; min-width: 210px; }
.about-tag strong { display: block; font-family: var(--display); font-size: 3.4rem; line-height: .9; font-weight: 800; }
.about-tag span { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }
.about-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 0; border-top: 1.5px solid var(--line); }
.about-list li { display: flex; justify-content: space-between; align-items: center; padding: .9rem 0; border-bottom: 1.5px solid var(--line); font-family: var(--display); font-weight: 600; font-size: 1.25rem; text-transform: uppercase; letter-spacing: .04em; }
.about-list li::after { content: "→"; color: var(--orange); transition: transform .25s; }
.about-list li:hover::after { transform: translateX(6px); }

/* ---------- Services list with hover preview ---------- */
.svc-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.svc-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.svc-group { margin-bottom: 3.5rem; }
.svc-group h3 { font-size: .8rem; letter-spacing: .2em; color: var(--orange); font-family: var(--body); font-weight: 600; margin-bottom: 1rem; }
.svc { list-style: none; margin: 0; padding: 0; border-top: 1.5px solid var(--line-dark); }
.svc li { border-bottom: 1.5px solid var(--line-dark); }
.svc a { display: grid; grid-template-columns: 3.2rem 1fr auto; gap: 1.2rem; align-items: center; padding: 1.15rem .6rem; margin: 0 -.6rem; transition: padding .3s var(--ease), background .3s; }
.svc a:not(.go):hover, .svc li.is-active a:not(.go) { padding-left: 1.2rem; background: rgba(255,255,255,.03); }
.svc li.is-active .n { color: var(--orange); }
.svc .n { font-family: var(--display); font-weight: 700; color: var(--steel-2); font-size: 1rem; letter-spacing: .1em; }
.svc .t { font-family: var(--display); font-weight: 700; font-size: clamp(1.35rem, 2.2vw, 2rem); text-transform: uppercase; line-height: 1; transition: color .25s; }
.svc a:hover .t { color: var(--orange); }
.svc .d { grid-column: 2; font-size: .92rem; color: rgba(243,241,236,.6); max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), margin .3s; }
.svc a:hover .d, .svc li.is-active .d { max-height: 80px; margin-top: .3rem; }
.svc .arr { width: 22px; height: 22px; color: var(--orange); opacity: 0; transform: translateX(-8px); transition: .3s var(--ease); }
.svc .go { display: none; margin: .1rem 0 1.1rem 4.4rem; font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .95rem; color: var(--orange); padding: .5rem 0; }
.svc a:hover .arr { opacity: 1; transform: none; }
@media (hover: none) {
  .svc a:hover { padding-left: .6rem; background: transparent; }
  .svc a:hover .t { color: inherit; }
  .svc a:hover .d { max-height: 0; margin-top: 0; }
  .svc a:hover .arr { opacity: 0; }
  .svc li.is-open > a:not(.go) { padding-left: 1.2rem; background: rgba(255,255,255,.04); }
  .svc li.is-open .t { color: var(--orange); }
  .svc li.is-open .d { max-height: 140px; margin-top: .3rem; }
  .svc li.is-open .arr { opacity: 1; transform: rotate(90deg); }
  .svc li.is-open .go { display: inline-block; padding: .4rem 0; }
}
.svc-preview { position: sticky; top: 110px; aspect-ratio: 4/5; overflow: hidden; background: var(--ink-3); }
.svc-preview img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s var(--ease), transform .8s var(--ease); transform: scale(1.06); }
.svc-preview img.show { opacity: 1; transform: scale(1); }
.svc-preview .cap { position: absolute; left: 1.4rem; bottom: 1.2rem; right: 1.4rem; font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 1.3rem; letter-spacing: .04em; background: linear-gradient(transparent, rgba(12,15,20,.9)); padding-top: 3rem; margin: 0 -1.4rem -1.2rem; padding-left: 1.4rem; padding-bottom: 1.2rem; }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); grid-auto-rows: 200px; gap: 10px; }
.bento figure { margin: 0; position: relative; overflow: hidden; background: var(--paper-2); }
.bento img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.bento figure:hover img { transform: scale(1.05); }
.bento figure::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 0 var(--orange); transition: box-shadow .3s; pointer-events: none; }
.bento figure:hover::after { box-shadow: inset 0 0 0 3px var(--orange); }
.bento figcaption { position: absolute; left: 0; bottom: 0; right: 0; padding: 1rem 1.1rem; font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: 1.05rem; color: #fff; background: linear-gradient(transparent, rgba(12,15,20,.85)); }
.bento .b-a { grid-column: span 3; grid-row: span 2; }
.bento .b-b { grid-column: span 3; }
.bento .b-c { grid-column: span 2; }
.bento .b-d { grid-column: span 1; }
.bento .b-e { grid-column: span 2; grid-row: span 2; }
.bento .b-f { grid-column: span 2; }
.bento .b-g { grid-column: span 2; }
.bento .b-text { grid-column: span 3; background: var(--orange); color: #fff; padding: 1.4rem; display: flex; flex-direction: column; justify-content: space-between; }
.bento .b-text strong { font-family: var(--display); font-size: 2.4rem; line-height: .95; font-weight: 800; text-transform: uppercase; }
.bento .b-text span { font-size: .85rem; opacity: .9; }

/* ---------- Why (numbers) ---------- */
.why { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1.5px solid var(--line-dark); }
.why article { padding: 2.4rem 2rem 2.4rem 0; border-right: 1.5px solid var(--line-dark); margin-right: 2rem; }
.why article:last-child { border-right: 0; margin-right: 0; }
.why .big { font-family: var(--display); font-weight: 800; font-size: 4.5rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(243,241,236,.6); margin-bottom: 1rem; transition: .3s; }
.why article:hover .big { color: var(--orange); -webkit-text-stroke-color: var(--orange); }
.why p { color: rgba(243,241,236,.68); margin: 0; }

/* ---------- Logo marquee ---------- */
.logos { overflow: hidden; border-top: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line); padding: 2rem 0; }
.logos-track { display: flex; align-items: center; gap: 0; width: max-content; animation: ticker 55s linear infinite; }
.logos-track span { flex: 0 0 auto; width: 190px; height: 56px; display: flex; align-items: center; justify-content: center; padding: 0 1.4rem; }
.logos:hover .logos-track { animation-play-state: paused; }
.logos img { max-width: 100%; max-height: 42px; width: auto; height: auto; object-fit: contain; transition: transform .3s var(--ease); }
.logos img:hover { transform: scale(1.06); }

/* ---------- FAQ ---------- */
.faq { border-top: 1.5px solid var(--line); }
.faq details { border-bottom: 1.5px solid var(--line); }
.faq summary:hover { color: var(--orange); }
.faq summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 3.2rem 1fr auto; gap: 1.2rem; align-items: center; padding: 1.4rem 0; font-family: var(--display); font-weight: 700; font-size: clamp(1.2rem, 1.8vw, 1.6rem); text-transform: uppercase; line-height: 1.05; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .n { font-size: .95rem; color: var(--steel-2); letter-spacing: .1em; }
.faq summary .pm { width: 34px; height: 34px; border: 1.5px solid var(--ink); display: grid; place-items: center; font-family: var(--body); font-weight: 400; font-size: 1.4rem; transition: .3s var(--ease); }
.faq details[open] .pm { background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(45deg); }
.faq details p { grid-column: 2; padding: 0 0 1.6rem 4.4rem; margin: 0; color: var(--steel); max-width: 70ch; }

/* ---------- CTA ---------- */
.cta { text-align: left; }
.cta .wrap { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.cta h2 { font-size: clamp(3rem, 8vw, 7.5rem); margin: 0; }
.cta a.tel { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 4rem); letter-spacing: .02em; color: var(--orange); display: inline-block; border-bottom: 3px solid var(--orange); line-height: 1.1; }
.cta a.tel:hover { color: var(--paper); border-color: var(--paper); }

/* ---------- Page head ---------- */
.page-head { background: var(--ink); color: var(--paper); padding: clamp(6.5rem, 14vw, 8.5rem) 0 clamp(2.2rem, 5vw, 3rem); position: relative; overflow: hidden; }
.page-head img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; filter: grayscale(.4); }
.page-head::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,15,20,.4), var(--ink)); }
.page-head .wrap { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; }
.page-head h1 { margin: 0; }
.crumbs { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(243,241,236,.6); display: flex; gap: .8rem; }
.crumbs a:hover { color: var(--orange); }

/* ---------- Services page ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1.5px solid var(--line); }
.svc-detail article { display: grid; grid-template-columns: 4rem 1fr 1.2fr; gap: 2rem; padding: 2rem 0; border-bottom: 1.5px solid var(--line); align-items: start; }
.svc-detail .n { font-family: var(--display); font-weight: 700; color: var(--orange); font-size: 1.1rem; letter-spacing: .1em; padding-top: .35rem; }
.svc-detail h3 { margin: 0; }
.svc-detail p { margin: 0; color: var(--steel); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 6rem); align-items: end; }
.gallery-h { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; scrollbar-width: thin; }
.gallery-h figure { margin: 0; flex: 0 0 min(420px, 80vw); aspect-ratio: 4/3; scroll-snap-align: start; position: relative; overflow: hidden; }
.gallery-h img { width: 100%; height: 100%; object-fit: cover; }
.gallery-h figcaption { position: absolute; left: 0; bottom: 0; padding: .7rem 1rem; font-family: var(--display); font-weight: 700; text-transform: uppercase; color: #fff; background: rgba(12,15,20,.75); font-size: .95rem; letter-spacing: .05em; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 6rem); align-items: start; }
.contact-list { border-top: 1.5px solid var(--line); }
.contact-list div { display: grid; grid-template-columns: 9rem 1fr; gap: 1rem; padding: 1.2rem 0; border-bottom: 1.5px solid var(--line); }
.contact-list dt { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--steel-2); padding-top: .3rem; }
.contact-list dd { margin: 0; font-family: var(--display); font-weight: 600; font-size: 1.35rem; line-height: 1.15; }
.contact-list dd a:hover { color: var(--orange); }
.form { display: grid; gap: 1.4rem; grid-template-columns: 1fr 1fr; }
.form .full { grid-column: 1 / -1; }
.form label { display: block; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--steel-2); margin-bottom: .5rem; }
.form input, .form textarea, .form select { width: 100%; padding: .9rem 0; border: 0; border-bottom: 1.5px solid var(--ink); background: transparent; font: inherit; color: var(--ink); border-radius: 0; }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-bottom-color: var(--orange); }
.form textarea { min-height: 120px; resize: vertical; }
.form .radios { display: flex; gap: 1.6rem; }
.form .radios label { display: flex; align-items: center; gap: .5rem; text-transform: none; letter-spacing: 0; font-size: 1rem; color: var(--ink); margin: 0; }
.form .radios input { width: auto; accent-color: var(--orange); }
.map { margin-top: 3rem; aspect-ratio: 16/7; background: var(--paper-2); filter: grayscale(1) contrast(1.05); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(243,241,236,.75); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 3rem; padding: 4.5rem 0 3rem; }
.footer h4 { font-size: .74rem; letter-spacing: .2em; color: var(--orange); font-family: var(--body); margin-bottom: 1.2rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer a:hover { color: var(--paper); }
.footer .brand img, .footer .brand .logo { height: 50px; width: auto; margin-bottom: 1.2rem; display: block; }
.footer-big { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(3rem, 9vw, 9rem); line-height: .85; color: transparent; -webkit-text-stroke: 1px rgba(243,241,236,.25); padding: 1rem 0 0; white-space: nowrap; overflow: hidden; }
.footer-bottom { border-top: 1.5px solid var(--line-dark); padding: 1.2rem 0; font-size: .82rem; letter-spacing: .06em; }
.footer-bottom .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a { width: 42px; height: 42px; border: 1.5px solid var(--line-dark); display: grid; place-items: center; }
.social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.social svg { width: 18px; height: 18px; }

.wa-float { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 70; width: 54px; height: 54px; border-radius: 50%; background: #1f9d55; color: rgba(255,255,255,.92); display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.18); opacity: .88; transition: opacity .25s, transform .25s var(--ease), background .25s; }
.wa-float:hover { opacity: 1; background: #25d366; transform: translateY(-2px); }
.wa-float svg { width: 28px; height: 28px; }

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; } .reveal[data-delay="2"] { transition-delay: .2s; } .reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero-media img { animation: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .spec { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 2rem; }
  .about { grid-template-columns: 1fr; }
  .about-text { columns: 1; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-preview { display: none; }
  .bento { grid-auto-rows: 170px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .vlabel { display: none; }
}
@media (max-width: 860px) {
  .nav { position: fixed; inset: 0; height: 100dvh; background: var(--ink); color: var(--paper); display: flex; flex-direction: column; justify-content: space-between; padding: 6.5rem var(--gutter) 1.6rem; transform: translateX(100%); transition: transform .4s var(--ease), visibility 0s .4s; visibility: hidden; z-index: 80; overscroll-behavior: contain; overflow-x: hidden; overflow-y: auto; touch-action: pan-y; }
  .nav::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent); }
  .nav::after { content: ""; position: absolute; right: 0; top: 0; width: 320px; height: 320px; transform: translate(35%, -35%); border-radius: 50%; background: radial-gradient(circle, rgba(255,90,31,.35), transparent 65%); pointer-events: none; }
  .nav.open { transform: none; visibility: visible; transition: transform .4s var(--ease); }
  .nav-links { display: flex; flex-direction: column; gap: 0; position: relative; }
  .nav-links a { display: flex; align-items: baseline; gap: 1rem; font-size: clamp(2rem, 8.5vw, 2.8rem); font-weight: 700; letter-spacing: .02em; padding: .85rem 0; border-bottom: 1px solid var(--line-dark); opacity: 0; transform: translateY(14px); }
  .nav-links a::after { display: none; }
  .nav.open .nav-links a { animation: navIn .55s var(--ease) both; animation-delay: calc(120ms + var(--i) * 70ms); }
  .nav-links .num { display: inline-block; font-size: .8rem; letter-spacing: .12em; color: var(--orange); font-weight: 700; min-width: 2rem; }
  .nav-links a.active { color: var(--orange); }
  .nav-foot { display: grid; gap: .9rem; position: relative; padding-top: 1.5rem; opacity: 0; }
  .nav.open .nav-foot { animation: navIn .55s var(--ease) .45s both; }
  .nav-foot .tel { font-family: var(--display); font-weight: 800; font-size: 1.7rem; letter-spacing: .02em; }
  .nav-foot .btns { display: flex; gap: .6rem; flex-wrap: wrap; }
  .nav-foot .btns .btn { flex: 1; justify-content: center; }
  .nav-foot small { color: var(--steel-2); font-size: .8rem; }
  @keyframes navIn { to { opacity: 1; transform: none; } }
  .nav-toggle { display: block; position: relative; z-index: 85; }
  body.menu-open { position: fixed; width: 100%; overflow: hidden; }
  body.menu-open .wa-float { display: none; }
  .header-phone { display: none; }
  .header-right .btn { display: none; }
  .why { grid-template-columns: 1fr; }
  .why article { border-right: 0; margin-right: 0; border-bottom: 1.5px solid var(--line-dark); padding-right: 0; }
  .svc-detail article { grid-template-columns: 3rem 1fr; }
  .svc-detail article p { grid-column: 2; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .cta .wrap { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 160px; }
  .bento .b-a, .bento .b-b, .bento .b-c, .bento .b-e, .bento .b-f, .bento .b-g, .bento .b-text { grid-column: span 3; }
  .bento .b-d { grid-column: span 1; }
  .bento .b-a, .bento .b-e { grid-row: span 2; }
  .about-tag { left: 0; bottom: -1.5rem; }
  .faq details p { padding-left: 0; grid-column: 1 / -1; }
  .contact-list div { grid-template-columns: 1fr; gap: .3rem; }
  .form { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .page-head { padding-top: 8rem; }
}
@media (max-width: 600px) {
  .spec { padding: .2rem 1.1rem; }
  .spec strong { font-size: 2rem; }
  .spec span { font-size: .7rem; }
  .logos-track span { width: 150px; height: 48px; }
  .logos img { max-height: 34px; }
  .about-tag { padding: 1rem 1.2rem .9rem; min-width: 0; }
  .about-tag strong { font-size: 2.6rem; }
  .spec { grid-template-columns: 1fr; }
  .hero-media::after { background: linear-gradient(180deg, rgba(12,15,20,.7) 0%, rgba(12,15,20,.55) 40%, rgba(12,15,20,.92) 100%); }
  .hero .wrap { padding-top: 7rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
}

.spec-row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0 2.5rem; border-top: 0; }
@media (max-width: 1100px) { .spec-row { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .spec-row { grid-template-columns: 1fr; } }
