/* ─────────────────────────────────────────────────────────────────────────
   teresa.studio
   warm, friendly, modern designer site
   ───────────────────────────────────────────────────────────────────────── */

:root {
  /* palette */
  --bg:           #FFF8F0;
  --bg-2:         #FFFDF9;
  --surface:      #FFFFFF;
  --ink:          #1A1208;
  --ink-soft:     #5C4F46;
  --ink-muted:    #9B8E84;
  --accent:       #E55934;
  --accent-hot:   #D8451F;
  --accent-soft:  #FFE0CC;
  --accent-wash:  #FFF1E6;
  --sage:         #4A6F5A;
  --border:       #ECE0CF;
  --border-soft:  #F5EBDA;

  /* type */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  /* layout */
  --nav-height:   72px;
  --container:    1180px;
  --section-pad:  120px;
  --radius:       16px;
  --radius-sm:    8px;
}

/* ─── reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ─── layout ──────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

@media (max-width: 768px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 20px; }
}

/* ─── typography ──────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}

.section-title em {
  font-style: italic;
  font-weight: 800;
  color: var(--accent);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 13px;
}

.btn--block { width: 100%; }

.btn--primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(229, 89, 52, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ─── mouse trail canvas ──────────────────────────────────────────────── */
.mouse-trail {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: normal;
}

/* ─── NAV ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  background: rgba(255, 250, 245, 0.55);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(180, 160, 140, 0.18);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255, 250, 245, 0.75);
  border-bottom-color: rgba(200, 185, 165, 0.35);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav__logo-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  font-style: italic;
}

.nav__logo-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
}

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 24px;
  min-width: 300px;
  justify-content: flex-end;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .nav.mobile-open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px 32px;
    gap: 20px;
  }
}

/* ─── HERO ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}
.hero__blob--1 {
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  top: -10%;
  right: -15%;
  background: radial-gradient(circle, var(--accent-soft), transparent 65%);
  animation: blob-float-1 14s ease-in-out infinite;
}
.hero__blob--2 {
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  bottom: -10%;
  left: -10%;
  background: radial-gradient(circle, #FFD8C2, transparent 65%);
  animation: blob-float-2 18s ease-in-out infinite;
}

@keyframes blob-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-6%, 8%) scale(1.08); }
}
@keyframes blob-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(8%, -6%) scale(1.1); }
}

.hero__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.hero .container {
  position: relative;
  max-width: 1100px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  margin-bottom: 32px;
  animation: rise 0.7s ease-out both;
}

.hero__star {
  color: var(--accent);
  animation: spin 8s linear infinite;
  display: inline-block;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 8.5vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  animation: rise 0.9s ease-out 0.1s both;
}
.hero__title em {
  font-style: italic;
  font-weight: 900;
  color: var(--accent);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.hero__title-sub {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.55em;
  line-height: 1;
  margin-top: 12px;
  position: relative;
}
.hero__title-sub::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 8px;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero__sub {
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 0 40px;
  line-height: 1.6;
  animation: rise 1s ease-out 0.3s both;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: rise 1.1s ease-out 0.4s both;
}

.hero__meta {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  animation: rise 1.2s ease-out 0.5s both;
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.hero__stat span {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1.5px solid var(--ink-muted);
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.hero__scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--ink-muted);
  border-radius: 2px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(-4px); opacity: 0.4; }
  50%      { transform: translateY(4px); opacity: 1; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding-bottom: 60px; }
  .hero__scroll { display: none; }
  .hero__meta { gap: 24px; }
}

/* ─── BACKGROUND ORBS ────────────────────────────────────────────────── */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
.bg-orb--1 {
  width: 55vw;
  height: 55vw;
  top: -8%;
  right: -12%;
  background: radial-gradient(circle, rgba(255, 210, 170, 0.38), transparent 68%);
  animation: orb-drift-1 20s ease-in-out infinite;
}
.bg-orb--2 {
  width: 42vw;
  height: 42vw;
  top: 38%;
  left: -10%;
  background: radial-gradient(circle, rgba(180, 215, 190, 0.28), transparent 68%);
  animation: orb-drift-2 26s ease-in-out infinite;
}
.bg-orb--3 {
  width: 48vw;
  height: 48vw;
  bottom: -5%;
  right: 15%;
  background: radial-gradient(circle, rgba(255, 225, 195, 0.32), transparent 68%);
  animation: orb-drift-3 22s ease-in-out infinite;
}
@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-4%, 6%) scale(1.06); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(5%, -5%) scale(1.08); }
}
@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-3%, -4%) scale(1.05); }
}

/* ─── STATEMENT BAND ─────────────────────────────────────────────────── */
.statement-band {
  background: var(--ink);
  padding: clamp(72px, 11vw, 130px) clamp(24px, 6vw, 80px);
  overflow: hidden;
  position: relative;
}
.statement-band__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.statement-band__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 1;
}
.statement-band__text {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 10.5vw, 9.5rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--bg);
  margin: 0;
}
.statement-band__text em {
  font-style: italic;
  color: var(--accent);
}
.sb-line {
  display: block;
  will-change: transform;
}
.statement-band__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  align-self: flex-end;
}

