/* =============================================
   HOMEIOT — Dark Premium Global Styles
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

:root {
  --bg:        #08090d;
  --bg2:       #0e1018;
  --bg3:       #141720;
  --bg4:       #1a1e2a;
  --blue:      #2196f3;
  --blue-dim:  #1565c0;
  --blue-glow: rgba(33,150,243,0.12);
  --blue-line: rgba(33,150,243,0.35);
  --gold:      #c9a84c;
  --text:      #eef0f5;
  --text2:     #8a90a0;
  --text3:     #4a5060;
  --border:    rgba(255,255,255,0.06);
  --border2:   rgba(255,255,255,0.10);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display:block; width:100%; height:100%; object-fit:cover; }
a   { text-decoration:none; color:inherit; }

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 76px;
  padding: 0 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,9,13,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  height: 38px;
  width: auto;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  /* crop the dark background — show only the logo part */
  object-position: right center;
  max-width: 200px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text2);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: transparent !important;
  color: var(--blue) !important;
  border: 1px solid var(--blue-line) !important;
  padding: 9px 22px !important;
  border-radius: 2px !important;
  letter-spacing: 0.1em !important;
  transition: all 0.25s !important;
}

.nav-cta:hover {
  background: var(--blue) !important;
  color: white !important;
}

.nav-cta::after { display: none !important; }

/* ===================== PAGE HERO ===================== */
.page-hero {
  padding: 11rem 5rem 6rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blue-line), transparent);
}

.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.8rem;
}

.page-hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--blue);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 800px;
}

.page-hero h1 strong {
  font-weight: 600;
  font-style: italic;
}

.page-hero p {
  margin-top: 1.5rem;
  color: var(--text2);
  font-size: 13px;
  font-weight: 400;
  max-width: 480px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

/* ===================== SECTION LABELS ===================== */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--blue);
}

.display-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display-title strong {
  font-weight: 600;
  font-style: italic;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: white;
  padding: 14px 32px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--blue);
  transition: all 0.25s;
}

.btn-primary:hover {
  background: transparent;
  color: var(--blue);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text2);
  padding: 14px 32px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--border2);
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--text);
}

/* ===================== CTA BAND ===================== */
.cta-band {
  margin: 0 5rem;
  border: 1px solid var(--border2);
  border-radius: 2px;
  padding: 5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blue), transparent);
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blue-dim), transparent);
}

.cta-band-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.cta-band-title strong { font-weight: 600; font-style: italic; color: var(--blue); }

.cta-band-sub {
  font-size: 13px;
  color: var(--text2);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cta-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text2);
}

/* ===================== FOOTER ===================== */
footer {
  margin-top: 8rem;
  border-top: 1px solid var(--border);
  padding: 4rem 5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  object-position: right center;
  max-width: 160px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-logo img:hover { opacity: 1; }

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

.footer-links a {
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--blue); }

.footer-copy {
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.06em;
  text-align: right;
}

/* ===================== DIVIDER ===================== */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border2), transparent);
  margin: 0 5rem;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

.fu   { animation: fadeUp 0.8s cubic-bezier(.16,1,.3,1) both; }
.fu-1 { animation: fadeUp 0.8s .1s cubic-bezier(.16,1,.3,1) both; }
.fu-2 { animation: fadeUp 0.8s .2s cubic-bezier(.16,1,.3,1) both; }
.fu-3 { animation: fadeUp 0.8s .3s cubic-bezier(.16,1,.3,1) both; }
.fu-4 { animation: fadeUp 0.8s .4s cubic-bezier(.16,1,.3,1) both; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  nav, .page-hero { padding-left:1.5rem; padding-right:1.5rem; }
  .cta-band { margin:0 1.5rem; padding:3rem 2rem; grid-template-columns:1fr; }
  footer { padding:3rem 1.5rem; grid-template-columns:1fr; text-align:center; }
  .footer-copy { text-align:center; }
  .divider { margin:0 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display:none; }
}
