/* ── SYR GLOBAL STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sand: #F5F0E8;
  --sand-dark: #EAE3D3;
  --ink: #1A1814;
  --ink-muted: #4A4640;
  --ink-light: #7A7570;
  --gold: #C8891A;
  --gold-light: #E8A830;
  --sky: #2A6B9E;
  --sky-light: #EAF2F9;
  --green: #2E6B3E;
  --green-light: #EAF3ED;
  --dark-navy: #0F2640;
  --white: #FFFFFF;
  --border: rgba(26,24,20,0.12);
  --radius: 8px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,240,232,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo img { height: 42px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--ink-muted);
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s; padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta {
  background: var(--gold); color: #fff;
  padding: 8px 20px; border-radius: 4px; text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-lang { font-size: 12px; color: var(--ink-light); cursor: pointer; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  background: rgba(245,240,232,0.99); border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem; flex-direction: column; gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--ink-muted); font-weight: 500; font-size: 15px; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 8rem 2.5rem 4rem;
  background: linear-gradient(160deg, #1A3A5C 0%, #0F2640 100%);
  text-align: center; color: #fff; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://srv1709-files.hstgr.io/8c3214f2e342da47/files/images/WhatsApp%20Image%202026-05-19%20at%2023.01.03%20(2).jpeg') center/cover;
  opacity: 0.1;
}
.page-header > * { position: relative; }
.page-header .page-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.75rem;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.2; margin-bottom: 1rem;
}
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── SECTIONS ── */
section { padding: 5rem 2.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.2; margin-bottom: 1rem;
}
.section-lead { font-size: 1.05rem; color: var(--ink-muted); max-width: 640px; line-height: 1.8; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 14px 30px; border-radius: 4px; text-decoration: none;
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s; cursor: pointer; border: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-block; border: 1.5px solid var(--ink); color: var(--ink);
  padding: 14px 30px; border-radius: 4px; text-decoration: none;
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  transition: all 0.2s; cursor: pointer; background: none;
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-white {
  display: inline-block; border: 1.5px solid rgba(255,255,255,0.5); color: #fff;
  padding: 14px 30px; border-radius: 4px; text-decoration: none;
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-green {
  display: inline-block; background: var(--green); color: #fff;
  padding: 14px 30px; border-radius: 4px; text-decoration: none;
  font-weight: 600; font-size: 14px; text-align: center; transition: background 0.2s;
}
.btn-green:hover { background: #1e5029; }

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(255,255,255,0.55);
  padding: 4rem 2.5rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 40px; filter: brightness(10); opacity: 0.7; margin-bottom: 1rem; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 240px; }
.footer-col h4 { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }

/* ── TAGS ── */
.tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px; margin-bottom: 0.75rem;
}
.tag-gold { background: #FFF3DC; color: #8B5500; }
.tag-sky { background: var(--sky-light); color: var(--sky); }
.tag-green { background: var(--green-light); color: var(--green); }
.tag-purple { background: #F3EEF9; color: #5B3A8B; }
.tag-red { background: #FBE9E9; color: #8B2020; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 3.5rem 1.25rem; }
  .page-header { padding: 7rem 1.25rem 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
