/* ==========================================================================
   tanyaimschweiler.com — main stylesheet
   ========================================================================== */

:root {
  --coral: #ff6b5e;
  --coral-dark: #e5503f;
  --teal: #0e9594;
  --teal-dark: #0a7170;
  --sunshine: #ffc145;
  --ink: #21243d;
  --ink-soft: #565a7c;
  --cream: #fff9f0;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(33, 36, 61, 0.10);
  --shadow-lg: 0 20px 50px rgba(33, 36, 61, 0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; line-height: 1.15; }

img { max-width: 100%; display: block; }

a { color: var(--teal-dark); }

.container { width: min(1100px, 92%); margin-inline: auto; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(33, 36, 61, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .55rem;
}

.logo-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: conic-gradient(var(--coral) 0 33%, var(--sunshine) 33% 66%, var(--teal) 66% 100%);
  flex: none;
}

.nav-links { display: flex; gap: 1.75rem; align-items: center; list-style: none; }

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s;
}

.nav-links a:hover { color: var(--coral); }

.btn {
  display: inline-block;
  padding: .8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(255, 107, 94, 0.35);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 107, 94, 0.45);
}

.btn-primary[disabled] {
  opacity: .6;
  cursor: wait;
  transform: none;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid rgba(33, 36, 61, 0.18);
}

.btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -180px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 193, 69, 0.35), transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -220px; left: -160px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 149, 148, 0.18), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(14, 149, 148, 0.10);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: .85rem;
  padding: .45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--coral);
  position: relative;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .08em;
  height: .28em;
  background: rgba(255, 193, 69, 0.55);
  z-index: -1;
  border-radius: 4px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 32rem;
  margin-bottom: 2.2rem;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Before/after card */
.makeover-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
  transform: rotate(1.5deg);
}

.makeover-card h3 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
  text-align: center;
}

.mock-pair { display: grid; grid-template-columns: 1fr auto 1fr; gap: .8rem; align-items: center; }

.mock {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(33, 36, 61, 0.10);
}

.mock-bar {
  height: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 7px;
}

.mock-bar span { width: 5px; height: 5px; border-radius: 50%; background: rgba(33,36,61,.25); }

.mock-before .mock-bar { background: #d7d2c4; }
.mock-after .mock-bar { background: #eef7f7; }

.mock-body { padding: .7rem; display: flex; flex-direction: column; gap: .45rem; }

.mock-before .mock-body { background: #efe9da; }

.mock-before .line { background: #b9b094; border-radius: 2px; }
.mock-before .line.title { height: 11px; width: 85%; }
.mock-before .line.short { height: 7px; width: 95%; }
.mock-before .line.shorter { height: 7px; width: 70%; }
.mock-before .blocky {
  height: 34px;
  background: repeating-linear-gradient(45deg, #c8bfa4, #c8bfa4 6px, #b9b094 6px, #b9b094 12px);
  border-radius: 2px;
}

.mock-after .mock-body { background: var(--white); }

.mock-after .line { border-radius: 99px; }
.mock-after .line.title { height: 11px; width: 70%; background: linear-gradient(90deg, var(--coral), var(--sunshine)); }
.mock-after .line.short { height: 7px; width: 90%; background: #e4e6f0; }
.mock-after .line.shorter { height: 7px; width: 60%; background: #e4e6f0; }
.mock-after .blocky {
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(14,149,148,.25), rgba(255,193,69,.35));
}

.mock-arrow { font-size: 1.5rem; color: var(--coral); }

.mock-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  margin-top: .5rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.mock-label.before { color: #a09467; }
.mock-label.after { color: var(--teal-dark); }

/* ---------- Sections ---------- */
section { padding: 5rem 0; }

.section-head { text-align: center; max-width: 38rem; margin: 0 auto 3.25rem; }

.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: .9rem; }

.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* Services */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  border-top: 5px solid transparent;
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card:nth-child(3n+1) { border-top-color: var(--coral); }
.card:nth-child(3n+2) { border-top-color: var(--sunshine); }
.card:nth-child(3n)   { border-top-color: var(--teal); }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.card:nth-child(3n+1) .card-icon { background: rgba(255,107,94,.12); }
.card:nth-child(3n+2) .card-icon { background: rgba(255,193,69,.18); }
.card:nth-child(3n)   .card-icon { background: rgba(14,149,148,.12); }

.card h3 { font-size: 1.25rem; margin-bottom: .6rem; }

.card p { color: var(--ink-soft); font-size: .97rem; }

/* Signs strip */
.signs { background: var(--ink); color: var(--white); border-radius: 28px; }

.signs-inner { padding: 4rem 0; }

.signs .section-head h2 { color: var(--white); }
.signs .section-head p { color: rgba(255,255,255,.7); }

.signs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  list-style: none;
}

.signs-list li {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .95rem;
}

.signs-list .mark { color: var(--sunshine); font-size: 1.1rem; flex: none; }

.signs-cta { text-align: center; margin-top: 2.5rem; }

/* Process */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  counter-reset: step;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem 1.8rem;
  box-shadow: var(--shadow);
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -16px; left: 1.4rem;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  padding: .3rem .8rem;
  border-radius: 999px;
  letter-spacing: .05em;
}

.step:nth-child(2)::before { background: var(--coral); }
.step:nth-child(3)::before { background: var(--sunshine); color: var(--ink); }
.step:nth-child(4)::before { background: var(--teal); }

.step h3 { font-size: 1.15rem; margin-bottom: .5rem; }

.step p { color: var(--ink-soft); font-size: .95rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255,107,94,.85), rgba(255,193,69,.85)),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.08) 0 14px, transparent 14px 28px);
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  padding: 2rem;
  transform: rotate(-1.5deg);
}

