@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #0E1B2C;
  --navy-mid: #162030;
  --rose: #B76E79;
  --rose-light: #F2DDE0;
  --rose-dark: #8A4F58;
  --champ: #D8B48C;
  --champ-light: #F5EAD8;
  --champ-dark: #A87E52;
  --ivory: #F8F5F0;
  --ivory-dark: #EDE8E0;
  --text-mid: #4A5568;
  --text-light: #8896A8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--ivory); color: var(--navy); overflow-x: hidden; }

/* LANG BAR */
.lang-bar { background: #0E1B2C; padding: 9px 40px; display: flex; justify-content: flex-end; gap: 6px; }
.lang-btn { background: transparent; border: 0.5px solid rgba(216,180,140,0.35); color: rgba(255,255,255,0.55); padding: 3px 12px; border-radius: 20px; font-size: 11px; font-family: 'Inter', sans-serif; cursor: pointer; transition: all .2s; letter-spacing: .05em; }
.lang-btn:hover, .lang-btn.active { background: var(--champ); color: var(--navy); border-color: var(--champ); font-weight: 500; }

/* NAV */
nav { background: #0E1B2C; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 68px; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(216,180,140,0.12); }
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13px; letter-spacing: .04em; transition: color .2s; }
.nav-links a:hover { color: var(--champ); }
.nav-links a.active { color: var(--champ); }
.nav-cta { background: var(--rose) !important; color: white !important; padding: 8px 20px; border-radius: 4px; font-weight: 500 !important; }
.nav-cta:hover { background: var(--rose-dark) !important; }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.7); margin: 5px 0; border-radius: 2px; }

/* BUTTONS */
.btn-primary { background: var(--rose); color: white; padding: 13px 30px; border-radius: 4px; font-size: 14px; font-weight: 500; text-decoration: none; letter-spacing: .04em; transition: background .2s; border: none; cursor: pointer; font-family: 'Inter', sans-serif; display: inline-block; }
.btn-primary:hover { background: var(--rose-dark); }
.btn-navy { background: var(--navy); color: var(--champ); padding: 13px 30px; border-radius: 4px; font-size: 14px; font-weight: 500; text-decoration: none; letter-spacing: .04em; transition: background .2s; border: none; cursor: pointer; font-family: 'Inter', sans-serif; display: inline-block; }
.btn-navy:hover { background: var(--navy-mid); }
.btn-outline-dark { background: transparent; color: var(--navy); padding: 12px 30px; border-radius: 4px; font-size: 14px; font-weight: 400; text-decoration: none; letter-spacing: .04em; border: 1px solid rgba(11,31,58,0.25); transition: all .2s; display: inline-block; }
.btn-outline-dark:hover { border-color: var(--navy); background: var(--navy); color: var(--champ); }

/* SECTION */
.section-eyebrow { font-size: 11px; letter-spacing: .14em; color: var(--rose); text-transform: uppercase; margin-bottom: 12px; font-weight: 500; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600; line-height: 1.1; color: var(--navy); margin-bottom: 18px; letter-spacing: -.01em; }
.section-sub { font-size: 16px; color: var(--text-mid); line-height: 1.7; font-weight: 300; }
.section-inner { max-width: 1080px; margin: 0 auto; width: 100%; }
section { padding: 90px 40px; }

/* TM LOGO */
.logo-tm { position: relative; display: inline-flex; align-items: flex-start; }
.logo-tm img { height: 48px; width: auto; display: block; }
.tm-mark { font-size: 9px; color: var(--champ); font-weight: 400; margin-left: 2px; margin-top: 4px; line-height: 1; font-family: 'Inter', sans-serif; }

/* FOOTER */
footer { background: var(--navy); padding: 48px 40px 28px; border-top: 1px solid rgba(216,180,140,0.1); }
.footer-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 10px; line-height: 1.6; }
.footer-col h5 { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--champ); margin-bottom: 14px; font-weight: 500; }
.footer-col a { display: block; font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--champ); }
.footer-bottom { max-width: 1080px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: .04em; }

/* LANG HIDE */
[data-lang] { display: none; }
[data-lang].active { display: block; }
[data-lang-i] { display: none; }
[data-lang-i].active { display: inline; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .lang-bar { padding: 9px 20px; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  section { padding: 60px 20px; }
  .section-title { font-size: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
