:root {
  --bg-light: #ecebea;
  --bg-dark: #000000;
  --text-dark: #111111;
  --text-soft: #6c6c6c;
  --border-soft: rgba(0, 0, 0, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cormorant Garamond", Georgia, serif;
  background: var(--bg-light);
  color: var(--text-dark);
}

.pt-lg-6 {
  padding-top: 5rem !important;
}

.py-lg-6 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

.brand-wordmark,
.navbar-nav .nav-link {
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.navbar {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-brand {
  color: rgba(255, 255, 255, 0.96);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.hero-section {
  background: var(--bg-light);
  padding-top: 6.75rem;
  padding-bottom: 3.5rem;
}

.hero-logo {
  width: min(300px, 48vw);
  margin-bottom: 1.25rem;
}

.hero-script {
  font-family: "Great Vibes", "Apple Chancery", "Snell Roundhand", cursive;
  font-size: clamp(2.3rem, 4.2vw, 4.5rem);
  line-height: 1.1;
}

.gallery-img {
  width: 100%;
  height: clamp(300px, 48vw, 530px);
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.4s ease;
}

.gallery-row > div {
  overflow: hidden;
}

.gallery-row > div:hover .gallery-img {
  transform: scale(1.035);
  opacity: 0.92;
}

.section-title {
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1;
}

.section-dark {
  background: #000;
}

.feature-photo {
  width: min(100%, 290px);
}

.feature-quote {
  max-width: 760px;
  margin-inline: auto;
  color: #fff;
  text-align: center;
}

.feature-quote p {
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.08;
  margin-bottom: 2rem;
  font-weight: 600;
}

.feature-quote footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.quote-name {
  font-size: clamp(2rem, 3.1vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.quote-title {
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  opacity: 0.95;
}

.design-photo,
.appointment-photo {
  width: 100%;
  object-fit: cover;
}

.design-copy {
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1.08;
  font-weight: 600;
}

.floral-art {
  width: min(100%, 360px);
  opacity: 0.95;
}

.appointment-card {
  padding: 1.25rem 0.5rem 0 0.5rem;
}

.luxury-label {
  font-size: clamp(1.8rem, 2.8vw, 2.65rem);
  color: var(--text-soft);
  margin-bottom: 0.55rem;
  font-weight: 500;
}

.luxury-input {
  border-radius: 0;
  border: 1px solid var(--border-soft);
  min-height: 56px;
  font-size: 1.2rem;
  padding: 0.85rem 1rem;
  background: #9f9f9f;
  color: #fff;
}

.luxury-input::placeholder {
  color: rgba(255,255,255,0.78);
}

.luxury-input:focus {
  border-color: #000;
  box-shadow: none;
  background: #878787;
  color: #fff;
}

.luxury-textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-luxury,
.btn-luxury-outline {
  min-width: 220px;
  border-radius: 0;
  padding: 0.85rem 1.25rem;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.form-help {
  font-size: 1rem;
  color: #666;
}

.appointment-preview {
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 1.25rem;
}

.preview-title {
  font-size: 2rem;
  font-weight: 600;
}

.preview-copy {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.site-footer {
  min-height: 220px;
  display: flex;
  align-items: center;
}

.footer-link {
  color: rgba(255,255,255,0.84);
  text-decoration: none;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.footer-link:hover,
.footer-link:focus {
  color: #fff;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #000;
    padding: 0.75rem 0;
  }

  .hero-section {
    padding-top: 5.5rem;
  }

  .feature-quote,
  .design-copy {
    text-align: center;
  }

  .appointment-card {
    padding-right: 0;
  }
}

@media (max-width: 767.98px) {
  .gallery-img {
    height: 340px;
  }

  .section-title {
    line-height: 1.1;
  }

  .feature-quote p,
  .design-copy {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
  }

  .luxury-label {
    font-size: 1.9rem;
  }

  .site-footer {
    min-height: 160px;
  }
}
