:root {
  --tg-ink: #15120f;
  --tg-ink-soft: #27221e;
  --tg-cream: #f7efe7;
  --tg-cream-2: #eee6de;
  --tg-paper: #fbf7f1;
  --tg-orange: #ed4f00;
  --tg-orange-soft: rgba(237, 79, 0, 0.18);
  --tg-muted: rgba(21, 18, 15, 0.64);
  --tg-muted-light: rgba(247, 239, 231, 0.68);
  --tg-border: rgba(21, 18, 15, 0.11);
  --tg-border-light: rgba(247, 239, 231, 0.18);
  --tg-shadow: 0 28px 88px rgba(21, 18, 15, 0.14);
  --tg-radius: 30px;
  --tg-radius-lg: 44px;
  --tg-shell: min(1180px, calc(100vw - 40px));
  --tg-ease: cubic-bezier(.22, 1, .36, 1);
  --mx: 50%;
  --my: 20%;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Aptos, "Helvetica Neue", Arial, sans-serif;
  color: var(--tg-ink);
  background: var(--tg-paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
p { line-height: 1.65; }
::selection { background: var(--tg-orange); color: #fff; }

.screen-reader-text,
.skip-link {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  z-index: 9999;
  left: 1rem;
  top: 1rem;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--tg-ink);
}
.tg-shell { width: var(--tg-shell); margin-inline: auto; }

.tg-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 1000;
  pointer-events: none;
  transition: transform .45s var(--tg-ease), inset .45s var(--tg-ease);
}
.tg-header__inner {
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 74px;
  padding: 14px 16px 14px 20px;
  border: 1px solid var(--tg-border-light);
  border-radius: 999px;
  background: rgba(21, 18, 15, .63);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.tg-header.is-scrolled { inset-top: 10px; }
.tg-header.is-scrolled .tg-header__inner { min-height: 62px; }
.tg-brand { display: inline-flex; align-items: center; min-width: 168px; }
.site-logo-img { width: 172px; max-height: 46px; object-fit: contain; }
.tg-nav { justify-self: center; }
.tg-menu,
.tg-footer-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
}
.tg-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  color: rgba(247, 239, 231, .8);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: background .28s var(--tg-ease), color .28s var(--tg-ease), transform .28s var(--tg-ease);
}
.tg-menu a:hover,
.tg-menu a:focus-visible {
  color: #fff;
  background: rgba(247, 239, 231, .1);
  transform: translateY(-1px);
}
.tg-header-cta,
.tg-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.02em;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--tg-ease), box-shadow .35s var(--tg-ease), background .35s var(--tg-ease), color .35s var(--tg-ease);
}
.tg-header-cta {
  color: #fff;
  background: var(--tg-orange);
  box-shadow: 0 18px 35px rgba(237,79,0,.28);
}
.tg-header-cta:hover,
.tg-button:hover { transform: translateY(-2px); }
.tg-button--primary { background: var(--tg-orange); color: #fff; box-shadow: 0 20px 45px rgba(237,79,0,.24); }
.tg-button--ghost { background: rgba(247,239,231,.08); border: 1px solid currentColor; color: inherit; }
.tg-button--primary::after,
.tg-header-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.32) 40%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s var(--tg-ease);
  z-index: -1;
}
.tg-button--primary:hover::after,
.tg-header-cta:hover::after { transform: translateX(120%); }
.tg-menu-toggle { display: none; }

