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

:root {
  --white: #FFFFFF;
  --cream: #FAF8F5;
  --light: #F2EEE8;
  --gold: #B8924A;
  --gold-light: #D4AA6A;
  --gold-pale: rgba(184,146,74,0.12);
  --ink: #1A1812;
  --ink-mid: #3D3828;
  --muted: #7A7464;
  --border: rgba(184,146,74,0.18);
  --glass-bg: rgba(255,255,255,0.72);
  --glass-border: rgba(255,255,255,0.9);
  --shadow-card: 0 8px 40px rgba(90,70,30,0.10), 0 2px 8px rgba(90,70,30,0.06);
  --shadow-hero: 0 20px 80px rgba(90,70,30,0.14);
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 5%;
  background: rgba(250,248,245,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(90,70,30,0.08); }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-logo-icon { height: 40px; width: auto; display: block; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  transition: background 0.25s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

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

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 62px; left: 0; right: 0; z-index: 199;
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5% 2rem;
  flex-direction: column; gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; font-weight: 500;
  color: var(--ink-mid); text-decoration: none;
  padding: 0.4rem 0; border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mob-cta {
  background: var(--gold); color: white;
  text-align: center; padding: 0.75rem;
  border-radius: 50px; font-weight: 600;
  border-bottom: none;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg,
    #fdf6ee 0%,
    #faf5f0 30%,
    #f5f0eb 60%,
    #ede8e0 100%
  );
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; background: rgba(184,146,74,0.12); top: -10%; right: -5%; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: rgba(184,146,74,0.08); bottom: 5%; left: -5%; animation-delay: -3s; }
.orb-3 { width: 200px; height: 200px; background: rgba(200,160,80,0.1); top: 40%; right: 15%; animation-delay: -6s; }

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(184,146,74,0.1);
  backdrop-filter: blur(8px);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.4); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  max-width: 820px;
  margin: 0 auto 1rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.8rem;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }
.btn-primary {
  background: var(--gold);
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(184,146,74,0.35);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,146,74,0.4);
}
.btn-outline {
  background: var(--glass-bg);
  color: var(--ink);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline:hover {
  background: white;
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

/* Hero floating stat cards */
.hero-float-row {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 2;
}
.float-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 0.8rem;
  animation: floatCard 6s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: -2s; }
.float-card:nth-child(3) { animation-delay: -4s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.float-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.fc-gold { background: rgba(184,146,74,0.15); }
.fc-blue { background: rgba(59,130,246,0.12); }
.fc-green { background: rgba(34,197,94,0.12); }
.float-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.float-label { font-size: 0.72rem; font-weight: 400; color: var(--muted); margin-top: 2px; }

/* ── SECTION COMMON ── */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

/* ── DIVISIONS ── */
.divisions {
  padding: 6rem 5%;
  background: linear-gradient(175deg, #faf8f5 0%, #f0ebe1 100%);
  position: relative;
  overflow: hidden;
}
.divisions::before {
  content: '';
  position: absolute; top: -50px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,146,74,0.07), transparent 70%);
  pointer-events: none;
}
.divisions-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem;
}
.divisions-header-text .section-sub {
  font-size: 1rem; font-weight: 300; color: var(--muted);
  max-width: 380px; line-height: 1.7; margin-top: 0.75rem;
}
.divisions-count {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: rgba(184,146,74,0.1);
  line-height: 1;
  flex-shrink: 0;
}

.div-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.div-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s;
  cursor: default;
}
.div-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.div-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(90,70,30,0.14);
}
.div-card:hover::before { transform: scaleX(1); }

.div-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  transition: background 0.3s, transform 0.3s;
}
.div-card:hover .div-icon {
  background: rgba(184,146,74,0.2);
  transform: scale(1.08) rotate(-3deg);
}
.div-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.div-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}
.div-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.div-arrow {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
}
.div-card:hover .div-arrow { opacity: 1; transform: translateX(0); }

/* ── ABOUT ── */
.about {
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--white);
}
.about-visual { position: relative; }
.about-main-card {
  background: linear-gradient(135deg, #fdf6ee, #f5efe3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-hero);
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.about-main-card::before {
  content: 'SE';
  position: absolute; top: -20px; right: -10px;
  font-family: 'Playfair Display', serif;
  font-size: 10rem;
  font-weight: 700;
  color: rgba(184,146,74,0.08);
  line-height: 1;
  pointer-events: none;
}
.about-main-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
}
.about-mini-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.85rem; margin-top: 0.85rem;
}
.about-mini {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(90,70,30,0.06);
}
.about-mini-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-mini-label { font-size: 0.68rem; font-weight: 400; color: var(--muted); margin-top: 3px; }
.about-text p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.about-text .section-title { margin-bottom: 1.5rem; }

/* ── MARQUEE ── */
.marquee-section {
  background: var(--light);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 3rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-mid);
  letter-spacing: 0.02em;
}
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink:0; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CONTACT ── */
.contact {
  padding: 6rem 5%;
  background: linear-gradient(160deg, #fdf8f2, #f5ede0);
  position: relative;
  overflow: hidden;
}
.contact::after {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,146,74,0.06), transparent 65%);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative; z-index:1;
}
.contact-intro .section-title { margin-bottom: 1.2rem; }
.contact-intro p {
  font-size: 0.92rem; font-weight: 300;
  color: var(--muted); line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.c-detail {
  display: flex; align-items: center; gap: 0.9rem;
}
.c-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.c-text { font-size: 0.88rem; color: var(--ink-mid); font-weight: 400; }
.c-text small { display: block; font-size: 0.7rem; color: var(--muted); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: white;
  border: 1.5px solid rgba(184,146,74,0.18);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.8rem 1rem;
  outline: none; resize: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  box-shadow: 0 1px 4px rgba(90,70,30,0.04);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #b0a898; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,74,0.1);
}
.form-field select option { color: var(--ink); background: white; }
.form-field textarea { height: 110px; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 3rem 5% 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: white; letter-spacing: 0.02em;
}
.footer-logo span { color: var(--gold-light); }
.footer-logo-icon { height: 36px; width: auto; display: block; flex-shrink: 0; }
.footer-tagline { font-size: 0.8rem; font-weight: 300; margin-top: 0.35rem; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.9rem;
}
.footer-col a {
  display: block; font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.55); text-decoration: none;
  margin-bottom: 0.5rem; transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
}

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .div-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-links { gap: 2rem; }
  .divisions-header { flex-direction: column; align-items: flex-start; }
  .divisions-count { display: none; }
}
@media (max-width: 600px) {
  .div-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .hero-float-row { gap: 0.75rem; }
  .float-card { padding: 0.75rem 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-mini-cards { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-logo-icon { height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb, .float-card, .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
