/* ═══════════════════════════════════════
   FONTS (self-hosted)
   ═══════════════════════════════════════ */

/* Cormorant Garamond */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* DM Sans */
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/DMSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/DMSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/DMSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/DMSans-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ═══════════════════════════════════════
   TOKENS
   ═══════════════════════════════════════ */
:root {
  --bg:       #0A0E1A;
  --bg-light: #111626;
  --bg-card:  #141929;
  --gold:     #C9A84C;
  --gold-dim: rgba(201, 168, 76, .15);
  --cream:    #F2EADB;
  --cream-60: rgba(242, 234, 219, .6);
  --cream-30: rgba(242, 234, 219, .25);
  --white:    #FFFFFF;
  --border:   rgba(242, 234, 219, .08);

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
fieldset { border: none; }

.gold { color: var(--gold); }
.dim  { color: var(--cream-60); font-weight: 400; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 7rem 0;
}

/* shared section typography */
.section__overtitle {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background .4s, padding .4s;
}
.nav--scrolled {
  background: rgba(10, 14, 26, .92);
  backdrop-filter: blur(12px);
  padding: .9rem 0;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav__links { margin-left: auto; }
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* lang switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: visible;
}
.lang-switcher__btn {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .35rem .55rem;
  background: transparent;
  color: var(--cream-60);
  border: none;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.lang-switcher__btn:hover {
  color: var(--cream);
}
.lang-switcher__btn.is-active {
  background: var(--gold);
  color: var(--bg);
}

/* burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform .3s, opacity .3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__overlay { display: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream-60);
  transition: color .3s;
}
.nav__links a:hover { color: var(--cream); }
.nav__cta {
  padding: .5rem 1.3rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: background .3s, color .3s !important;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero__bg-lines {
  position: absolute; inset: 0;
  display: flex; justify-content: space-evenly;
  pointer-events: none;
}
.hero__bg-lines span {
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(201,168,76,.06) 30%, rgba(201,168,76,.06) 70%, transparent 100%);
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  max-width: 860px;
  text-align: center;
}
.hero__overtitle {
  font-size: .78rem; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.6rem;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  font-weight: 500; line-height: 1.08;
  letter-spacing: -.01em; margin-bottom: 1.8rem;
}
.hero__subtitle {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--cream-60);
  max-width: 560px; margin: 0 auto 2.6rem;
}
.hero__tagline {
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 2.6rem;
}
.hero__actions {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 4.5rem;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .95rem 2.4rem; border: none; cursor: pointer;
  transition: all .35s var(--ease-out);
}
.btn--primary { background: var(--gold); color: var(--bg); }
.btn--primary:hover {
  background: #D4B45E;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.25);
}
.btn--ghost { border: 1px solid var(--cream-60); color: var(--cream); background: none; }
.btn--ghost:hover { border-color: var(--cream); transform: translateY(-2px); }
.btn--full { width: 100%; }

.hero__scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: .75rem;
}
.hero__scroll-mouse {
  display: block; width: 22px; height: 36px;
  border-radius: 11px;
  border: 1.5px solid var(--cream-30);
  position: relative;
  transition: border-color .4s;
}
.hero__scroll-hint:hover .hero__scroll-mouse {
  border-color: var(--gold);
}
.hero__scroll-dot {
  position: absolute; left: 50%; top: 6px;
  width: 3px; height: 3px; margin-left: -1.5px;
  border-radius: 50%; background: var(--gold);
  animation: scrollDot 2s ease-in-out infinite;
}
.hero__scroll-label {
  font-family: var(--font-body);
  font-size: .65rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream-30);
  transition: color .4s;
}
.hero__scroll-hint:hover .hero__scroll-label {
  color: var(--cream-60);
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateY(0); }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px); }
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about { border-top: 1px solid var(--border); }

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream-60);
  margin-bottom: 1.2rem;
}

/* ═══════════════════════════════════════
   CATALOG
   ═══════════════════════════════════════ */
.catalog {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.catalog .section__title { margin-bottom: 3rem; }

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color .4s, transform .4s var(--ease-out);
}
.cat-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}
.cat-card__number {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 600;
  color: var(--gold-dim); line-height: 1;
  margin-bottom: 1.2rem;
}
.cat-card__title {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 500;
  margin-bottom: .8rem;
}
.cat-card__text {
  font-size: .92rem; line-height: 1.7;
  color: var(--cream-60); flex: 1;
  margin-bottom: 1.6rem;
}
.cat-card__link {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing .3s;
}
.cat-card__link:hover { letter-spacing: .14em; }

/* ═══════════════════════════════════════
    WHY US
    ═══════════════════════════════════════ */
.why .section__title { margin-bottom: 3.5rem; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 2rem 1.6rem;
  border: 1px solid var(--border);
  transition: border-color .4s;
  text-align: center;
}
.why-card:hover { border-color: var(--gold-dim); }
.why-card__icon {
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
}
.why-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600;
}

