/* ════════════════════════════════════════
   ENIFENI DESIGNS — index.css
   Home Page Styles
════════════════════════════════════════ */
 
@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=Montserrat:wght@300;400;500&display=swap');
 
/* ── RESET & ROOT ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
:root {
  --cream:        #f5f0ea;
  --warm-white:   #faf8f5;
  --dark:         #1a1714;
  --mid:          #5c5148;
  --accent:       #8b6347;
  --gold:         #c9a96e;
  --gold-light:   #e2c99a;
  --border:       rgba(139, 99, 71, 0.18);
  --nav-h:        72px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Montserrat', sans-serif;
}
 
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
 
body {
  background: var(--warm-white);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  overflow-x: hidden;
}
 
/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
 
/* ── SELECTION ── */
::selection { background: var(--gold); color: var(--dark); }
 
/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 70px);
  background: rgba(26, 23, 20, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  z-index: 1000;
  transition: background 0.4s;
}
 
.logo {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 400;
  text-decoration: none;
}
 
nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
}
 
nav a {
  font-family: var(--font-body);
  font-size: clamp(9px, 1vw, 11px);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
 
nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
 
nav a:hover,
nav a.active {
  color: var(--gold);
}
 
nav a:hover::after,
nav a.active::after {
  width: 100%;
}
 
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
 
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.35s;
}
 
/* Mobile Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(26, 23, 20, 0.98);
  padding: 36px clamp(20px, 5vw, 60px) 40px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
 
.nav-overlay a {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s;
}
 
.nav-overlay a:last-child { border-bottom: none; }
.nav-overlay a:hover { color: var(--gold); }
 
/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 520px;
  overflow: hidden;
}
 
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('home.jpg');
  background-size: cover;
  background-position: center top;
  animation: heroZoom 10s ease forwards;
}
 
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
 
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,23,20,0.55) 0%,
    rgba(26,23,20,0.2)  45%,
    rgba(26,23,20,0.75) 100%
  );
}
 
.hero-content {
  position: absolute;
  bottom: clamp(50px, 10vw, 100px);
  left: clamp(24px, 6vw, 90px);
  right: clamp(24px, 6vw, 90px);
  color: #fff;
  animation: fadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
 
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.hero-eyebrow {
  display: block;
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  font-weight: 300;
  animation: fadeUp 1s ease 0.2s both;
}
 
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 7.5vw, 96px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.5px;
  max-width: 780px;
  margin-bottom: 26px;
}
 
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
 
.hero-subtitle {
  font-size: clamp(13px, 1.5vw, 16px);
  color: rgba(255, 255, 255, 0.72);
  max-width: 440px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 40px;
}
 
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
 
/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: clamp(24px, 4vw, 45px);
  right: clamp(24px, 4vw, 50px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeUp 1.2s ease 1.2s both;
}
 
.scroll-hint span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-rl;
}
 
.scroll-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2.5s ease-in-out infinite;
}
 
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}
 
/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: clamp(11px, 1.8vw, 15px) clamp(26px, 3.5vw, 44px);
  font-family: var(--font-body);
  font-size: clamp(9px, 1vw, 11px);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.35s ease;
}
 
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
 
.btn-gold:hover {
  background: #b8904a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 169, 110, 0.35);
}
 
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
 
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
 
.btn-dark {
  background: var(--dark);
  color: var(--gold);
}
 
.btn-dark:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
 
/* ════════════════════════════════════════
   SECTION LAYOUT HELPERS
════════════════════════════════════════ */
.section {
  padding: clamp(70px, 12vw, 130px) clamp(24px, 6vw, 90px);
}
 
.section-label {
  display: block;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 400;
}
 
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5.5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 55px;
}
 
.section-title em {
  font-style: italic;
  color: var(--accent);
}
 
