/* ===========================================================
   TT Transport Solution GmbH — global styles
   =========================================================== */

:root {
  --bg:          #f5f1ea;
  --cream:       #faf7f2;
  --ink:         #1a1612;
  --ink-soft:    #2b2520;
  --muted:       #78716c;
  --line:        #e5dfd4;
  --accent:      #c2410c;
  --accent-soft: #ea7c3a;
  --gold:        #d4a574;

  --display: "Fraunces", "Times New Roman", serif;
  --sans:    "Manrope", system-ui, sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 234, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav--dark {
  background: rgba(26, 22, 18, 0.85);
  border-bottom-color: rgba(250, 247, 242, 0.08);
}
.nav--dark .nav__links a { color: rgba(250, 247, 242, 0.78); }
.nav--dark .nav__links a:hover { color: var(--accent-soft); }
.nav--dark .nav__links a.active { color: var(--accent-soft); }
.nav--dark .brand__name { color: var(--cream); }
.nav--dark .brand__mark { background: var(--cream); color: var(--ink); }

.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.04em;
  border-radius: 4px;
}

.brand__name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}

.nav__links a {
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}

.nav__links a.active { color: var(--accent); }
.nav__links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--accent);
}

.nav__links a:hover { color: var(--accent); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--accent); }
.nav--dark .nav__cta { background: var(--accent); }
.nav--dark .nav__cta:hover { background: var(--accent-soft); }

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 0 0 rgba(234, 124, 58, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(234, 124, 58, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(234, 124, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(234, 124, 58, 0); }
}

/* ============== HERO (homepage) ============== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

/* Gradient mesh background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(194, 65, 12, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(212, 165, 116, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(43, 37, 32, 0.5) 0%, var(--ink) 80%),
    var(--ink);
}

/* Decorative SVG pattern - subtle box grid */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'><defs><pattern id='boxes' x='0' y='0' width='180' height='180' patternUnits='userSpaceOnUse'><rect x='30' y='30' width='80' height='80' fill='none' stroke='%23faf7f2' stroke-width='0.6' opacity='0.12'/><rect x='40' y='40' width='80' height='80' fill='none' stroke='%23d4a574' stroke-width='0.5' opacity='0.18'/><line x1='30' y1='70' x2='110' y2='70' stroke='%23faf7f2' stroke-width='0.4' opacity='0.1'/></pattern><linearGradient id='fade' x1='0' y1='0' x2='1' y2='1'><stop offset='0%25' stop-color='black' stop-opacity='0'/><stop offset='100%25' stop-color='black' stop-opacity='1'/></linearGradient><mask id='m'><rect width='1200' height='800' fill='white'/><rect width='1200' height='800' fill='url(%23fade)'/></mask></defs><rect width='1200' height='800' fill='url(%23boxes)' mask='url(%23m)'/></svg>");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

/* Decorative accent: large outlined "box" graphic on right */
.hero__bg::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 10%;
  width: 60%;
  height: 80%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400' fill='none' stroke='%23ea7c3a' stroke-width='1' opacity='0.45'><g transform='translate(200 200) rotate(-12)'><rect x='-120' y='-90' width='240' height='180' rx='4'/><path d='M-120 -30 L120 -30 M0 -90 L0 90'/></g><g transform='translate(80 140) rotate(8)'><rect x='-50' y='-40' width='100' height='80' rx='3' stroke='%23d4a574' opacity='0.5'/><path d='M-50 0 L50 0' stroke='%23d4a574' opacity='0.5'/></g><g transform='translate(330 110) rotate(-6)'><rect x='-45' y='-35' width='90' height='70' rx='3' stroke='%23faf7f2' opacity='0.18'/></g></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px var(--pad) 90px;
  width: 100%;
}

.hero__tagline { margin-bottom: 32px; }

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(250, 247, 242, 0.25);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(48px, 8.5vw, 124px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  max-width: 12ch;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-soft);
}

.hero__sub {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  max-width: 52ch;
  color: rgba(250, 247, 242, 0.78);
  font-weight: 300;
  margin: 0 0 40px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(250, 247, 242, 0.25);
  color: var(--cream);
}
.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(250, 247, 242, 0.08);
}

.btn--dark {
  background: var(--ink);
  color: var(--cream);
}
.btn--dark:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  padding-top: 32px;
  max-width: 720px;
}

