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

  :root {
    --gold: #b8965a;
    --gold-light: #d4b07a;
    --cream: #f4ede0;
    --ink: #16120d;
    --ink-soft: #2e2820;
    --mist: #8a7e6e;
    --divider: rgba(184,150,90,0.25);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--ink);
    color: var(--cream);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 60px;
    transition: background .4s, padding .4s;
  }
  nav.scrolled {
    background: rgba(22,18,13,0.94);
    backdrop-filter: blur(12px);
    padding: 14px 60px;
    border-bottom: 1px solid var(--divider);
  }
  .nav-logo img { height: 42px; filter: brightness(0) invert(1); opacity: .9; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: 'Jost', sans-serif;
    font-weight: 300; font-size: 12px;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--cream); text-decoration: none; opacity: .8;
    transition: opacity .2s, color .2s;
  }
  .nav-links a:hover { opacity: 1; color: var(--gold-light); }
  .nav-right {
    display: flex; align-items: center; gap: 20px;
    font-size: 12px; letter-spacing: .12em;
  }
  .nav-phone { color: var(--gold-light); text-decoration: none; font-weight: 400; }
  .lang-switch { display: flex; gap: 8px; align-items: center; }
  .lang-switch button {
    background: none; border: none;
    color: var(--mist); cursor: pointer; font-family: 'Jost', sans-serif;
    font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
    transition: color .2s; padding: 0;
  }
  .lang-switch button:hover,
  .lang-switch button.active { color: var(--gold-light); }
  .lang-switch span { color: var(--divider); }

  /* ── HERO ── */
  #hero {
    position: relative; height: 100vh; min-height: 640px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('/assets/restorator/www.restorator.eu/wp-content/uploads/2018/09/main.jpg');
    background-size: cover; background-position: center 30%;
    transform: scale(1.06);
    animation: heroZoom 18s ease-in-out infinite alternate;
  }
  @keyframes heroZoom {
    from { transform: scale(1.06) translateY(0); }
    to   { transform: scale(1.00) translateY(-16px); }
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      160deg,
      rgba(22,18,13,0.72) 0%,
      rgba(22,18,13,0.38) 50%,
      rgba(22,18,13,0.78) 100%
    );
  }
  .hero-content {
    position: relative; text-align: center; padding: 0 20px;
    animation: fadeUp .9s ease both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 22px;
    animation: fadeUp .9s .15s ease both;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 6.8vw, 88px);
    font-weight: 300; line-height: 1;
    letter-spacing: .06em;
    color: var(--cream);
    animation: fadeUp .9s .25s ease both;
  }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-sub {
    margin-top: 24px;
    font-weight: 200; font-size: 15px;
    letter-spacing: .22em; text-transform: uppercase;
    color: rgba(244,237,224,0.72);
    animation: fadeUp .9s .38s ease both;
  }
  .hero-sub span { color: var(--gold); margin: 0 10px; }
  .hero-cta {
    margin-top: 44px;
    display: inline-block; padding: 14px 42px;
    border: 1px solid var(--gold);
    color: var(--gold-light); text-decoration: none;
    font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
    transition: background .3s, color .3s;
    animation: fadeUp .9s .5s ease both;
  }
  .hero-cta:hover { background: var(--gold); color: var(--ink); }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: fadeUp .9s .7s ease both;
  }
  .hero-scroll span {
    display: block;
    text-align: center;
    font-size: 9px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--mist);
  }
  .scroll-line {
    width: 1px; height: 48px; background: var(--gold);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%,100% { opacity: .4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(.6); }
  }

  /* ── SECTION BASE ── */
  section { padding: 110px 60px; }
  .section-label {
    font-size: 10px; letter-spacing: .4em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300; line-height: 1.12;
    color: var(--cream);
  }
  .section-title em { font-style: italic; color: var(--gold-light); }
  .gold-rule {
    width: 60px; height: 1px; background: var(--gold);
    margin: 28px 0;
  }

  /* ── SERVICES ── */
  #services { background: var(--ink-soft); }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; margin-top: 64px;
  }
  .service-card {
    padding: 52px 44px;
    background: var(--ink);
    border-top: 1px solid var(--divider);
    transition: background .3s;
    cursor: default;
  }
  .service-card:hover { background: rgba(184,150,90,0.06); }
  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px; letter-spacing: .3em; color: var(--gold);
    margin-bottom: 28px;
  }
  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px; font-weight: 400;
    color: var(--cream); margin-bottom: 16px;
  }
  .service-card p {
    font-size: 14px; line-height: 1.7;
    color: var(--mist); font-weight: 300;
    margin-bottom: 32px;
  }
  .card-link {
    font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    border-bottom: 1px solid var(--divider);
    padding-bottom: 4px;
    transition: color .2s, border-color .2s;
  }
  .card-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

  /* ── ABOUT ── */
  #about {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center;
  }
  .about-text p {
    font-size: 15px; line-height: 1.85;
    color: rgba(244,237,224,0.72); font-weight: 300;
    margin-bottom: 20px;
  }
  .about-visual {
    position: relative; height: 520px;
  }
  .about-img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: sepia(15%) contrast(1.05);
  }
  .about-badge {
    position: absolute; bottom: -28px; right: -28px;
    width: 120px; height: 120px;
    background: var(--gold);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
  }
  .about-badge strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px; font-weight: 300;
    color: var(--ink); line-height: 1;
  }
  .about-badge span {
    font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
    color: var(--ink-soft);
  }

  /* ── STATS ── */
  #stats {
    background: var(--gold);
    padding: 72px 60px;
    display: grid; grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }
  .stat-item { padding: 0 40px; }
  .stat-item + .stat-item { border-left: 1px solid rgba(22,18,13,0.2); }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px; font-weight: 300;
    color: var(--ink); line-height: 1;
  }
  .stat-label {
    font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
    color: var(--ink-soft); margin-top: 8px; font-weight: 400;
  }

  /* ── TEAM ── */
  #team { background: var(--ink-soft); }
  .team-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; margin-top: 64px;
  }
  .team-card { text-align: center; }
  .team-photo {
    width: 160px; height: 160px; border-radius: 50%;
    object-fit: cover; margin: 0 auto 24px;
    border: 1px solid var(--divider);
    filter: grayscale(20%);
    transition: filter .3s, transform .3s;
  }
  .team-card:hover .team-photo { filter: grayscale(0%); transform: scale(1.03); }
  .team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 400; color: var(--cream);
    margin-bottom: 6px;
  }
  .team-role {
    font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold);
  }

  /* ── CONTACT ── */
  #contact {
    background: var(--ink-soft);
  }
  .contact-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; width: 100%;
  }
  .contact-info p {
    font-size: 14px; line-height: 2;
    color: rgba(244,237,224,0.65); font-weight: 300;
  }
  .contact-info a { color: var(--gold-light); text-decoration: none; }
  .contact-info a:hover { color: var(--cream); }
  .social-links { display: flex; gap: 24px; margin-top: 32px; }
  .social-links a {
    font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
    color: var(--mist); text-decoration: none;
    transition: color .2s;
  }
  .social-links a:hover { color: var(--gold-light); }
  .contact-form { display: flex; flex-direction: column; gap: 20px; }
  .form-field { position: relative; }
  .form-field input,
  .form-field textarea {
    width: 100%; background: transparent;
    border: none; border-bottom: 1px solid var(--divider);
    padding: 12px 0; color: var(--cream);
    font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 300;
    outline: none; resize: none;
    transition: border-color .3s;
  }
  .form-field input:focus,
  .form-field textarea:focus { border-color: var(--gold); }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: var(--mist); font-size: 12px; letter-spacing: .1em; }
  .form-submit {
    align-self: flex-start; padding: 14px 48px;
    background: transparent; border: 1px solid var(--gold);
    color: var(--gold-light);
    font-family: 'Jost', sans-serif; font-size: 11px;
    letter-spacing: .22em; text-transform: uppercase;
    cursor: pointer; transition: background .3s, color .3s;
  }
  .form-submit:hover { background: var(--gold); color: var(--ink); }
  .privacy-note {
    margin-top: 12px;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: .04em;
    color: var(--mist);
    max-width: 560px;
  }

  /* ── FOOTER ── */
  footer {
    padding: 32px 60px;
    border-top: 1px solid var(--divider);
    display: flex; align-items: center; justify-content: space-between;
  }
  footer p {
    font-size: 11px; letter-spacing: .12em;
    color: var(--mist);
  }
  footer img { height: 28px; filter: brightness(0) invert(1); opacity: .4; }

  /* ── LANGUAGE TRANSITION ── */
  [data-lang] { transition: opacity .25s ease; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 18px 28px; flex-wrap: wrap; row-gap: 10px; }
    nav.scrolled { padding: 12px 28px; }
    .nav-links {
display: flex;
width: 100%;
order: 3;
gap: 14px;
overflow-x: auto;
padding-bottom: 4px;
scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a { white-space: nowrap; }
.nav-right { width: 100%; justify-content: space-between; }
    section { padding: 80px 28px; }
    .services-grid, .team-grid { grid-template-columns: 1fr; }
    #about { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { height: 320px; }
    #stats { grid-template-columns: 1fr; gap: 40px; }
    .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(22,18,13,0.2); padding-top: 40px; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    #contact { padding: 80px 28px; }
  }