.tg-hero {
  position: relative;
  min-height: 100vh;
  padding: 162px 0 92px;
  display: grid;
  align-items: center;
  color: var(--tg-cream);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(237,79,0,.28), transparent 30vw),
    linear-gradient(145deg, #15120f 0%, #1d1712 42%, #090807 100%);
  overflow: clip;
}
.tg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247,239,231,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,239,231,.055) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 72%, transparent);
  opacity: .35;
}
.tg-hero__ambient {
  position: absolute;
  width: 64vmax;
  aspect-ratio: 1;
  right: -24vmax;
  top: 6vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,79,0,.42), rgba(237,79,0,.12) 32%, transparent 64%);
  filter: blur(30px);
  animation: tgFloat 11s ease-in-out infinite alternate;
}
.tg-hero__grain {
  position: absolute;
  inset: 0;
  background-image: url('../img/noise.svg');
  opacity: .1;
  mix-blend-mode: screen;
  pointer-events: none;
}
.tg-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .78fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}
.tg-eyebrow,
.tg-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tg-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tg-rec-dot,
.tg-button-mark span,
.tg-work-visual span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--tg-orange);
  box-shadow: 0 0 0 0 rgba(237,79,0,.5);
  animation: tgPulse 2.6s ease-out infinite;
}
.tg-rec-dot:nth-child(2),
.tg-button-mark span:nth-child(2),
.tg-work-visual span:nth-child(2) { animation-delay: .18s; }
.tg-hero-title {
  max-width: 920px;
  margin: 24px 0 0;
  font-size: clamp(54px, 9vw, 112px);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 950;
}
.tg-hero-title .tg-word {
  display: inline-block;
  transform: translateY(105%) rotate(.7deg);
  opacity: 0;
  filter: blur(10px);
  animation: tgWordIn .95s var(--tg-ease) forwards;
}
.tg-hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--tg-muted-light);
  font-size: clamp(18px, 2vw, 22px);
}
.tg-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.tg-hero-card {
  position: relative;
  min-height: 520px;
  padding: 18px;
  border: 1px solid var(--tg-border-light);
  border-radius: var(--tg-radius-lg);
  background: linear-gradient(160deg, rgba(247,239,231,.15), rgba(247,239,231,.04));
  box-shadow: 0 30px 100px rgba(0,0,0,.33);
  transform-style: preserve-3d;
}
.tg-hero-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--tg-radius-lg) - 10px);
  background: radial-gradient(circle at 30% 22%, rgba(237,79,0,.28), transparent 32%), linear-gradient(150deg, rgba(255,255,255,.10), transparent);
  pointer-events: none;
}
.tg-hero-card__top { position: relative; display: flex; gap: 7px; z-index: 1; padding: 8px; }
.tg-hero-card__top span { width: 9px; height: 9px; border-radius: 50%; background: rgba(247,239,231,.48); }
.tg-hero-card__top span:first-child { background: var(--tg-orange); }
.tg-frame {
  position: relative;
  z-index: 1;
  min-height: 355px;
  margin-top: 16px;
  padding: 26px;
  border-radius: 34px;
  background: rgba(247,239,231,.92);
  color: var(--tg-ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.tg-frame::before,
.tg-frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.tg-frame::before {
  width: 360px;
  aspect-ratio: 1;
  right: -120px;
  top: -90px;
  border: 1px solid rgba(21,18,15,.08);
  background: radial-gradient(circle, transparent 54%, rgba(21,18,15,.05) 55%, transparent 56%);
}
.tg-frame::after {
  width: 120px;
  aspect-ratio: 1;
  left: 40px;
  bottom: 40px;
  background: rgba(237,79,0,.12);
  filter: blur(18px);
}
.tg-camera-ui { display: flex; justify-content: space-between; color: rgba(21,18,15,.52); font-weight: 900; font-size: 12px; letter-spacing: .06em; }
.tg-camera-ui span:first-child::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--tg-orange); margin-right: 8px; animation: tgBlink 1.2s steps(2, start) infinite; }
.tg-button-mark { position: relative; margin: auto; display: flex; gap: 28px; padding: 34px 42px; border-radius: 999px; background: rgba(255,255,255,.64); box-shadow: inset 0 0 0 1px rgba(21,18,15,.06), 0 30px 55px rgba(21,18,15,.08); }
.tg-button-mark span { width: 28px; height: 28px; }
.tg-frame p { position: relative; z-index: 1; max-width: 300px; margin: 0; font-size: 35px; line-height: .98; letter-spacing: -.06em; font-weight: 950; }
.tg-hero-card__meta { position: relative; z-index: 1; margin-top: 18px; display: flex; justify-content: space-between; gap: 18px; color: var(--tg-muted-light); font-size: 13px; }
.tg-hero-card__meta strong { color: #fff; }
.tg-scroll-cue { position: absolute; z-index: 4; left: 50%; bottom: 24px; transform: translateX(-50%); width: 34px; height: 54px; border-radius: 999px; border: 1px solid rgba(247,239,231,.28); display: grid; place-items: start center; padding-top: 9px; }
.tg-scroll-cue span { width: 5px; height: 9px; border-radius: 999px; background: var(--tg-orange); animation: tgScroll 1.6s var(--tg-ease) infinite; }

.tg-section { padding: clamp(76px, 10vw, 140px) 0; }
.tg-two-col { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); gap: clamp(32px, 7vw, 90px); align-items: start; }
.tg-brand-story { background: var(--tg-paper); }
.tg-brand-story h2,
.tg-section-head h2,
.tg-sticky-copy h2,
.tg-contact h2,
.tg-page-hero h1 {
  margin: 12px 0 0;
  font-size: clamp(38px, 6vw, 82px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 950;
}
.tg-story-copy p { margin: 0; color: var(--tg-muted); font-size: clamp(19px, 2vw, 25px); }
.tg-values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tg-values span { padding: 12px 16px; border: 1px solid var(--tg-border); border-radius: 999px; font-weight: 850; background: #fff; }
.tg-section-head { max-width: 860px; margin-bottom: 44px; }
.tg-section-head--split { max-width: none; display: grid; grid-template-columns: 1fr minmax(280px, 430px); gap: 30px; align-items: end; }
.tg-section-head p { margin: 0; color: var(--tg-muted); }
.tg-services { background: #fff; }
.tg-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.tg-service-card,
.tg-step,
.tg-work-card,
.tg-post-card {
  position: relative;
  border: 1px solid var(--tg-border);
  border-radius: var(--tg-radius);
  background: var(--tg-paper);
  overflow: hidden;
  transition: transform .45s var(--tg-ease), box-shadow .45s var(--tg-ease), border-color .45s var(--tg-ease);
  transform-style: preserve-3d;
}
.tg-service-card { min-height: 310px; padding: 26px; display: flex; flex-direction: column; }
.tg-service-card::before,
.tg-work-card::before,
.tg-step::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 70%;
  background: radial-gradient(circle at 50% 0%, rgba(237,79,0,.2), transparent 66%);
  opacity: 0;
  transition: opacity .45s var(--tg-ease);
}
.tg-service-card:hover,
.tg-step:hover,
.tg-work-card:hover,
.tg-post-card:hover { transform: translateY(-8px); box-shadow: var(--tg-shadow); border-color: rgba(237,79,0,.25); }
.tg-service-card:hover::before,
.tg-step:hover::before,
.tg-work-card:hover::before { opacity: 1; }
.tg-card-number { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: var(--tg-orange); background: rgba(237,79,0,.08); font-weight: 950; }
.tg-service-card h3 { margin: auto 0 12px; font-size: 27px; letter-spacing: -.045em; line-height: 1; }
.tg-service-card p { margin: 0; color: var(--tg-muted); }

.tg-process { color: var(--tg-cream); background: var(--tg-ink); position: relative; overflow: clip; }
.tg-process::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 18% 14%, rgba(237,79,0,.18), transparent 35%), url('../img/noise.svg'); opacity:.34; }
.tg-process__grid { position: relative; display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.12fr); gap: clamp(34px, 8vw, 110px); }
.tg-sticky-copy { position: sticky; top: 130px; align-self: start; }
.tg-sticky-copy p { color: var(--tg-muted-light); font-size: 19px; }
.tg-steps { display: grid; gap: 14px; }
.tg-step { background: rgba(247,239,231,.07); border-color: var(--tg-border-light); padding: 28px; color: var(--tg-cream); }
.tg-step span { color: var(--tg-orange); font-weight: 950; }
.tg-step h3 { margin: 36px 0 10px; font-size: 31px; line-height: 1; letter-spacing: -.05em; }
.tg-step p { margin: 0; color: var(--tg-muted-light); }