/* ════════════════════════════════════════
   SERVICES CARDS GRID
════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(14px, 2vw, 24px);
}
 
.card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
 
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
 
.card:hover img {
  transform: scale(1.07);
}
 
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,23,20,0.88) 0%,
    rgba(26,23,20,0.08) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3.5vw, 40px);
  transition: background 0.45s;
}
 
.card:hover .card-overlay {
  background: linear-gradient(
    to top,
    rgba(26,23,20,0.95) 0%,
    rgba(26,23,20,0.25) 55%,
    rgba(26,23,20,0.05) 100%
  );
}
 
.card-overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
  transform: translateY(4px);
  transition: transform 0.4s;
}
 
.card:hover .card-overlay h3 {
  transform: translateY(0);
}
 
.card-overlay p {
  font-size: clamp(11px, 1.2vw, 13px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 320px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s 0.05s, transform 0.4s 0.05s;
}
 
.card:hover .card-overlay p {
  opacity: 1;
  transform: translateY(0);
}
 
/* ════════════════════════════════════════
   MEET SECTION (dark band)
════════════════════════════════════════ */
.meet-section {
  background: var(--dark);
  padding: clamp(70px, 12vw, 140px) clamp(24px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
 
.meet-image-wrap {
  position: relative;
}
 
.meet-image-wrap::before {
  content: '';
  position: absolute;
  top: -22px;
  left: -22px;
  right: 22px;
  bottom: 22px;
  border: 1px solid rgba(201, 169, 110, 0.28);
  pointer-events: none;
  z-index: 0;
}
 
.meet-image-wrap img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 1;
}
 
.meet-text { color: #fff; }
 
.meet-text .section-label { color: var(--gold); }
 
.meet-text .section-title {
  color: #fff;
  margin-bottom: 22px;
}
 
.meet-text .section-title em { color: var(--gold-light); }
 
.meet-text p {
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.9;
  margin-bottom: 18px;
}
 
.stat-row {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  margin: 38px 0;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
 
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}
 
.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
 
/* ════════════════════════════════════════
   CEO / DESIGNER SPLIT
════════════════════════════════════════ */
.designer-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(360px, 55vw, 600px);
}
 
.designer-img {
  overflow: hidden;
}
 
.designer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.7s ease;
}
 
.designer-img:hover img {
  transform: scale(1.04);
}
 
.designer-text {
  padding: clamp(44px, 7vw, 90px) clamp(28px, 5vw, 70px);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
.designer-text h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1.2;
}
 
.designer-text p {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 16px;
}
 
/* ════════════════════════════════════════
   QUOTE BAND
════════════════════════════════════════ */
.quote-band {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(55px, 9vw, 100px) clamp(24px, 14vw, 200px);
  text-align: center;
}
 
.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 36px);
  font-style: italic;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
  position: relative;
}
 
.quote-band blockquote::before {
  content: '\201C';
  position: absolute;
  top: -30px;
  left: -30px;
  font-size: clamp(60px, 8vw, 100px);
  color: var(--gold);
  opacity: 0.25;
  font-family: var(--font-display);
  line-height: 1;
}
 
.quote-band cite {
  display: block;
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
 
/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--dark);
  padding: clamp(55px, 9vw, 100px) clamp(24px, 6vw, 90px) clamp(28px, 4vw, 44px);
}
 
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 90px);
  padding-bottom: clamp(32px, 5vw, 55px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
}
 
.footer-logo {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 400;
  display: block;
  margin-bottom: 18px;
}
 
.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.85;
  max-width: 290px;
}
 
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 20px;
}
 
.footer-col ul {
  list-style: none;
}
 
.footer-col li {
  margin-bottom: 12px;
}
 
.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
 
.footer-col a:hover {
  color: var(--gold);
}
 
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
 
.footer-bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.5px;
}
 
/* ════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
════════════════════════════════════════ */
@media (max-width: 900px) {
  .meet-section {
    grid-template-columns: 1fr;
  }
 
  .meet-image-wrap::before {
    top: -14px;
    left: -14px;
    right: 14px;
    bottom: 14px;
  }
 
  .meet-image-wrap img {
    aspect-ratio: 4 / 3;
  }
 
  .designer-split {
    grid-template-columns: 1fr;
  }
 
  .designer-img {
    height: 380px;
  }
 
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
 
  .footer-brand {
    grid-column: span 2;
  }
}
 
/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
════════════════════════════════════════ */
@media (max-width: 600px) {
  nav { display: none; }
  .hamburger { display: flex; }
 
  .cards-grid {
    grid-template-columns: 1fr;
  }
 
  .card {
    aspect-ratio: 4 / 3;
  }
 
  .stat-row {
    gap: 20px;
  }
 
  .footer-grid {
    grid-template-columns: 1fr;
  }
 
  .footer-brand {
    grid-column: span 1;
  }
 
  .quote-band {
    padding-left: clamp(24px, 8vw, 50px);
    padding-right: clamp(24px, 8vw, 50px);
  }
 
  .quote-band blockquote::before {
    display: none;
  }
}
 
/* ════════════════════════════════════════
   RESPONSIVE — TINY / APPLE WATCH (≤ 200px)
════════════════════════════════════════ */
@media (max-width: 200px) {
  :root { --nav-h: 50px; }
  header { padding: 0 10px; }
  .logo { font-size: 11px; letter-spacing: 1px; }
  .hamburger span { width: 18px; }
  .hero-title { font-size: 18px; }
  .hero-subtitle { font-size: 11px; }
  .section { padding: 30px 12px; }
  .section-title { font-size: 18px; margin-bottom: 24px; }
  .btn { padding: 10px 18px; font-size: 8px; }
  .stat-row { flex-direction: column; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}
 