.stat__num {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat__label {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(250, 247, 242, 0.65);
}

/* ============== PAGE HEADER (sub pages) ============== */
.page-header {
  background: var(--ink);
  color: var(--cream);
  padding: 80px var(--pad) 100px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(194, 65, 12, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-header__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
}

.crumb {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 22px;
  font-weight: 600;
}

.page-header__title {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.page-header__title em {
  font-style: italic;
  color: var(--accent-soft);
}

.page-header__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(250, 247, 242, 0.72);
  max-width: 58ch;
  margin: 0;
  font-weight: 300;
  line-height: 1.55;
}

/* ============== SECTIONS ============== */
.section {
  padding: clamp(80px, 12vw, 140px) var(--pad);
}

.section--cream { background: var(--cream); }
.section--bg    { background: var(--bg); }
.section--dark  { background: var(--ink); color: var(--cream); }

.section__head {
  max-width: var(--maxw);
  margin: 0 auto 64px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--accent-soft); }

.section__title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}

.section__title em {
  font-style: italic;
  color: var(--accent);
}
.section__title--light em { color: var(--accent-soft); }

.section__lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}
.section--dark .section__lede { color: rgba(250, 247, 242, 0.7); }

/* ============== SERVICES GRID ============== */
.services {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service {
  background: var(--cream);
  padding: 44px 36px;
  transition: background 0.3s, transform 0.3s;
  position: relative;
}

.service:hover { background: var(--bg); }

.service__num {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 56px;
}

.service__title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  line-height: 1.15;
}

.service__text {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ============== ABOUT BLOCK ============== */
.about {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.about__left .eyebrow { margin-bottom: 18px; }

.about__visual {
  margin-top: 48px;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  background: linear-gradient(135deg, #2b2520 0%, #1a1612 60%, #0f0c0a 100%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 165, 116, 0.18);
  isolation: isolate;
}

.about__visual-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500' fill='none'><g stroke='%23d4a574' stroke-width='0.6' opacity='0.35'><rect x='40' y='80' width='110' height='90' rx='3' transform='rotate(-5 95 125)'/><path d='M40 125 L150 125 M95 80 L95 170' opacity='0.6'/><rect x='220' y='160' width='130' height='110' rx='3' transform='rotate(7 285 215)'/><path d='M220 215 L350 215 M285 160 L285 270' opacity='0.6'/><rect x='80' y='280' width='95' height='80' rx='3' transform='rotate(-3 127 320)'/><path d='M80 320 L175 320 M127 280 L127 360' opacity='0.6'/><rect x='240' y='370' width='85' height='75' rx='3' transform='rotate(6 282 407)'/><path d='M240 407 L325 407 M282 370 L282 445' opacity='0.6'/></g><g stroke='%23c2410c' stroke-width='1' opacity='0.45'><rect x='130' y='200' width='140' height='120' rx='4'/><path d='M130 260 L270 260 M200 200 L200 320'/></g><circle cx='200' cy='250' r='3' fill='%23d4a574' opacity='0.6'/></svg>");
  background-size: 100% 100%;
  background-position: center;
  opacity: 0.85;
}

.about__visual-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(194, 65, 12, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(212, 165, 116, 0.10) 0%, transparent 50%);
}

.about__visual-stamp {
  position: relative;
  z-index: 1;
  padding: 36px 32px;
  background: rgba(26, 22, 18, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 165, 116, 0.22);
  border-radius: 6px;
  color: var(--cream);
  min-width: 240px;
  text-align: center;
}

.about__stamp-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

.about__stamp-num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
}

.about__stamp-lbl {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.7);
}

.about__stamp-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.35), transparent);
  margin: 16px 0;
}

.about__stamp-meta {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.62);
  letter-spacing: 0.02em;
}

.about__right {
  font-size: 17px;
  line-height: 1.7;
}

.section--dark .about__right { color: rgba(250, 247, 242, 0.85); }
.section--cream .about__right { color: var(--ink-soft); }

.about__right p { margin: 0 0 22px; }
.about__right p:first-child {
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 32px;
}
.section--cream .about__right p:first-child { color: var(--accent); }

.section--dark .about__right strong { color: var(--cream); font-weight: 600; }
.section--cream .about__right strong { color: var(--ink); font-weight: 600; }

.about__right em {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  font-size: 1.05em;
}
.section--cream .about__right em { color: var(--accent); }

.about__signature {
  margin-top: 36px !important;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 247, 242, 0.18);
  font-size: 15px;
  color: rgba(250, 247, 242, 0.7);
}
.section--cream .about__signature {
  border-top-color: var(--line);
  color: var(--muted);
}