/* ─── SERVICES ────────────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px)  { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .services__grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-soft);
  box-shadow: 0 24px 50px -24px rgba(229, 89, 52, 0.25);
}
.service-card:hover::before {
  transform: translateX(0);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--accent-wash);
  color: var(--accent);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.service-card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 15px;
}

/* ─── PROCESS ─────────────────────────────────────────────────────────── */
.process { background: var(--bg-2); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
@media (max-width: 900px) { .process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process__steps { grid-template-columns: 1fr; } }

.process__step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.process__step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.process__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.process__step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}

.process__step p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0 0 16px;
}

.process__time {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-wash);
  padding: 5px 10px;
  border-radius: 100px;
}

/* ─── PRICING ─────────────────────────────────────────────────────────── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 32px;
}
@media (max-width: 960px) { .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
}

.price-card--featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: scale(1.04);
}
.price-card--featured:hover {
  transform: scale(1.04) translateY(-6px);
}
@media (max-width: 960px) {
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-card__head {
  margin-bottom: 24px;
}
.price-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.price-card--featured .price-card__name { color: var(--bg); }

.price-card__tag {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}
.price-card--featured .price-card__tag { color: rgba(255, 248, 240, 0.6); }

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  font-family: var(--font-display);
}
.price-card__from {
  font-size: 14px;
  color: var(--ink-muted);
}
.price-card--featured .price-card__from { color: rgba(255, 248, 240, 0.5); }
.price-card__price strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.price-card__currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-soft);
}
.price-card--featured .price-card__currency { color: rgba(255, 248, 240, 0.7); }

.price-card__desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-card--featured .price-card__desc {
  color: rgba(255, 248, 240, 0.75);
  border-bottom-color: rgba(255, 248, 240, 0.15);
}

.price-card__features {
  margin: 0 0 32px;
  flex-grow: 1;
}
.price-card__features li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.5;
}
.price-card__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 16px;
  height: 16px;
  background: var(--accent-wash);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23E55934' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8l3 3 5-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.price-card--featured .price-card__features li::before {
  background-color: rgba(229, 89, 52, 0.15);
}

.pricing__note {
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 16px auto;
  max-width: 720px;
}
.pricing__note strong { color: var(--ink); }
.pricing__note--soft {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
}

/* ─── ABOUT ───────────────────────────────────────────────────────────── */
.about { background: var(--bg-2); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
}

.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 320px;
  justify-self: center;
}

.about__photo {
  width: 100%;
  height: 100%;
  border-radius: 42% 58% 65% 35% / 45% 55% 45% 55%;
  overflow: hidden;
  position: relative;
  animation: blob-morph 10s ease-in-out infinite;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 42% 58% 65% 35% / 45% 55% 45% 55%; }
  33%       { border-radius: 60% 40% 45% 55% / 55% 40% 60% 45%; }
  66%       { border-radius: 35% 65% 55% 45% / 60% 45% 55% 40%; }
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.about__sticker {
  position: absolute;
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-style: italic;
  white-space: nowrap;
}
.about__sticker strong {
  font-weight: 800;
  color: var(--accent);
  font-style: italic;
}
.about__sticker--1 {
  top: -12px;
  left: -24px;
  transform: rotate(-8deg);
  animation: wobble 3s ease-in-out infinite;
}
.about__sticker--2 {
  bottom: 24px;
  right: -32px;
  background: var(--accent);
  transform: rotate(6deg);
  animation: wobble 3s ease-in-out infinite 0.5s reverse;
}
@keyframes wobble {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-6deg) translateY(-4px); }
}

.about__text .section-title { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 24px; }
.about__text p {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin: 0 0 16px;
  line-height: 1.7;
}

.about__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.badge {
  display: inline-block;
  padding: 7px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: transform 0.2s, border-color 0.2s;
}
.badge:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── CONTACT ─────────────────────────────────────────────────────────── */
.contact {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, var(--accent), transparent 60%);
  opacity: 0.25;
  filter: blur(80px);
  pointer-events: none;
}

.contact__inner {
  text-align: center;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.contact .eyebrow {
  color: var(--accent);
  margin-inline: auto;
  justify-content: center;
}
.contact .eyebrow::before {
  background: var(--accent);
}

.contact__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
}
.contact__title em {
  font-style: italic;
  color: var(--accent);
}

.contact__sub {
  font-size: 18px;
  color: rgba(255, 248, 240, 0.7);
  max-width: 540px;
  margin: 0 auto 48px;
}

.contact__methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .contact__methods { grid-template-columns: 1fr; }
}

.contact__method {
  background: rgba(255, 248, 240, 0.04);
  border: 1px solid rgba(255, 248, 240, 0.1);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 16px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.contact__method:hover {
  background: rgba(229, 89, 52, 0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.contact__method svg {
  margin-left: auto;
  color: var(--accent);
  transition: transform 0.3s;
}
.contact__method:hover svg {
  transform: translateX(4px);
}

.contact__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.5);
  display: block;
  margin-bottom: 4px;
}
.contact__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  display: block;
}

