/* ========================================
   VINCETTI CASA — Curated Italian Luxury Living
   Brand Colors:
   --black: #1A1A1E    --gold: #C8A96E
   --cream: #F5F0E8    --charcoal: #3D3D3D
   --warm: #8B7355     --stone: #D4CCBC
   ======================================== */

:root {
  --black: #1A1A1E;
  --gold: #C8A96E;
  --cream: #F5F0E8;
  --charcoal: #3D3D3D;
  --warm: #8B7355;
  --stone: #D4CCBC;
  --light: #FAF8F5;
  --white: #FFFFFF;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ===== NAVIGATION ===== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: all 0.4s ease;
}
#nav.scrolled {
  background: rgba(26, 26, 30, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 40px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 6px;
  color: var(--cream);
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--cream);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.nav-toggle span:first-child { top: 4px; }
.nav-toggle span:last-child { bottom: 4px; }
.nav-toggle.active span:first-child { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.active span:last-child { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 30, 0.4) 0%,
    rgba(26, 26, 30, 0.2) 40%,
    rgba(26, 26, 30, 0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(32px, 6vw, 64px);
  letter-spacing: clamp(6px, 1.5vw, 14px);
  color: var(--cream);
  margin-bottom: 12px;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 16px;
}
.hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--stone);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.3s;
  animation: float 2s ease-in-out infinite;
}
.hero-scroll:hover { opacity: 1; }
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 0;
}
.section-dark {
  background: var(--black);
}
.section-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label-light { color: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--black);
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.section-title-light { color: var(--cream); }
.section-intro {
  font-size: 16px;
  color: var(--stone);
  max-width: 640px;
  margin-bottom: 60px;
  line-height: 1.8;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: var(--warm);
  line-height: 1.6;
  margin-bottom: 24px;
}
.about-text p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ===== STATEMENT ===== */
.statement {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.statement-img {
  position: absolute;
  inset: 0;
}
.statement-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.statement-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 30, 0.6);
}
.statement-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 30px;
}
.statement-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20px, 3vw, 32px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  max-width: 700px;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.service-card {
  border-top: 1px solid rgba(200, 169, 110, 0.3);
  padding-top: 30px;
}
.service-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.8;
}

/* ===== PORTFOLIO / GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
}
.gallery-item:not(.gallery-wide) img {
  height: 360px;
}
.gallery-wide img {
  height: 500px;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(26,26,30,0.7), transparent);
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  text-align: center;
  background: var(--cream);
}
.cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--black);
  margin-bottom: 20px;
}
.cta-text {
  font-size: 16px;
  color: var(--charcoal);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--black);
  padding: 16px 40px;
  border: 1px solid var(--black);
  transition: all 0.3s ease;
}
.btn:hover {
  background: transparent;
  color: var(--black);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-block {
  margin-bottom: 32px;
}
.contact-block h3 {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-block p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.8;
}
.contact-block a {
  color: var(--stone);
  border-bottom: 1px solid rgba(212, 204, 188, 0.3);
  transition: border-color 0.3s;
}
.contact-block a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.contact-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  padding: 60px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(200, 169, 110, 0.2);
}
.footer-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 8px;
  color: var(--cream);
  margin-bottom: 6px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.footer-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
}
.footer-details p {
  font-size: 12px;
  color: var(--stone);
  margin-bottom: 4px;
}
.footer-details a {
  color: var(--stone);
  transition: color 0.3s;
}
.footer-details a:hover { color: var(--gold); }
.footer-copy {
  margin-top: 30px;
  font-size: 11px;
  color: rgba(212, 204, 188, 0.4);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery-wide {
    grid-column: span 1;
  }
  .gallery-item:not(.gallery-wide) img,
  .gallery-wide img {
    height: 280px;
  }
  .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }
  .section { padding: 80px 0; }
}

@media (max-width: 640px) {
  #nav { padding: 16px 20px; }
  #nav.scrolled { padding: 12px 20px; }
  .nav-logo { font-size: 14px; letter-spacing: 4px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 30, 0.97);
    flex-direction: column;
    padding: 30px 20px;
    gap: 24px;
  }
  .nav-links.open { display: flex; }
  .container { padding: 0 20px; }
  .about-image img,
  .contact-image img { height: 300px; }
  .cta { padding: 60px 0; }
  .statement { height: 50vh; min-height: 300px; }
}
