/* ═══════════════════════════════════════════
   OMAIR STUDIO — GLOBAL STYLESHEET
   Warm editorial luxury aesthetic
═══════════════════════════════════════════ */

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

:root {
  --cream: #F5F0E8;
  --warm-white: #FDFAF5;
  --charcoal: #1A1A1A;
  --brown: #3D2B1F;
  --amber: #C8843A;
  --amber-light: #E8A85A;
  --amber-pale: #F5E6D0;
  --sand: #D9C9A8;
  --muted: #7A6E62;
  --light-border: rgba(200,132,58,0.18);
  --gap: 110px;
  --nav-h: 76px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

/* ══════════════════════════
   NAVIGATION
══════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  background: rgba(253,250,245,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light-border);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.06); }
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 4px;
  color: var(--charcoal);
  display: flex; align-items: center; gap: 6px;
}
.nav-logo .accent { color: var(--amber); }
.nav-logo .dot {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  display: inline-block;
  margin: 0 2px 4px;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px; font-weight: 500;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--amber);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--charcoal) !important;
  color: white !important;
  padding: 10px 26px !important;
  border-radius: 2px !important;
  letter-spacing: 1.5px !important;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--amber) !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--light-border);
  padding: 20px 24px 28px;
  flex-direction: column; gap: 0;
  z-index: 199;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.mobile-menu a {
  padding: 14px 0;
  font-size: 13px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--light-border);
}
.mobile-menu a:last-child { border-bottom: none; color: var(--amber); }
.mobile-menu.open { display: flex; }

/* ══════════════════════════
   PAGE HERO BANNER
══════════════════════════ */
.page-banner {
  margin-top: var(--nav-h);
  height: 320px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
  padding: 0 80px;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.38);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.page-banner:hover .page-banner-bg { transform: scale(1.08); }
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(26,26,26,0.5) 0%, transparent 70%);
}
.page-banner-content { position: relative; z-index: 2; }
.banner-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--amber-light); font-weight: 600; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.banner-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--amber-light);
}
.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 300; line-height: 1.05;
  color: white;
}
.page-banner h1 em { font-style: italic; color: var(--amber-light); }
.breadcrumb {
  position: absolute; bottom: 28px; right: 80px;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--amber-light); }
.breadcrumb span { color: var(--amber-light); }

/* ══════════════════════════
   UTILITY CLASSES
══════════════════════════ */
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--amber); font-weight: 600; margin-bottom: 16px;
}
.section-tag::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--amber);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300; line-height: 1.15;
  color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--amber); }
.section-title.light { color: white; }
.section-title.light em { color: var(--amber-light); }
.lead {
  font-size: 16px; line-height: 1.8;
  color: var(--muted); margin-top: 20px;
}

.btn-primary {
  display: inline-block;
  background: var(--amber); color: white;
  padding: 15px 38px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--brown); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--charcoal); color: var(--charcoal);
  padding: 14px 36px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--charcoal); color: white; }
.btn-amber-outline {
  display: inline-block;
  border: 1.5px solid var(--amber); color: var(--amber);
  padding: 14px 36px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn-amber-outline:hover { background: var(--amber); color: white; }

/* ══════════════════════════
   FOOTER
══════════════════════════ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding: 70px 64px 50px;
}
.footer-brand {}
.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 4px; color: white;
}
.footer-logo-text span { color: var(--amber); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 15px;
  color: rgba(255,255,255,0.4); margin-top: 8px; margin-bottom: 20px;
}
.footer-about { font-size: 13px; line-height: 1.75; max-width: 280px; }
.footer-col h5 {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--amber); font-weight: 600; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--amber); }
.footer-contact-list { list-style: none !important; gap: 14px !important; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-list li .ico { color: var(--amber); font-size: 14px; margin-top: 1px; flex-shrink: 0; }
.footer-contact-list li span { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 64px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--amber); }

/* ══════════════════════════
   FADE-IN ANIMATION
══════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════
   RESPONSIVE NAV
══════════════════════════ */
@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-banner { padding: 0 24px; height: 240px; }
  .breadcrumb { right: 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 50px 24px 40px; }
  .footer-bottom { padding: 16px 24px; }
}
@media (max-width: 520px) {
  .footer-main { grid-template-columns: 1fr; }
}