/* ═══════════════════════════════════════
    PRINCIPLES
    ═══════════════════════════════════════ */
.principles {
  border-top: 1px solid var(--border);
}
.principles .section__title { margin-bottom: 2.5rem; }

.principles__list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 720px;
}
.principles__item {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--cream);
  padding-left: 2.4rem;
  position: relative;
}
.principles__item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════
    PROCESS
    ═══════════════════════════════════════ */
.process {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}
.process .section__title { margin-bottom: 3rem; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.process__step {
  text-align: center;
  padding: 1.5rem 0.8rem;
}
.process__step-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem; font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.process__step p {
  font-size: .9rem;
  line-height: 1.5;
  color: var(--cream-60);
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}
.contact .section__title { margin-bottom: 3rem; }

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

/* --- form --- */
.form { display: flex; flex-direction: column; gap: 1.2rem; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form__field { display: flex; flex-direction: column; gap: .4rem; }
.form__field label,
.form__radios legend {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--cream-60);
}

.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .7rem .9rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--cream);
  outline: none;
  transition: border-color .3s;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--gold);
}
.form__field select { cursor: pointer; }
.form__field textarea { resize: vertical; min-height: 80px; }

.form__radios {
  display: flex; flex-direction: column; gap: .6rem;
}
.form__radios legend { margin-bottom: .2rem; }
.form__radios > label {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9rem; color: var(--cream-60); cursor: pointer;
}
.form__radios input[type="radio"] { accent-color: var(--gold); }
.form__radios > label:has(input:checked) { color: var(--cream); }

.form__check {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .82rem; color: var(--cream-60); cursor: pointer;
}
.form__check input { accent-color: var(--gold); margin-top: 3px; }

.form__field--error input,
.form__field--error select,
.form__field--error textarea {
  border-color: #e74c3c;
}

.form__error {
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 0.2rem;
  line-height: 1.3;
}

.form__radios.form__field--error {
  border-left: 2px solid #e74c3c;
  padding-left: 0.8rem;
}

.form__check.form__check--error {
  color: #e74c3c;
}

.form__intro {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--cream-60);
  margin-bottom: 1rem;
  font-style: italic;
}
.form__reviewed {
  font-size: .82rem;
  color: var(--cream-60);
  font-style: italic;
}

/* --- info side --- */
.contact__info-side {
  display: flex; flex-direction: column; gap: 1.6rem;
}
.contact__card {
  padding: 1.6rem;
  border: 1px solid var(--border);
}
.contact__card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: .6rem; color: var(--gold);
}
.contact__card p {
  font-size: .92rem; line-height: 1.6;
  color: var(--cream-60);
}
.contact__card a { transition: color .3s; }
.contact__card a:hover { color: var(--gold); }

.contact__map {
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}
.contact__map iframe { display: block; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  padding: 4rem 0 0;
  border-top: 1px solid var(--border);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}
.footer__brand p {
  margin-top: .8rem;
  font-size: .88rem; line-height: 1.6;
  color: var(--cream-60);
}
.footer__company-info {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.footer__company-info h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .4rem;
}
.footer__company-info span {
  font-size: .85rem;
  color: var(--cream-60);
  line-height: 1.5;
}
.footer__col {
  display: flex; flex-direction: column; gap: .5rem;
}
.footer__col h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: .4rem;
}
.footer__col a, .footer__col span {
  font-size: .85rem; color: var(--cream-60);
  transition: color .3s;
}
.footer__col a:hover { color: var(--cream); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0;
  text-align: center;
  font-size: .78rem;
  color: var(--cream-30);
}

/* ═══════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* stagger inside common parents */
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .catalog__grid { grid-template-columns: 1fr; }
  .cat-card { flex-direction: row; gap: 1.6rem; align-items: flex-start; }
  .cat-card__number { margin-bottom: 0; font-size: 2.4rem; min-width: 56px; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: repeat(3, 1fr); }
  .contact__layout { grid-template-columns: 1fr; }
  .contact__info-side { order: -1; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .contact__map { grid-column: 1 / -1; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }

  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.6rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease-out);
    z-index: 1;
  }
  .nav__links.is-open { transform: translateX(0); }

  .nav__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    z-index: 99;
  }
  .nav__overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .lang-switcher {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 50vw;
  }
  .lang-switcher::-webkit-scrollbar {
    display: none;
  }
  .lang-switcher__btn {
    flex-shrink: 0;
  }

  .about__layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 7rem 1.4rem 3rem; }
  .contact__info-side { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .hero__scroll-hint { bottom: 1.2rem; }
  .hero__scroll-mouse { width: 18px; height: 30px; border-radius: 9px; }
  .hero__scroll-label { font-size: .6rem; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; }
  .form__row { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .cat-card { flex-direction: column; }
  .process__steps { grid-template-columns: 1fr; }
  .hero__scroll-hint { display: none; }
}