/* ============== PRICING ============== */
.pricing {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.price-card {
  background: var(--bg);
  padding: 44px 36px;
  border-radius: 6px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.section--cream .price-card { background: var(--cream); }

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -28px rgba(26, 22, 18, 0.25);
}

.price-card--featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.section--cream .price-card--featured { background: var(--ink); }

.price-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.price-card__count {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 32px;
}

.price-card__count .num {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.price-card--featured .price-card__count .num { color: var(--accent-soft); }

.price-card__count .lbl {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-card--featured .price-card__count .lbl { color: rgba(250, 247, 242, 0.6); }

.price-card__price {
  display: flex;
  align-items: baseline;
  font-family: var(--display);
  margin-bottom: 8px;
}

.price-card__price .cur {
  font-size: 28px;
  font-weight: 400;
  margin-right: 6px;
}
.price-card__price .amt {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-card__unit {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.price-card--featured .price-card__unit { color: rgba(250, 247, 242, 0.65); }

.pricing-note {
  max-width: var(--maxw);
  margin: 60px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 6px;
}

.pricing-note__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(234, 124, 58, 0.15);
  color: var(--accent-soft);
  flex-shrink: 0;
}
.pricing-note__icon svg { width: 24px; height: 24px; }

.pricing-note h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
}

.pricing-note p {
  margin: 0;
  color: rgba(250, 247, 242, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

/* ============== CONTACT ============== */
.contact {
  max-width: var(--maxw);
  margin: 0 auto;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-card {
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(250, 247, 242, 0.12);
  border-radius: 6px;
  padding: 32px 28px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.section--cream .contact-card {
  background: var(--bg);
  border-color: var(--line);
}

.contact-card:hover {
  background: rgba(250, 247, 242, 0.07);
  border-color: rgba(234, 124, 58, 0.4);
  transform: translateY(-2px);
}
.section--cream .contact-card:hover {
  background: var(--cream);
  border-color: var(--accent);
}

.contact-card--wide { grid-column: span 3; }

.contact-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 18px;
}
.section--cream .contact-card__label { color: var(--accent); }

.contact-card__name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.contact-card__value {
  font-size: 17px;
  display: block;
  line-height: 1.5;
  transition: color 0.2s;
  color: var(--cream);
}
.section--cream .contact-card__value { color: var(--ink); }

a.contact-card__value:hover { color: var(--accent-soft); }
.section--cream a.contact-card__value:hover { color: var(--accent); }

.contact-card__meta {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.5);
  letter-spacing: 0.04em;
}
.section--cream .contact-card__meta { color: var(--muted); }

/* ============== TEASER (home page CTA cards) ============== */
.teasers {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.teaser {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.teaser:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -28px rgba(26, 22, 18, 0.25);
  border-color: var(--accent);
}

.teaser__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(194, 65, 12, 0.1);
  color: var(--accent);
  margin-bottom: 22px;
}
.teaser__icon svg { width: 22px; height: 22px; stroke-width: 1.5; }

.teaser__title {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.teaser__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px;
  flex: 1;
}

.teaser__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.teaser__link:hover { gap: 12px; }
.teaser__link::after {
  content: "→";
  font-family: var(--display);
}

/* ============== CTA STRIP ============== */
.cta-strip {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(60px, 8vw, 100px) var(--pad);
}

.cta-strip__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-strip__title {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 22ch;
}
.cta-strip__title em { font-style: italic; color: var(--accent-soft); }

.cta-strip__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.65);
  border-top: 1px solid rgba(250, 247, 242, 0.08);
}

.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px var(--pad);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 16px;
  color: var(--cream);
}

.footer__meta {
  margin-left: auto;
  font-size: 13px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__meta a:hover { color: var(--accent-soft); }

.footer__meta .sep { color: rgba(250, 247, 242, 0.25); }

.footer__copy {
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  font-size: 12px;
  color: rgba(250, 247, 242, 0.4);
  letter-spacing: 0.02em;
}

/* ============== REVEAL ============== */
/* Only hidden if JS is active; degrades gracefully without JS */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.services .service:nth-child(2).in { transition-delay: 0.08s; }
.services .service:nth-child(3).in { transition-delay: 0.16s; }
.services .service:nth-child(4).in { transition-delay: 0.24s; }

.pricing .price-card:nth-child(2).in { transition-delay: 0.1s; }
.pricing .price-card:nth-child(3).in { transition-delay: 0.2s; }

.teasers .teaser:nth-child(2).in { transition-delay: 0.08s; }
.teasers .teaser:nth-child(3).in { transition-delay: 0.16s; }

.contact-card:nth-child(2).in { transition-delay: 0.08s; }
.contact-card:nth-child(3).in { transition-delay: 0.16s; }
.contact-card:nth-child(4).in { transition-delay: 0.24s; }

/* ============== RESPONSIVE ============== */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }

  .hero { min-height: auto; }
  .hero__inner { padding-top: 70px; padding-bottom: 70px; }
  .hero__stats { grid-template-columns: 1fr; gap: 24px; }

  .about { grid-template-columns: 1fr; }
  .about__visual { aspect-ratio: auto; min-height: 380px; margin-top: 24px; padding: 32px 16px; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact-card--wide { grid-column: span 1; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__meta { margin-left: 0; }

  .cta-strip__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .nav__cta { padding: 8px 14px; font-size: 12px; }
  .brand__name { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .pricing-note { flex-direction: column; gap: 16px; }
}
