/* ─── SMC Design — Shared Stylesheet ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg:           #0c0c0b;
  --bg2:          #111110;
  --bg3:          #161614;
  --text:         #f4f0e8;
  --muted:        #8a8578;
  --accent:       #c8956c;
  --accent-lt:    #dbb896;
  --accent-dk:    #8b5e3c;
  --border:       rgba(200,149,108,0.12);
  --border-lt:    rgba(255,255,255,0.06);
  --card:         #181714;
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'Inter', system-ui, sans-serif;
  --nav-h:        90px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--sans); overflow-x: hidden; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--sans); }

/* ─── Cursor ring ─── */
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transition: width .25s, height .25s, opacity .25s; opacity: .45;
  transform: translate(-50%,-50%);
}

/* ─── Nav ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 2rem;
  padding: 0 3.5rem;
  background: rgba(12,12,11,.75); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.nav-logo img {
  height: 46px; width: auto; max-width: none;
  filter: invert(1) sepia(0.25) saturate(1.3) hue-rotate(338deg) brightness(1.08);
  transition: filter .3s;
}
.nav-logo img:hover { filter: invert(1) sepia(0.5) saturate(2) hue-rotate(338deg) brightness(1.15); }

.nav-links {
  display: flex; justify-content: center; gap: 2.5rem; list-style: none;
}

.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--accent); transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-phone { font-size: .82rem; font-weight: 500; color: var(--muted); transition: color .3s; }
.nav-phone:hover { color: var(--accent); }

.nav-cta {
  padding: .62rem 1.6rem; background: transparent;
  color: var(--accent); border: 1px solid var(--accent);
  font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  transition: all .3s;
}
.nav-cta:hover { background: var(--accent); color: var(--bg); }

.nav-mobile-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; }

/* Nav social icons */
.nav-social { display: flex; align-items: center; gap: .6rem; }
.nav-social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border-lt); background: transparent;
  color: var(--muted); transition: all .3s;
}
.nav-social-btn svg { width: 15px; height: 15px; fill: currentColor; }
.nav-social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(200,149,108,.08); }
.nav-social-btn.fb:hover { border-color: #1877f2; color: #1877f2; background: rgba(24,119,242,.08); }
.nav-social-btn.ig:hover { border-color: #e1306c; color: #e1306c; background: rgba(225,48,108,.08); }
.nav-social-btn.yt:hover { border-color: #ff0000; color: #ff0000; background: rgba(255,0,0,.08); }

/* ─── Page wrapper ─── */
main { padding-top: var(--nav-h); min-height: 100vh; }

/* ─── Section helpers ─── */
.section-label {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .72rem; color: var(--accent); text-transform: uppercase;
  letter-spacing: .2em; font-weight: 600; margin-bottom: .9rem;
}
.section-label .ln { width: 28px; height: 1px; background: var(--accent); }

.section-title {
  font-family: var(--serif); font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 700; letter-spacing: -.01em; line-height: 1.2;
}
.section-sub {
  color: var(--muted); font-size: .95rem; line-height: 1.75;
  max-width: 480px; margin-top: .65rem;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: 1rem 2.4rem; background: var(--accent); color: var(--bg);
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  border: none; transition: all .35s;
}
.btn-primary:hover { background: var(--accent-lt); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(200,149,108,.22); }
.btn-primary .arr { transition: transform .3s; }
.btn-primary:hover .arr { transform: translateX(5px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: 1rem 2.4rem; background: transparent; color: var(--accent);
  border: 1px solid var(--accent); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; transition: all .35s;
}
.btn-outline:hover { background: var(--accent); color: var(--bg); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--muted); font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .8rem 1.2rem; transition: color .3s;
}
.btn-ghost:hover { color: var(--accent); }

/* ─── Marquee ─── */
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.2rem 0; background: var(--bg3); }
.marquee-track { display: flex; width: max-content; animation: marquee 35s linear infinite; }
.marquee-item {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 500;
  white-space: nowrap; padding: 0 2rem; color: var(--muted);
  display: flex; align-items: center; gap: 2rem; opacity: .55;
}
.marquee-item .dia { width: 5px; height: 5px; background: var(--accent); transform: rotate(45deg); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Page hero (inner pages) ─── */
.page-hero {
  height: 38vh; min-height: 280px; max-height: 420px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,12,11,.55), rgba(12,12,11,.85));
}
.page-hero-content { position: relative; z-index: 1; padding: 3rem 3.5rem; }
.page-hero-content h1 {
  font-family: var(--serif); font-size: clamp(2.4rem,5vw,4rem);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.1;
}
.page-hero-content p { color: var(--muted); font-size: 1rem; margin-top: .5rem; }

/* ─── Stats strip ─── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--border);
}
.stat-box {
  padding: 2.2rem 2.5rem;
  border-right: 1px solid var(--border);
  transition: background .3s;
}
.stat-box:last-child { border-right: none; }
.stat-box:hover { background: rgba(200,149,108,.04); }
.stat-num {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 700;
  color: var(--accent); line-height: 1;
}
.stat-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; margin-top: .4rem; }

/* ─── Video section ─── */
.video-section { padding: 6rem 3.5rem; background: var(--bg2); }
.video-header { text-align: center; margin-bottom: 3.5rem; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.video-card { display: flex; flex-direction: column; gap: .75rem; }
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border: 1px solid var(--border);
}
.video-embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: none;
}
.video-title {
  font-size: .82rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: .12em; padding-left: .1rem;
}
.video-cta { text-align: center; margin-top: 3rem; }
@media(max-width:768px) { .video-grid { grid-template-columns: 1fr; } }

/* ─── Footer ─── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 4rem 3.5rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border);
}
.footer-brand img {
  height: 42px; margin-bottom: 1rem;
  filter: invert(1) sepia(0.25) saturate(1.3) hue-rotate(338deg) brightness(0.95);
}
.footer-tagline { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: .88rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid var(--border-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--muted);
  transition: all .3s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.footer-col h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--accent); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .65rem; }
.footer-col ul li a { font-size: .88rem; color: var(--muted); transition: color .3s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-contact p { font-size: .88rem; color: var(--muted); margin-bottom: .55rem; line-height: 1.5; }
.footer-contact a { color: var(--muted); transition: color .3s; }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.8rem; flex-wrap: wrap; gap: 1rem;
  font-size: .75rem; color: var(--muted);
}

/* ─── Reveal animations ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ─── Mobile nav ─── */
@media (max-width: 960px) {
  nav { padding: 0 1.8rem; grid-template-columns: auto auto; }
  .nav-links { display: none; }
  .nav-right .nav-phone { display: none; }
  .nav-mobile-toggle { display: block; }
  .page-hero-content { padding: 2rem 1.8rem; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  nav { padding: 0 1.2rem; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
