/* ===================================================
   zakel.at — Modernized Design
   Aesthetic: Refined Luxury Dark Editorial
   =================================================== */

/* ── Variables ── */
:root {
  --bg:          #0c0d10;
  --bg-alt:      #111318;
  --bg-card:     #16181f;
  --border:      rgba(255,255,255,0.07);
  --gold:        #c9a96e;
  --gold-light:  #e8c98a;
  --gold-dim:    rgba(201,169,110,0.15);
  --white:       #f4f1eb;
  --muted:       rgba(244,241,235,0.5);
  --text:        rgba(244,241,235,0.85);
  --heading:     #f4f1eb;
  --accent:      #c9a96e;
  --radius:      4px;
  --radius-lg:   10px;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Outfit', system-ui, sans-serif;
  --trans:       0.35s cubic-bezier(0.4,0,0.2,1);
  --nav-h:       68px;
}

/* ── 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-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--trans); }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4 {
  font-family: var(--font-serif);
  color: var(--heading);
  font-weight: 400;
  line-height: 1.15;
}
h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.35rem; }
em { font-style: italic; color: var(--gold); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--trans), transform 0.7s var(--trans);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Utilities ── */
.mt-lg { margin-top: 1.5rem; }
.mt-sm { margin-top: 0.75rem; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--trans);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: #0c0d10;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.full-width { display: block; width: 100%; text-align: center; }

/* ── Section decoration ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header {
  margin-bottom: 3rem;
}

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12,13,16,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: all var(--trans);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
}
.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold-dim) !important;
  color: var(--gold) !important;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201,169,110,0.25) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: #0c0d10 !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--trans);
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 0 8vw;
  padding: 4rem 2rem;
}
.hero-overline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition-delay: 0.1s;
}
.hero-title {
  display: block;
  margin-bottom: 1.5rem;
  transition-delay: 0.2s;
}
.hero-title span {
  display: block;
  color: var(--heading);
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  transition-delay: 0.3s;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  transition-delay: 0.4s;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
#about {
  padding: 7rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: start;
}
.meta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.meta-item {
  display: flex;
  flex-direction: column;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.meta-item:last-child { border-bottom: none; }
.meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.meta-value {
  font-size: 0.9rem;
  color: var(--white);
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.2);
}

/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
#services {
  padding: 7rem 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.service-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.service-card h3 { margin-bottom: 0.75rem; }

/* ── Fees ── */
.fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.fee-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color var(--trans), transform var(--trans);
}
.fee-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}
.fee-featured {
  border-color: rgba(201,169,110,0.4);
  background: linear-gradient(160deg, rgba(201,169,110,0.07) 0%, var(--bg-card) 60%);
}
.fee-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0c0d10;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}
.fee-label {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.fee-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--heading);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.fee-currency { font-size: 1.4rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.fee-period { font-size: 1rem; color: var(--muted); }
.fee-list {
  margin-bottom: 2rem;
}
.fee-list li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fee-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════
   CAREER / TIMELINE
═══════════════════════════════ */
#career {
  padding: 7rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.3;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -2.38rem;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg-alt);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.timeline-date {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 0.3rem;
  font-weight: 500;
}
.timeline-content h3 { margin-bottom: 0.2rem; font-size: 1.2rem; }
.timeline-role {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
#testimonials {
  padding: 7rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: border-color var(--trans), transform var(--trans);
}
.testimonial-card:hover {
  border-color: rgba(201,169,110,0.25);
  transform: translateY(-3px);
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1rem;
}
.testimonial-card > p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--font-serif);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}
.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.testimonial-author span {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
  line-height: 1.4;
}

/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
#contact {
  padding: 7rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-text h2 { margin-bottom: 1rem; }
.contact-text > p { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon { font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.15rem; font-family: var(--font-sans); font-weight: 500; }
.contact-item a, .contact-item span { font-size: 0.9rem; color: var(--text); }
.contact-item a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color var(--trans);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(244,241,235,0.25); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(201,169,110,0.4);
}

/* Form feedback message */
.form-msg {
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  display: none;
}
.form-msg:not(:empty) { display: block; }
.form-msg--ok  { background: rgba(100,200,120,0.1); color: #6ec87a; border: 1px solid rgba(100,200,120,0.25); }
.form-msg--err { background: rgba(220,80,80,0.1);   color: #e07070; border: 1px solid rgba(220,80,80,0.25); }

═══════════════════════════════ */
footer {
  padding: 3rem 0 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.footer-brand .brand-mark {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.footer-nav, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a, .footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color var(--trans);
}
.footer-nav a:hover, .footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(244,241,235,0.3); }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .fees-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .timeline-date { padding-top: 0; }
}

@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(12,13,16,0.97); padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  #navbar { position: fixed; }
  .hero-content { margin: 0; padding: 2rem; }
  #hero { min-height: 100svh; }
}
