/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark-brown: #734E4C;
  --olive: #C0BB95;
  --dusty-pink: #E7C0C0;
  --pale-pink: #FFF5F5;
  --cream: #FAF4E6;
  --light-pink: #FFCED0;
  --taupe: #B9A292;
  --pale-grey: #DDE3E5;
  --very-light-pink: #F3E1E1;
  --light-beige: #DEC7B5;

  --font-script: 'Great Vibes', cursive;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Lato', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--dark-brown);
  line-height: 1.7;
  background: var(--pale-pink);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 245, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--dusty-pink);
  transition: box-shadow 0.3s;
}

.header--scrolled {
  box-shadow: 0 2px 20px rgba(115, 78, 76, 0.08);
}

.header__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

/* === LOGO === */
.logo img {
  height: 90px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
}

.header .logo img {
  filter: brightness(0) saturate(100%) invert(31%) sepia(15%) saturate(1200%) hue-rotate(332deg) brightness(95%) contrast(87%);
}


.logo__script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--dark-brown);
}

.logo__block {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--dark-brown);
  margin-top: -4px;
}

.logo__sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 2px;
}

/* === NAV === */
.nav {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-brown);
  position: relative;
  transition: color 0.3s;
}

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

.nav__link:hover::after { width: 100%; }

.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: 2px;
  background: var(--dark-brown);
  transition: transform 0.3s, opacity 0.3s;
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--very-light-pink) 0%, var(--cream) 40%, var(--light-beige) 70%, var(--taupe) 100%);
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 245, 245, 0.15);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark-brown);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark-brown);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--dark-brown);
  opacity: 0.8;
  margin-bottom: 40px;
}

/* === BUTTON === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--dark-brown);
  background: var(--dark-brown);
  color: var(--pale-pink);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: transparent;
  color: var(--dark-brown);
}

.btn--outline {
  background: transparent;
  color: var(--dark-brown);
}

.btn--outline:hover {
  background: var(--dark-brown);
  color: var(--pale-pink);
}

/* === SECTIONS === */
.section {
  padding: 100px 0;
}

.section--cream { background: var(--cream); }
.section--white { background: var(--pale-pink); }
.section--pale { background: var(--very-light-pink); }
.section--taupe { background: var(--light-beige); }

.section__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 12px;
}

.section__label--center { text-align: center; }

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--dark-brown);
  margin-bottom: 24px;
  line-height: 1.3;
}

.section__title--center { text-align: center; }

/* === ABOUT === */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__text p {
  margin-bottom: 16px;
  color: var(--dark-brown);
  opacity: 0.85;
}

.about__text .btn { margin-top: 12px; }

.about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* === PLACEHOLDER IMAGES === */
.placeholder-img {
  background: var(--dusty-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--dark-brown);
  opacity: 0.6;
  border-radius: 2px;
}

.placeholder-img--tall {
  aspect-ratio: 3/4;
  grid-row: span 2;
}

.placeholder-img--square { aspect-ratio: 1; }
.placeholder-img--landscape { aspect-ratio: 4/3; }

/* === SERVICES === */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.service-card {
  text-align: center;
  padding: 40px 24px;
  background: white;
  border: 1px solid var(--dusty-pink);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(115, 78, 76, 0.08);
}

.service-card__icon {
  font-size: 2rem;
  color: var(--taupe);
  margin-bottom: 20px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark-brown);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* === GALLERY === */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.gallery__card {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery__card:hover { transform: translateY(-4px); }

.gallery__card .placeholder-img {
  margin-bottom: 16px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.gallery__card:hover .placeholder-img {
  transform: scale(1.03);
}

.gallery__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark-brown);
}

.gallery__venue {
  font-size: 0.85rem;
  color: var(--taupe);
  margin-top: 4px;
}

/* === CONTACT === */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__info p {
  opacity: 0.85;
  margin-bottom: 16px;
}

.contact__details {
  margin-top: 24px;
}

.contact__details p {
  margin-bottom: 8px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__form input,
.contact__form textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 14px 18px;
  border: 1px solid var(--taupe);
  background: rgba(255, 245, 245, 0.6);
  color: var(--dark-brown);
  outline: none;
  transition: border-color 0.3s;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: var(--taupe);
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--dark-brown);
}

.contact__form textarea { resize: vertical; }

.contact__form .btn {
  align-self: flex-start;
}

/* === FOOTER === */
.footer {
  background: var(--dark-brown);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo--footer img {
  filter: invert(1) brightness(1.8);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  color: var(--light-beige);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer__social-link:hover {
  opacity: 1;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--light-beige);
  opacity: 0.7;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .header__inner { height: 70px; }

  .logo img { height: 55px; width: 55px; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 245, 245, 0.98);
    flex-direction: column;
    align-items: center;
    padding: 32px 0;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    border-bottom: 1px solid var(--dusty-pink);
    z-index: 99;
  }

  .nav--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__images { order: -1; }

  .services { grid-template-columns: 1fr; gap: 24px; }
  .gallery { grid-template-columns: 1fr; gap: 24px; }
  .contact { grid-template-columns: 1fr; gap: 40px; }

  .footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