.tg-work { background: var(--tg-paper); }
.tg-work-grid { display: grid; grid-template-columns: 1.05fr .7fr; gap: 16px; }
.tg-work-card { min-height: 330px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; background: #fff; }
.tg-work-card--large { grid-row: span 2; min-height: 680px; background: var(--tg-ink); color: var(--tg-cream); }
.tg-work-card--large::after {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, transparent 0 48%, rgba(247,239,231,.06) 48% 49%, transparent 49% 100%);
  background-size: 90px 90px;
  opacity:.4;
}
.tg-work-visual { position: relative; z-index: 1; width: min(72%, 460px); aspect-ratio: 1.08; margin: 34px auto; display: flex; align-items: center; justify-content: center; gap: 32px; border-radius: 50%; border: 1px solid rgba(247,239,231,.16); background: radial-gradient(circle, rgba(237,79,0,.16), transparent 58%); }
.tg-work-visual span { width: 32px; height: 32px; }
.tg-work-card h3 { position: relative; z-index: 1; margin: 10px 0 0; font-size: clamp(30px, 4vw, 54px); line-height: .95; letter-spacing: -.06em; }
.tg-work-card span { position: relative; z-index: 1; color: var(--tg-orange); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.tg-work-quote { font-size: clamp(34px, 4vw, 56px); line-height: .94; letter-spacing: -.065em; font-weight: 950; }
.tg-work-quote::first-letter { color: var(--tg-orange); }
.tg-work-browser { display: flex; gap: 8px; padding-bottom: 74px; }
.tg-work-browser span { width: 12px; height: 12px; border-radius: 50%; background: var(--tg-border); }
.tg-work-browser span:first-child { background: var(--tg-orange); }

.tg-marquee { overflow: hidden; padding: 24px 0; background: var(--tg-orange); color: #fff; }
.tg-marquee__track { display: flex; width: max-content; gap: 36px; animation: tgMarquee 24s linear infinite; will-change: transform; }
.tg-marquee span { font-size: clamp(28px, 5vw, 72px); line-height: 1; font-weight: 950; letter-spacing: -.06em; white-space: nowrap; }

.tg-contact { background: var(--tg-ink); color: var(--tg-cream); }
.tg-contact__box { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: end; padding: clamp(28px, 6vw, 64px); border-radius: var(--tg-radius-lg); background: linear-gradient(145deg, rgba(247,239,231,.10), rgba(247,239,231,.04)); border: 1px solid var(--tg-border-light); }
.tg-contact__box::before { content:""; position:absolute; width:440px; aspect-ratio:1; right:-160px; top:-180px; border-radius:50%; background: radial-gradient(circle, rgba(237,79,0,.36), transparent 66%); filter: blur(18px); }
.tg-contact p { color: var(--tg-muted-light); max-width: 620px; font-size: 19px; }
.tg-contact__actions { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: stretch; gap: 12px; min-width: min(360px, 100%); }
.tg-contact .tg-button--ghost { color: var(--tg-cream); border-color: rgba(247,239,231,.28); }
.tg-inline-link { display: inline-flex; justify-content: center; color: var(--tg-orange); font-weight: 900; padding: 10px; }

.tg-footer { padding: 70px 0 24px; color: var(--tg-cream); background: #0d0b09; }
.tg-footer__grid { display: grid; grid-template-columns: 1.2fr .6fr .7fr; gap: 42px; }
.tg-footer-logo img { width: 180px; }
.tg-footer p { max-width: 360px; color: var(--tg-muted-light); }
.tg-footer h2 { margin: 0 0 14px; color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: .1em; }
.tg-footer-menu { flex-direction: column; align-items: flex-start; gap: 10px; }
.tg-footer-menu a,
.tg-footer__contact a { color: var(--tg-muted-light); }
.tg-footer-menu a:hover,
.tg-footer__contact a:hover { color: var(--tg-orange); }
.tg-footer__contact { display: grid; align-content: start; gap: 10px; }
.tg-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 42px; margin-top: 46px; border-top: 1px solid var(--tg-border-light); color: rgba(247,239,231,.46); font-size: 14px; }

.tg-page-hero { padding: 170px 0 80px; background: var(--tg-ink); color: var(--tg-cream); }
.tg-page-hero p { max-width: 760px; color: var(--tg-muted-light); font-size: 20px; }
.tg-page-hero--post { padding-bottom: 70px; }
.tg-entry__content { max-width: 800px; padding: 70px 0 110px; font-size: 18px; }
.tg-entry__content a { color: var(--tg-orange); text-decoration: underline; text-underline-offset: 3px; }
.tg-entry__content h2,
.tg-entry__content h3 { letter-spacing: -.04em; line-height: 1.08; }
.tg-entry__media { margin-top: 60px; border-radius: var(--tg-radius); overflow: hidden; }
.tg-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.tg-post-card { background: #fff; }
.tg-post-card__image { display:block; aspect-ratio: 1.25; overflow:hidden; }
.tg-post-card__image img { width:100%; height:100%; object-fit:cover; transition: transform .6s var(--tg-ease); }
.tg-post-card:hover .tg-post-card__image img { transform: scale(1.06); }
.tg-post-card__body { padding: 24px; }
.tg-post-card__body span { color: var(--tg-orange); font-size: 12px; font-weight: 900; letter-spacing:.06em; text-transform:uppercase; }
.tg-post-card__body h2 { margin: 10px 0; font-size: 28px; line-height: 1; letter-spacing: -.05em; }
.tg-post-card__body p { color: var(--tg-muted); }
.tg-pagination { grid-column: 1 / -1; }
.tg-404 { min-height: 80vh; display:grid; align-items:center; }

[data-reveal] { opacity: 0; transform: translate3d(0, 30px, 0); filter: blur(10px); transition: opacity .9s var(--tg-ease), transform .9s var(--tg-ease), filter .9s var(--tg-ease); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: translate3d(0,0,0); filter: blur(0); }
.tg-card-grid [data-reveal]:nth-child(2), .tg-steps [data-reveal]:nth-child(2), .tg-work-grid [data-reveal]:nth-child(2) { --reveal-delay: 90ms; }
.tg-card-grid [data-reveal]:nth-child(3), .tg-steps [data-reveal]:nth-child(3), .tg-work-grid [data-reveal]:nth-child(3) { --reveal-delay: 180ms; }
.tg-card-grid [data-reveal]:nth-child(4), .tg-steps [data-reveal]:nth-child(4) { --reveal-delay: 270ms; }

@keyframes tgWordIn { to { opacity: 1; transform: translateY(0) rotate(0); filter: blur(0); } }
@keyframes tgFloat { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-6vw, 4vw, 0) scale(1.08); } }
@keyframes tgPulse { 0% { box-shadow: 0 0 0 0 rgba(237,79,0,.35); } 70% { box-shadow: 0 0 0 18px rgba(237,79,0,0); } 100% { box-shadow: 0 0 0 0 rgba(237,79,0,0); } }
@keyframes tgBlink { 50% { opacity: .2; } }
@keyframes tgScroll { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(21px); opacity: 0; } }
@keyframes tgMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 1040px) {
  .tg-header__inner { grid-template-columns: auto auto; justify-content: space-between; }
  .tg-menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--tg-border-light);
    border-radius: 50%;
    background: rgba(247,239,231,.08);
    color: #fff;
    cursor: pointer;
  }
  .tg-menu-toggle span:not(.screen-reader-text) { width: 18px; height: 2px; background: currentColor; border-radius: 999px; transition: transform .3s var(--tg-ease); grid-area: 1 / 1; }
  .tg-menu-toggle span:nth-child(1) { transform: translateY(-4px); }
  .tg-menu-toggle span:nth-child(2) { transform: translateY(4px); }
  body.menu-open .tg-menu-toggle span:nth-child(1) { transform: rotate(45deg); }
  body.menu-open .tg-menu-toggle span:nth-child(2) { transform: rotate(-45deg); }
  .tg-nav {
    position: fixed;
    top: 92px;
    left: 20px;
    right: 20px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(21,18,15,.95);
    border: 1px solid var(--tg-border-light);
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(.98);
    transition: opacity .3s var(--tg-ease), transform .3s var(--tg-ease), visibility .3s var(--tg-ease);
  }
  body.menu-open .tg-nav { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .tg-menu { flex-direction: column; align-items: stretch; }
  .tg-menu a { width: 100%; justify-content: center; font-size: 18px; min-height: 54px; }
  .tg-header-cta { display: none; }
  .site-logo-img { width: 154px; }
  .tg-hero__grid, .tg-two-col, .tg-process__grid, .tg-section-head--split, .tg-contact__box { grid-template-columns: 1fr; }
  .tg-hero-card { min-height: 460px; }
  .tg-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tg-work-grid { grid-template-columns: 1fr; }
  .tg-work-card--large { min-height: 560px; }
  .tg-sticky-copy { position: static; }
  .tg-footer__grid, .tg-post-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --tg-shell: min(100vw - 28px, 1180px); }
  .tg-header { inset-top: 10px; }
  .tg-header__inner { min-height: 62px; padding: 10px 10px 10px 14px; }
  .tg-brand { min-width: 132px; }
  .site-logo-img { width: 136px; }
  .tg-hero { min-height: auto; padding: 126px 0 74px; }
  .tg-hero-title { font-size: clamp(48px, 16vw, 74px); }
  .tg-hero-lead { font-size: 17px; }
  .tg-hero__actions { flex-direction: column; align-items: stretch; }
  .tg-hero-card { min-height: 380px; border-radius: 32px; }
  .tg-frame { min-height: 280px; border-radius: 26px; }
  .tg-frame p { font-size: 29px; }
  .tg-button-mark { padding: 24px 30px; gap: 20px; }
  .tg-button-mark span { width: 22px; height: 22px; }
  .tg-card-grid, .tg-footer__grid, .tg-post-grid { grid-template-columns: 1fr; }
  .tg-service-card { min-height: 260px; }
  .tg-section { padding: 74px 0; }
  .tg-brand-story h2, .tg-section-head h2, .tg-sticky-copy h2, .tg-contact h2, .tg-page-hero h1 { font-size: clamp(36px, 12vw, 56px); }
  .tg-work-card--large { min-height: 470px; }
  .tg-work-visual { width: 92%; }
  .tg-contact__actions { min-width: 0; }
  .tg-footer__bottom { flex-direction: column; }
  .tg-page-hero { padding-top: 130px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal], .tg-hero-title .tg-word { opacity: 1 !important; transform: none !important; filter: none !important; }
}
