/* ============================================================
   Englewood Luxe — styles.css
   Luxury Editorial Design
   Palette: Dark Charcoal (#1F1F1F) · Warm Beige · Champagne
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --charcoal:   #1f1f1f;
  --beige:       #d4c4b5;
  --champagne:  #f5f0e1;
  --white:      #ffffff;
  --text-main:  #f5f0e1;
  --text-dark:  #1f1f1f;
  --accent:     #d4c4b5;
  --shadow:     0 10px 40px rgba(0, 0, 0, 0.5);
  --radius:     50px;
  --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  --font-head:  'Playfair Display', serif;
  --font-body:  'Montserrat', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transition: var(--transition);
}

.reveal.active {
  opacity: 1;
  animation: fadeIn 1s forwards;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.1;
  font-weight: 700;
}

h1 { font-size: clamp(3.5rem, 8vw, 6rem); color: var(--champagne); }
h2 { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 2rem; color: var(--beige); }
h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--champagne); }

.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--beige);
  margin-bottom: 2rem;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--beige);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--champagne);
  box-shadow: 0 0 20px rgba(212, 196, 181, 0.4);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--champagne);
  border-color: var(--champagne);
}

.btn-outline:hover {
  background: var(--champagne);
  color: var(--charcoal);
  box-shadow: 0 0 20px rgba(245, 240, 225, 0.4);
}

/* ---------- HEADER ---------- */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(31, 31, 31, 0.9);
  backdrop-filter: blur(15px);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--champagne);
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--beige);
}

.nav-links a:hover { color: var(--champagne); }

.header-phone {
  font-weight: 700;
  font-size: 1rem;
  color: var(--champagne);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 30px; height: 2px;
  background: var(--beige);
  margin: 8px 0;
}

/* ---------- HERO ---------- */
#hero {
  padding-top: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--charcoal);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 5rem;
}

.hero-content {
  z-index: 2;
}

.hero-image-wrap {
  position: relative;
  height: 80vh;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-cta {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
}

/* ---------- ABOUT ---------- */
#about {
  padding: 15rem 0;
  background: #1a1a1a;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 3rem;
}

.about-text p {
  font-size: 1.2rem;
  color: var(--beige);
  margin-bottom: 2rem;
}

/* ---------- SERVICES ---------- */
#services {
  padding: 15rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 6rem;
}

.service-card {
  background: #262626;
  padding: 4rem;
  transition: var(--transition);
  border: 1px solid rgba(212, 196, 181, 0.1);
}

.service-card:hover {
  background: var(--beige);
  transform: scale(1.02);
}

.service-card:hover h3, .service-card:hover p {
  color: var(--charcoal);
}

.service-card h3 {
  margin-bottom: 1.5rem;
}

.service-card p {
  color: var(--beige);
}

/* ---------- WHY CHOOSE US ---------- */
#why {
  padding: 15rem 0;
  background: #1a1a1a;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-top: 6rem;
}

.why-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--beige);
  opacity: 0.7;
}

/* ---------- GALLERY ---------- */
#gallery {
  padding: 15rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 6rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ---------- REVIEWS ---------- */
#reviews {
  padding: 15rem 0;
  background: #1a1a1a;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 6rem;
}

.review-card {
  padding: 4rem;
  background: #262626;
  border-left: 5px solid var(--beige);
}

.stars {
  color: var(--beige);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

/* ---------- CONTACT ---------- */
#contact {
  padding: 15rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 8rem;
}

.contact-form-wrap {
  background: #262626;
  padding: 6rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 3rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  color: var(--beige);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 1.5rem 0;
  border: none;
  border-bottom: 1px solid rgba(212, 196, 181, 0.3);
  background: transparent;
  color: var(--white);
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  border-bottom-color: var(--beige);
}

#form-success {
  display: none;
  padding: 3rem;
  background: var(--beige);
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

/* ---------- MAP ---------- */
#map {
  height: 600px;
}

#map iframe {
  width: 100%;
  height: 100%;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* ---------- FOOTER ---------- */
#footer {
  padding: 10rem 0;
  background: #1a1a1a;
  color: var(--beige);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 10rem;
}

.sticky-call {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 1001;
  background: var(--beige);
  color: var(--charcoal);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  font-size: 1.5rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { height: 60vh; }
  .about-layout { grid-template-columns: 1fr; gap: 5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 5rem; }
}

@media (max-width: 992px) {
  .nav-links, .header-cta { display: none; }
  .hamburger { display: block; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 5rem; }
  .sticky-call { display: flex; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 3rem; }
}
