*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --accent: #B8860B;
    --accent2: #8B6914;
    --accent-light: #D4A843;
    --bg: #F5EDE8;
    --bg2: #EFE4DE;
    --bg3: #E6D6CE;
    --text: #0F0A04;
    --text-mid: #2A1F0E;
    --text-muted: #4A3F30;
    --border: rgba(184,134,11,0.2);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  .stars-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  /* LANG */
  .lang-toggle {
    position: fixed;
    top: 2rem; right: 2rem;
    z-index: 999;
    display: flex;
    border: 1px solid var(--border);
  }
  .lang-btn {
    background: transparent; border: none;
    color: var(--text-muted);
    font-family: 'Cinzel', serif;
    font-size: 10px; letter-spacing: 0.15em;
    padding: 8px 14px; cursor: pointer;
    transition: all 0.3s;
  }
  .lang-btn.active { background: var(--accent); color: var(--bg); }
  .lang-btn:hover:not(.active) { color: var(--accent); }

  nav { position: fixed; top: 2rem; left: 2rem; z-index: 999; display: flex; align-items: center; gap: 1.5rem; }
  .nav-logo {
    font-family: 'Cinzel', serif;
    font-size: 14px; letter-spacing: 0.3em;
    color: var(--accent); text-decoration: none;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid; place-items: center;
    position: relative; overflow: hidden;
    padding: 0 2rem;
    max-width: 100%;
  }

  .hero-nebula {
    display: none;
  }

  .hero-orbit-wrap {
    position: absolute;
    top: 50%; left: 50%;
    width: 700px; height: 700px;
    margin: -350px 0 0 -350px;
    perspective: 900px;
    transform-style: preserve-3d;
  }

  .hero-orbit {
    width: 700px; height: 700px;
    opacity: 0.1;
    animation: rotate3d 25s linear infinite;
    transform-style: preserve-3d;
  }

  @keyframes rotate3d {
    0%   { transform: rotateY(0deg) rotateX(20deg); }
    50%  { transform: rotateY(180deg) rotateX(25deg); }
    100% { transform: rotateY(360deg) rotateX(20deg); }
  }

  @keyframes fadeup {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-content {
    text-align: center;
    position: relative; z-index: 2;
    padding: 2rem;
  }

  .hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 10px; letter-spacing: 0.45em;
    color: var(--accent); margin-bottom: 2rem;
    text-transform: uppercase;
    animation: fadeup 1.2s 0.2s ease both;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-weight: 300; line-height: 0.9;
    letter-spacing: -0.02em; margin-bottom: 0.3em;
    color: var(--text);
    animation: fadeup 1.2s 0.3s ease both;
  }

  .hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-style: italic; font-weight: 300;
    color: var(--text-mid); margin-bottom: 3rem;
    animation: fadeup 1.2s 0.4s ease both;
  }

  .hero-divider {
    width: 80px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 0 auto 3rem;
    animation: fadeup 1.2s 0.5s ease both;
  }

  .hero-desc {
    max-width: 460px; margin: 0 auto 3.5rem;
    font-size: 1rem; line-height: 1.9;
    color: var(--text-muted);
    animation: fadeup 1.2s 0.6s ease both;
  }

  .cta-group {
    display: flex; gap: 1rem;
    justify-content: center; flex-wrap: wrap;
    animation: fadeup 1.2s 0.7s ease both;
  }

  .btn-primary {
    font-family: 'Cinzel', serif; font-size: 10px;
    letter-spacing: 0.25em; text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #B8860B, #D4A843);
    color: #F5EDE8; border: none; cursor: pointer;
    text-decoration: none; transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 2px 20px rgba(184,134,11,0.25);
  }
  .btn-primary:hover { opacity: 0.85; transform: translateY(-2px); box-shadow: 0 4px 28px rgba(184,134,11,0.35); }

  .btn-secondary {
    font-family: 'Cinzel', serif; font-size: 10px;
    letter-spacing: 0.25em; text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: transparent; color: #B8860B;
    border: 1px solid rgba(184,134,11,0.5);
    cursor: pointer; text-decoration: none;
    transition: all 0.3s; display: inline-block;
  }
  .btn-secondary:hover { border-color: #B8860B; transform: translateY(-2px); background: rgba(184,134,11,0.06); }

  .scroll-hint {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    color: var(--text-muted);
    font-family: 'Cinzel', serif;
    font-size: 9px; letter-spacing: 0.3em;
    animation: fadeup 1.2s 1s ease both;
  }

  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: scrollpulse 2s ease-in-out infinite;
  }

  @keyframes scrollpulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

  .gold-rule {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
  }

  .section-label {
    font-family: 'Cinzel', serif; font-size: 10px;
    letter-spacing: 0.5em; color: var(--accent);
    text-transform: uppercase; margin-bottom: 2rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .section-label::after {
    content: ''; height: 1px; width: 60px;
    background: var(--border);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300; line-height: 1.1;
    margin-bottom: 1.5rem; color: var(--text);
  }
  .section-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* ABOUT */
  .about-wrap { padding: 8rem 2rem; max-width: 1100px; margin: 0 auto; }

  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
  }

  .about-text p {
    font-size: 1.05rem; line-height: 1.9;
    color: var(--text-muted); margin-bottom: 1.5rem;
  }
  .about-text p strong { color: var(--text-mid); font-weight: 400; }

  .about-visual {
    position: relative; aspect-ratio: 3/4;
    background: var(--bg2); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .about-visual::before {
    display: none;
  }

  .about-corner {
    position: absolute; width: 28px; height: 28px;
    border-color: var(--accent); border-style: solid; opacity: 0.4;
  }
  .about-corner.tl { top: 20px; left: 20px; border-width: 1px 0 0 1px; }
  .about-corner.tr { top: 20px; right: 20px; border-width: 1px 1px 0 0; }
  .about-corner.bl { bottom: 20px; left: 20px; border-width: 0 0 1px 1px; }
  .about-corner.br { bottom: 20px; right: 20px; border-width: 0 1px 1px 0; }

  /* SERVICES */
  .services-section { background: var(--bg2); padding: 8rem 2rem; }
  .services-inner { max-width: 1100px; margin: 0 auto; }

  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
    border: 1px solid var(--border); margin-top: 4rem;
  }

  .service-card {
    background: var(--bg2); padding: 3rem 2.5rem;
    transition: background 0.3s;
    position: relative; overflow: hidden;
  }
  .service-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
    transform: scaleX(0); transition: transform 0.4s;
  }
  .service-card:hover::after { transform: scaleX(1); }
  .service-card:hover { background: var(--bg3); }

  .service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem; font-weight: 300;
    color: var(--border); line-height: 1;
    margin-bottom: 1.5rem; transition: color 0.3s;
  }
  .service-card:hover .service-number { color: rgba(46,77,123,0.2); }

  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 400;
    margin-bottom: 1rem; line-height: 1.2; color: var(--text);
  }
  .service-desc {
    font-size: 0.9rem; line-height: 1.8;
    color: var(--text-muted); margin-bottom: 1.5rem;
  }
  .service-price {
    font-family: 'Cinzel', serif;
    font-size: 10px; letter-spacing: 0.2em; color: var(--accent);
  }

  /* PHILOSOPHY */
  .philosophy {
    text-align: center; padding: 10rem 2rem;
    max-width: 800px; margin: 0 auto;
  }
  .philosophy-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.7rem);
    font-weight: 300; font-style: italic;
    line-height: 1.55; color: var(--text);
    margin: 3rem 0; position: relative;
  }
  .philosophy-quote::before {
    content: '"'; position: absolute;
    top: -1rem; left: -2rem;
    font-size: 6rem; color: var(--accent2);
    opacity: 0.15; font-style: normal; line-height: 1;
  }
  .philosophy-attr {
    font-family: 'Cinzel', serif; font-size: 10px;
    letter-spacing: 0.4em; color: var(--text-muted); text-transform: uppercase;
  }

  /* TESTIMONIALS */
  .testimonials-wrap { padding: 8rem 2rem; max-width: 1100px; margin: 0 auto; }
  .testimonials-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; margin-top: 4rem;
  }
  .testimonial {
    border: 1px solid var(--border); padding: 2.5rem;
    background: var(--bg2); position: relative;
  }
  .testimonial::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; color: var(--accent2); opacity: 0.2;
    position: absolute; top: 0.8rem; left: 1.5rem; line-height: 1;
  }
  .testimonial-text {
    font-size: 0.95rem; line-height: 1.9;
    color: var(--text-muted); margin-bottom: 1.5rem; margin-top: 1rem;
  }
  .testimonial-author {
    font-family: 'Cinzel', serif; font-size: 10px;
    letter-spacing: 0.3em; color: var(--accent); text-transform: uppercase;
  }

  /* CTA */
  .cta-section {
    background: var(--bg2); padding: 10rem 2rem;
    text-align: center; position: relative; overflow: hidden;
  }
  .cta-section::before {
    display: none;
  }
  .cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300; line-height: 1.1;
    margin-bottom: 1.5rem; color: var(--text);
  }
  .cta-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .cta-sub {
    font-size: 1rem; color: var(--text-muted); line-height: 1.8;
    margin-bottom: 3rem; max-width: 460px;
    margin-left: auto; margin-right: auto;
  }

  footer {
    padding: 4rem 2rem; text-align: center;
    border-top: 1px solid var(--border); background: var(--bg);
  }
  .footer-logo {
    font-family: 'Cinzel', serif; font-size: 16px;
    letter-spacing: 0.45em; color: var(--accent);
    margin-bottom: 1.5rem; display: block;
  }
  .footer-links {
    display: flex; gap: 2rem; justify-content: center;
    margin-bottom: 2rem; flex-wrap: wrap;
  }
  .footer-links a {
    font-family: 'Cinzel', serif; font-size: 10px;
    letter-spacing: 0.3em; color: var(--text-muted);
    text-decoration: none; text-transform: uppercase;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--accent); }
  .footer-copy { font-size: 0.8rem; color: var(--text-muted); opacity: 0.5; }

  @media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
  }

  [data-lang] { display: none; }
  body.lang-en [data-lang="en"] { display: block; }
  body.lang-hu [data-lang="hu"] { display: block; }
  body.lang-en [data-lang-inline="en"] { display: inline; }
  body.lang-hu [data-lang-inline="hu"] { display: inline; }
  [data-lang-inline] { display: none; }

  /* MERKABA CANVAS */
  #merkaba {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; opacity: 0.12; z-index: 1;
  }

  /* PHILOSOPHY DIVIDER */
  .philosophy-rule {
    width: 80px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 2rem auto;
  }

  /* SECTION LABEL CENTERED */
  .section-label--center { justify-content: center; }

  /* CTA GROUP inside cta-section has no extra top margin */
  .cta-section .cta-group { margin-top: 0; }

  /* SOCIAL ICONS */
  .social-icons {
    display: flex; gap: 1.5rem;
    justify-content: center; margin-bottom: 2rem;
  }
  .social-link {
    color: var(--text-muted); transition: color 0.3s;
    text-decoration: none; display: flex; align-items: center;
  }
  .social-link:hover { color: var(--accent); }
  .social-link svg { pointer-events: none; }

  /* CONTACT BOX */
  .contact-box {
    max-width: 500px; margin: 0 auto 3rem;
    padding: 2.5rem; border: 1px solid var(--border);
    background: var(--bg2);
  }
  .contact-box .section-label {
    justify-content: center; margin-bottom: 1.5rem;
  }
  .contact-intro {
    font-size: 0.95rem; color: var(--text-muted);
    margin-bottom: 1.5rem; text-align: center; line-height: 1.8;
  }
  .contact-form {
    display: flex; flex-direction: column; gap: 0.8rem;
  }
  .form-field {
    padding: 0.9rem 1rem; background: var(--bg);
    border: 1px solid var(--border); color: var(--text);
    font-family: 'Jost', sans-serif; font-size: 0.9rem;
    outline: none; width: 100%;
  }
  textarea.form-field { resize: none; }
  .contact-form .btn-primary {
    text-align: center; margin-top: 0.5rem;
  }

  /* ABOUT PHOTO */
  .about-photo {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    position: relative; z-index: 1;
  }

  /* ── ABOUT PAGE ─────────────────────────────────────────────────────────── */

  .nav-back {
    font-family: 'Cinzel', serif; font-size: 10px;
    letter-spacing: 0.2em; color: var(--text-muted);
    text-decoration: none; transition: color 0.3s;
  }
  .nav-back:hover { color: var(--accent); }

  .about-hero {
    min-height: 70vh;
    padding: 8rem 2rem 4rem;
    text-align: center;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(184,134,11,0.05) 0%, transparent 70%);
  }

  .hero-z { position: relative; z-index: 2; }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-style: italic; color: var(--text-mid);
    max-width: 600px; margin: 0 auto;
    line-height: 1.7;
    animation: fadeup 1s 0.5s ease both;
  }

  /* PHOTO SECTION */
  .photo-section {
    max-width: 500px; margin: 0 auto;
    padding: 0 2rem 6rem;
    position: relative;
  }

  .photo-wrap {
    position: relative;
    border: 1px solid var(--border);
  }

  .photo-wrap img {
    width: 100%; display: block;
    object-fit: cover; object-position: center top;
  }

  .photo-corner {
    position: absolute; width: 28px; height: 28px;
    border-color: var(--accent); border-style: solid; opacity: 0.5;
  }
  .photo-corner.tl { top: -8px; left: -8px; border-width: 1px 0 0 1px; }
  .photo-corner.tr { top: -8px; right: -8px; border-width: 1px 1px 0 0; }
  .photo-corner.bl { bottom: -8px; left: -8px; border-width: 0 0 1px 1px; }
  .photo-corner.br { bottom: -8px; right: -8px; border-width: 0 1px 1px 0; }

  /* CONTENT SECTION */
  .content-section {
    max-width: 780px; margin: 0 auto;
    padding: 6rem 2rem;
  }

  .prose p {
    font-size: 1.05rem; line-height: 1.95;
    color: var(--text-muted); margin-bottom: 1.4rem;
  }
  .prose p strong { color: var(--text-mid); font-weight: 400; }

  .prose blockquote {
    border-left: 2px solid var(--accent);
    padding: 1rem 1.5rem; margin: 2rem 0; background: var(--bg2);
  }
  .prose blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-style: italic;
    color: var(--text-mid); margin: 0;
  }

  .prose .big-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic; font-weight: 300;
    line-height: 1.5; color: var(--text-mid);
    text-align: center; padding: 3rem 0; position: relative;
  }
  .prose .big-quote::before {
    content: '\201C';
    position: absolute; top: 1rem; left: 0;
    font-size: 5rem; color: var(--accent); opacity: 0.15; line-height: 1;
  }

  /* METHODS GRID */
  .methods-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 1px; background: var(--border);
    border: 1px solid var(--border); margin: 4rem 0;
  }

  .method-card {
    background: var(--bg2); padding: 2.5rem 2rem;
    transition: background 0.3s; position: relative;
  }
  .method-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0); transition: transform 0.4s;
  }
  .method-card:hover::after { transform: scaleX(1); }
  .method-card:hover { background: var(--bg3); }

  .method-icon { font-size: 1.8rem; margin-bottom: 1rem; }
  .method-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400;
    color: var(--text); margin-bottom: 0.8rem;
  }
  .method-desc { font-size: 0.9rem; line-height: 1.8; color: var(--text-muted); }

  .bridge-photo {
    width: 100%; display: block;
    object-fit: cover; object-position: center top;
  }

  @media (max-width: 768px) {
    .about-hero .hero-title { font-size: 3rem; }
    .bridge-grid { grid-template-columns: 1fr !important; }
  }
