/* ============================================================
   TIMO HEINZ HYPNOSE – Premium Dark Design
   ============================================================ */

:root {
  --gold:         #C9A84C;
  --gold-light:   #E8D5A3;
  --gold-dark:    #9B7D35;
  --gold-glow:    rgba(201, 168, 76, 0.15);
  --gold-border:  rgba(201, 168, 76, 0.25);

  --bg:           #080808;
  --bg-2:         #0d0d0d;
  --bg-card:      #131313;
  --bg-card-h:    #181818;

  --text:         #F0EDE8;
  --text-2:       #A8A39B;
  --text-muted:   #5A5550;
  --border:       rgba(255,255,255,0.07);

  --radius:       4px;
  --radius-lg:    10px;
  --shadow-gold:  0 4px 40px rgba(201,168,76,0.12);
  --trans:        0.3s cubic-bezier(0.4,0,0.2,1);

  --font-h:       'Playfair Display', Georgia, serif;
  --font-b:       'Raleway', system-ui, sans-serif;
  --container:    1180px;
  --sp:           100px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }

a { color: var(--gold); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 {
  font-family: var(--font-h);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }

em { font-style: italic; color: var(--gold); }

.lead {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.85;
}

/* ── Container & Sections ────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

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

.section-header { text-align: center; margin-bottom: 60px; }

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-sub {
  max-width: 580px;
  margin: 14px auto 0;
  color: var(--text-2);
  font-size: 1rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--trans);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #000;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--gold-border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ── Divider Line ────────────────────────────────────────── */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
  opacity: 0.6;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--trans), box-shadow var(--trans);
}
#header.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--trans);
}
.logo:hover { color: var(--gold); }
.logo-symbol { font-size: 1.5rem; color: var(--gold); line-height: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--text-2);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--trans);
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--text); }

.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  padding: 10px 20px;
  margin-left: 8px;
  border-radius: var(--radius);
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: #000 !important;
  transform: translateY(-1px);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all var(--trans);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 130px 28px 90px;
}

/* Animated circles */
.hero-animation {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  animation: circPulse 7s ease-in-out infinite;
}

.c1 { width: 110px;  height: 110px;  border-color: rgba(201,168,76,0.55); animation-delay: 0s;    }
.c2 { width: 250px;  height: 250px;  border-color: rgba(201,168,76,0.30); animation-delay: 0.5s;  }
.c3 { width: 420px;  height: 420px;  border-color: rgba(201,168,76,0.17); animation-delay: 1.0s;  }
.c4 { width: 620px;  height: 620px;  border-color: rgba(201,168,76,0.09); animation-delay: 1.5s;  }
.c5 { width: 840px;  height: 840px;  border-color: rgba(201,168,76,0.05); animation-delay: 2.0s;  }

@keyframes circPulse {
  0%, 100% { transform: scale(1);    }
  50%       { transform: scale(1.05); }
}

.spiral-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--gold), 0 0 50px rgba(201,168,76,0.6);
  animation: dotPulse 3s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 20px var(--gold), 0 0 50px rgba(201,168,76,0.6); }
  50%       { transform: scale(1.6); box-shadow: 0 0 30px var(--gold), 0 0 80px rgba(201,168,76,0.8); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}

.hero h1 { margin-bottom: 28px; }

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-trust {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(201,168,76,0.5);
  border-bottom: 1px solid rgba(201,168,76,0.5);
  transform: rotate(45deg);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 1;   }
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.about-img-frame { position: relative; }

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--gold-glow) 0%, transparent 70%);
}

.portrait-initial {
  font-family: var(--font-h);
  font-size: 7rem;
  color: var(--gold);
  opacity: 0.2;
  font-weight: 700;
  user-select: none;
}

.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-lg);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: var(--shadow-gold);
}
.badge-icon { font-size: 1.6rem; color: var(--gold); }

.about-content h2 { margin-bottom: 20px; }
.about-content .lead { margin-bottom: 18px; }
.about-content p { color: var(--text-2); font-size: 0.97rem; margin-bottom: 14px; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 3px; }
.value-item strong { display: block; margin-bottom: 3px; font-family: var(--font-b); font-weight: 600; font-size: 0.95rem; }
.value-item p { color: var(--text-2); font-size: 0.87rem; margin: 0; line-height: 1.6; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}
.service-card:hover {
  border-color: var(--gold-border);
  background: var(--bg-card-h);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.service-card:hover::after { opacity: 1; }

.service-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { color: var(--text-2); font-size: 0.87rem; line-height: 1.7; margin: 0; }

.service-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 20px;
  align-items: start;
}
.service-card--wide h3 { grid-column: 2; }
.service-card--wide p  { grid-column: 2; }
.service-card--wide .service-icon { grid-row: 1 / 3; font-size: 2.2rem; margin-bottom: 0; margin-top: 4px; }

