/* ═══════════════════════════════════════════
   IVORY & OAK EVENTS — Wedding Planning
   ═══════════════════════════════════════════ */

:root {
  --ivory: #FAF7F2;
  --cream: #F5F0E8;
  --sage: #A8B5A0;
  --sage-dark: #7A8C72;
  --dusty-rose: #C9A9A6;
  --charcoal: #3A3A3A;
  --warm-gray: #6B6560;
  --gold: #C4A265;
  --white: #FFFFFF;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.2;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  text-transform: uppercase;
}

.nav-logo span { color: var(--sage-dark); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--warm-gray);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage-dark);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) { opacity: 0; }

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(170deg, var(--ivory) 0%, var(--cream) 40%, rgba(168,181,160,0.15) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,181,160,0.08) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,166,0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 550px;
  margin: 0 auto 2.5rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn:hover {
  background: var(--charcoal);
  color: var(--ivory);
}

.btn-filled {
  background: var(--charcoal);
  color: var(--ivory);
}

.btn-filled:hover {
  background: transparent;
  color: var(--charcoal);
}

/* ─── SECTIONS ─── */
section { padding: 7rem 2rem; }

.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.section-subtitle {
  text-align: center;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 0.95rem;
}

/* ─── ABOUT ─── */
.about { background: var(--white); }

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  aspect-ratio: 3/4;
  background: var(--cream);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(196,162,101,0.2);
  border-radius: 2px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--warm-gray);
  margin-bottom: 1.2rem;
  font-size: 0.92rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.stat h3 {
  font-size: 2.2rem;
  color: var(--sage-dark);
  font-weight: 400;
}

.stat p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 500;
}

/* ─── SERVICES ─── */
.services { background: var(--ivory); }

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--warm-gray);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  font-size: 0.82rem;
  color: var(--warm-gray);
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.service-features li::before {
  content: '\00B7';
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* ─── FEATURED IN ─── */
.featured {
  background: var(--white);
  padding: 5rem 2rem;
}

.featured-logos {
  max-width: 1000px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.featured-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--warm-gray);
  opacity: 0.5;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.featured-logo:hover {
  opacity: 0.8;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: linear-gradient(170deg, var(--cream) 0%, rgba(168,181,160,0.1) 100%);
}

.testimonials-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.04);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ─── PROCESS ─── */
.process { background: var(--white); }

.process-steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--sage);
  font-weight: 300;
  margin-bottom: 0.8rem;
}

.process-steps h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.process-steps p {
  font-size: 0.82rem;
  color: var(--warm-gray);
}

/* ─── CONTACT ─── */
.contact { background: var(--ivory); }

.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

input, textarea, select {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--sage);
}

input::placeholder, textarea::placeholder {
  color: #B5B0A8;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-info-item { text-align: center; }

.contact-info-item h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.3rem;
  font-family: 'Montserrat', sans-serif;
}

.contact-info-item p {
  font-size: 0.88rem;
  color: var(--warm-gray);
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  color: rgba(250,247,242,0.6);
  text-align: center;
  padding: 3rem 2rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 1rem;
}

footer p {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(250,247,242,0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }
}