.about-photo .initials {
  font-family: 'Fraunces', serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-photo small { opacity: .9; font-size: .85rem; }

.about-text h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 1.1rem; }

.about-text p { color: var(--ink-soft); margin-bottom: 1rem; }

.about-points { list-style: none; margin-top: 1.4rem; display: grid; gap: .7rem; }

.about-points li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 500; }

.about-points .mark { color: var(--teal); flex: none; }

/* Contact */
.contact-wrap {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
}

.contact-info h2 { font-size: clamp(1.8rem, 3.2vw, 2.3rem); margin-bottom: 1rem; }

.contact-info p { color: var(--ink-soft); margin-bottom: 1.6rem; }

.contact-line {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .9rem;
  font-weight: 500;
}

.contact-line .pip {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(14,149,148,.12);
  flex: none;
}

form { display: grid; gap: 1rem; }

.field { display: grid; gap: .35rem; }

label { font-weight: 600; font-size: .9rem; }

input, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: .85rem 1rem;
  border: 2px solid rgba(33,36,61,.12);
  border-radius: 12px;
  background: var(--cream);
  transition: border-color .2s;
  width: 100%;
}

input:focus, textarea:focus { outline: none; border-color: var(--teal); }

textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: .82rem; color: var(--ink-soft); }

.form-status {
  display: none;
  padding: .85rem 1.1rem;
  border-radius: 12px;
  font-weight: 500;
  font-size: .95rem;
}

.form-status.success {
  display: block;
  background: rgba(14, 149, 148, 0.12);
  color: var(--teal-dark);
  border: 1px solid rgba(14, 149, 148, 0.3);
}

.form-status.error {
  display: block;
  background: rgba(255, 107, 94, 0.12);
  color: var(--coral-dark);
  border: 1px solid rgba(255, 107, 94, 0.3);
}

/* Honeypot field — hidden from humans, bots fill it in */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Footer */
footer {
  margin-top: 4rem;
  padding: 2.2rem 0;
  border-top: 1px solid rgba(33,36,61,.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: .9rem;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero { padding: 3.5rem 0 4.5rem; }
  .hero-grid, .about-grid, .contact-wrap { grid-template-columns: 1fr; }
  .makeover-card { transform: none; max-width: 480px; margin-inline: auto; }
  .about-photo { max-width: 340px; margin-inline: auto; }

  .menu-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(33,36,61,.08);
    display: none;
  }

  .nav-links.open { display: flex; }
}