@media (max-width: 600px) {
  .service-card--wide { grid-template-columns: 1fr; }
  .service-card--wide .service-icon { grid-row: auto; margin-bottom: 14px; }
  .service-card--wide h3, .service-card--wide p { grid-column: 1; }
}

.services-disclaimer {
  margin-top: 44px;
  padding: 18px 24px;
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

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

.process-steps {
  display: flex;
  align-items: flex-start;
  max-width: 880px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  font-family: var(--font-h);
  font-size: 3.8rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.5);
  line-height: 1;
  margin-bottom: 18px;
}

.step-content h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-content p { color: var(--text-2); font-size: 0.9rem; line-height: 1.7; }

.process-connector {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex-shrink: 0;
  margin-top: 32px;
  opacity: 0.35;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--trans);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-h);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 4px; left: 18px;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-card p { color: var(--text-2); font-size: 0.92rem; line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-card footer { font-size: 0.8rem; color: var(--gold); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-2); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item.open { border-color: var(--gold-border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-family: var(--font-b);
  font-size: 0.97rem;
  font-weight: 500;
  gap: 16px;
  transition: color var(--trans);
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--trans);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer p {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 0.93rem;
  line-height: 1.8;
  margin: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 18px; }
.contact-info > p { color: var(--text-2); margin-bottom: 40px; line-height: 1.8; font-size: 0.97rem; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-2);
}
.detail-icon { font-size: 1rem; color: var(--gold); width: 22px; flex-shrink: 0; }
.contact-detail a { color: var(--text-2); }
.contact-detail a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-b);
  font-size: 0.93rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--bg-card); color: var(--text); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

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

.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}
.privacy-row label {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.6;
  font-weight: 400;
  cursor: pointer;
  display: block;
}
.privacy-row label #privacyFormLink {
  color: var(--gold);
  text-decoration: underline;
  cursor: pointer;
}

.link-btn {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
  text-decoration: underline;
  transition: color var(--trans);
}
.link-btn:hover { color: var(--gold-light); }

.form-note { text-align: center; font-size: 0.76rem; color: var(--text-muted); margin-top: 12px; }

.form-success, .form-error {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.9rem;
}
.form-success {
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold);
}
.form-error {
  background: rgba(220,60,60,0.08);
  border: 1px solid rgba(220,60,60,0.3);
  color: #e07070;
}
.form-error a { color: #e07070; text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #040404;
  border-top: 1px solid var(--border);
  padding: 70px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.8fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.75; }

.footer-links h4,
.footer-notice h4 {
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: var(--text-2); font-size: 0.87rem; transition: color var(--trans); }
.footer-links a:hover { color: var(--gold); }

.footer-notice p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.75; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 1900;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 620px;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all var(--trans);
}
.modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
}
.modal-close:hover { color: var(--text); background: var(--border); }

.modal h2 { margin-bottom: 24px; font-size: 1.9rem; }
.modal h3 { font-size: 0.9rem; font-family: var(--font-b); font-weight: 700; color: var(--gold); letter-spacing: 0.05em; margin: 22px 0 6px; text-transform: uppercase; }
.modal p { color: var(--text-2); font-size: 0.9rem; line-height: 1.75; margin-bottom: 10px; }
.modal a { color: var(--gold); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   ACCESSIBILITY – reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE – Tablet
   ============================================================ */
@media (max-width: 960px) {
  :root { --sp: 72px; }

  .navbar { padding: 16px 24px; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--bg-2);
    flex-direction: column;
    align-items: flex-start;
    padding: 86px 28px 40px;
    gap: 2px;
    transition: right var(--trans);
    border-left: 1px solid var(--border);
    box-shadow: -20px 0 50px rgba(0,0,0,0.5);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-link { width: 100%; padding: 13px 16px; font-size: 0.97rem; }
  .nav-cta { margin-left: 0; margin-top: 10px; text-align: center; }
  .menu-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-frame { max-width: 280px; margin: 0 auto; }

  .process-steps { flex-direction: column; align-items: center; gap: 0; }
  .process-connector { width: 1px; height: 36px; background: linear-gradient(180deg, rgba(201,168,76,0.4), transparent); margin: 0; }
  .process-step { padding: 0; max-width: 420px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE – Mobile
   ============================================================ */
@media (max-width: 600px) {
  :root { --sp: 56px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: 10px; }
  .c4, .c5 { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-form { padding: 24px 20px; }
  .about-badge { right: 0; bottom: -16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .modal { padding: 28px 20px; }
}