.contact__hours {
  font-size: 13px;
  color: rgba(255, 248, 240, 0.5);
  letter-spacing: 0.04em;
}

/* ─── DECORATIVE SKETCHES ────────────────────────────────────────────── */
.deco {
  position: absolute;
  pointer-events: none;
}
.deco--browser {
  width: min(300px, 28vw);
  stroke: var(--ink);
  stroke-width: 1.2;
  opacity: 0.07;
  bottom: 72px;
  right: -16px;
  transform: rotate(6deg);
}
.deco--cursor {
  width: 54px;
  stroke: var(--accent);
  stroke-width: 1.6;
  opacity: 0.22;
  top: 72px;
  right: 5%;
  transform: rotate(-10deg);
}
.deco--phone {
  width: 76px;
  stroke: var(--ink);
  stroke-width: 1.2;
  opacity: 0.07;
  bottom: 80px;
  left: 3%;
  transform: rotate(-7deg);
}
.deco--pencil {
  width: 44px;
  stroke: var(--accent);
  stroke-width: 1.4;
  opacity: 0.22;
  top: 28%;
  left: 5%;
  transform: rotate(14deg);
}
.deco--bezier {
  width: 120px;
  stroke: var(--accent);
  stroke-width: 1.3;
  opacity: 0.18;
  top: 10%;
  right: 22%;
  transform: rotate(-6deg);
}
.deco--asterisk {
  width: 52px;
  stroke: var(--accent);
  stroke-width: 1.6;
  opacity: 0.16;
  bottom: 60px;
  left: 4%;
  transform: rotate(18deg);
}
.deco--code {
  width: 140px;
  stroke: var(--ink);
  stroke-width: 1.4;
  opacity: 0.08;
  bottom: 60px;
  right: 4%;
  transform: rotate(-5deg);
}
.deco--ruler {
  width: 170px;
  stroke: var(--ink);
  stroke-width: 1.2;
  opacity: 0.07;
  bottom: 50px;
  right: 3%;
  transform: rotate(-12deg);
}
.deco--terminal {
  width: 130px;
  stroke: var(--ink);
  stroke-width: 1.2;
  opacity: 0.08;
  top: 70px;
  left: 4%;
  transform: rotate(-6deg);
}
.deco--layers {
  width: 200px;
  stroke: var(--ink);
  stroke-width: 1.2;
  opacity: 0.07;
  top: 70px;
  left: 3%;
  transform: rotate(8deg);
}
.deco--database {
  width: 68px;
  stroke: var(--ink);
  stroke-width: 1.2;
  opacity: 0.07;
  top: 80px;
  right: 4%;
  transform: rotate(9deg);
}
.deco--responsive {
  width: 160px;
  stroke: var(--ink);
  stroke-width: 1.2;
  opacity: 0.07;
  top: 50px;
  left: 2%;
  transform: rotate(-5deg);
}
.deco--bubble {
  width: 120px;
  stroke: var(--ink);
  stroke-width: 1.2;
  opacity: 0.07;
  top: 60px;
  right: 4%;
  transform: rotate(4deg);
}
/* ─── language switcher ──────────────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--ink);
  opacity: 0.28;
  padding: 4px 6px;
  border-radius: 4px;
  transition: opacity 0.2s;
  width: 28px;
  text-align: center;
}
.lang-btn:hover { opacity: 0.6; }
.lang-btn.active {
  opacity: 0.85;
  background: rgba(0,0,0,0.07);
}

@media (max-width: 900px) {
  .deco { display: none; }
}

/* ─── BACK TO TOP ────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
  border: 1px solid rgba(255, 248, 240, 0.12);
}
.back-to-top:hover {
  background: var(--accent);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 768px) {
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255, 248, 240, 0.6);
  padding: 32px 0;
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  font-size: 13px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.footer__brand em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 248, 240, 0.5);
}

.footer__copy { margin: 0; }
.footer__heart { color: var(--accent); }

.footer__partner { margin: 0; }
.footer__partner a {
  color: var(--bg);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
.footer__partner a:hover { color: var(--accent); }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children of grids */
.services__grid .reveal:nth-child(1) { transition-delay: 0s; }
.services__grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services__grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.services__grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.services__grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.services__grid .reveal:nth-child(6) { transition-delay: 0.40s; }

.process__steps .reveal:nth-child(1) { transition-delay: 0s; }
.process__steps .reveal:nth-child(2) { transition-delay: 0.1s; }
.process__steps .reveal:nth-child(3) { transition-delay: 0.2s; }
.process__steps .reveal:nth-child(4) { transition-delay: 0.3s; }

.pricing__grid .reveal:nth-child(1) { transition-delay: 0s; }
.pricing__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.pricing__grid .reveal:nth-child(3) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
