/* Hero Block */
.block-hero {
  position: relative;
  height: var(--hero-height, 1100px);
  overflow: hidden;
  margin-bottom: 60px;
}
.block-hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-hero .hero-content {
  position: absolute;
  left: 58%;
  top: 315px;
  width: 544px;
  z-index: 2;
}
.block-hero .hero-label {
  font-family: var(--font-montserrat);
  font-size: var(--text-md);
  font-weight: 400;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.block-hero h1 {
  font-family: var(--font-freight);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-dark);
  text-transform: uppercase;
  line-height: 1.049;
  margin-bottom: 24px;
}
.block-hero .hero-desc {
  font-family: var(--font-montserrat);
  font-size: var(--text-md);
  line-height: 1.56;
  color: var(--color-dark);
  margin-bottom: 32px;
}

/* Image + Text Block */
.block-image-text {
  display: flex;
  align-items: center;
  padding: 80px 60px;
  gap: 60px;
}
.block-image-text.image-right {
  flex-direction: row-reverse;
  padding: 80px 60px;
  gap: 60px;
}
.block-image-text.image-right .image-text__image {
  flex: 1;
}
.block-image-text.image-right .image-text__image img {
  height: 571px;
}
.block-image-text.image-right .image-text__content {
  flex: 0 0 45%;
  padding: 100px;
}
.block-image-text .image-text__image {
  flex: 0 0 50%;
}
.block-image-text .image-text__image img {
  width: 100%;
  height: auto;
  min-height: 592px;
  object-fit: cover;
}
.block-image-text .image-text__content {
  flex: 1;
  padding: 100px;
}
.block-image-text .image-text__content h2 {
  font-family: var(--font-freight);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-dark);
  text-transform: uppercase;
  line-height: 1.049;
  margin-bottom: 32px;
}
.block-image-text .image-text__body p {
  font-family: var(--font-montserrat);
  font-size: var(--text-md);
  color: var(--color-dark);
  line-height: 1.56;
  margin-bottom: 16px;
}
.block-image-text .btn-outline {
  margin-top: 24px;
}

/* Card Grid Block */
.block-card-grid {
  padding: var(--section-padding) 0 100px;
  text-align: center;
}
.card-grid__cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
}
.card-grid__card {
  position: relative;
  width: 454px;
  height: 680px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.card-grid__card-img {
  position: absolute;
  inset: 0;
}
.card-grid__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* No zoom on hover */
}

/* Pink gradient — bottom fade, smooth */
.card-grid__card-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(252,217,213,0.95) 0%, rgba(252,217,213,0.6) 40%, rgba(252,217,213,0) 100%);
  transition: height 0.5s ease;
}

/* On hover — pink rises up */
.card-grid__card:hover .card-grid__card-gradient {
  height: 70%;
}

.card-grid__card-text {
  position: relative;
  z-index: 2;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-grid__label {
  font-family: var(--font-freight);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-dark-alt);
  text-transform: uppercase;
}

/* Product Cards Block */
.block-product-cards {
  padding: var(--section-padding) 0 100px;
  text-align: center;
}
.product-cards__grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
  align-items: stretch;
}
.product-cards__card {
  position: relative;
  width: 454px;
  text-align: center;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.product-cards__badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-montserrat);
  font-size: var(--text-xs);
  padding: 8px 16px;
  z-index: 2;
}
.product-cards__img {
  display: block;
  width: 100%;
  height: 550px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.product-cards__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform var(--transition-slow);
}
.product-cards__img .product-cards__hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.product-cards__card:hover .product-cards__img img:first-child {
  transform: scale(1.04);
}
.product-cards__card:hover .product-cards__img .product-cards__hover-img {
  opacity: 1;
}
.product-cards__card h3 {
  font-family: var(--font-cinzel);
  font-size: var(--text-md);
  font-weight: 400;
  color: var(--color-black);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-cards__card h3 a {
  color: inherit;
}
.product-cards__price {
  font-family: var(--font-futura);
  font-size: var(--text-md);
  color: var(--color-black);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Add to Cart — fades into reserved bottom space on hover */
.product-cards__card .btn-cart {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  padding: 0;
}
.product-cards__card:hover .btn-cart {
  opacity: 1;
}

/* Gallery Grid Block */
.block-gallery-grid {
  padding: var(--section-padding) 0 0;
  text-align: center;
}
.gallery-grid {
  display: grid;
  gap: 0;
  margin-top: 60px;
}
.gallery-grid__item {
  aspect-ratio: 1;
  overflow: hidden;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-grid__item:hover img {
  transform: scale(1.08);
}

/* Gallery Slider */
.gallery-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 60px;
}
.gallery-slider {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  grid-auto-columns: 20%;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}
.gallery-slider::-webkit-scrollbar { display: none; }
.gallery-slider__item {
  aspect-ratio: 1;
  overflow: hidden;
  scroll-snap-align: start;
}
.gallery-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-slider__item:hover img {
  transform: scale(1.08);
}
.gallery-arrow {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: border-color 0.3s;
}
.gallery-arrow:hover {
  border-color: var(--color-dark);
}
.gallery-arrow-left { left: 16px; }
.gallery-arrow-right { right: 16px; }

/* Pink CTA Block */
.block-pink-cta {
  background: var(--color-pink);
}
.pink-cta__inner {
  display: flex;
  padding: 60px 80px;
  gap: 40px;
  align-items: flex-start;
  max-width: var(--container-max);
  margin: 0 auto;
}
.pink-cta__left,
.pink-cta__right {
  flex: 1;
}
.pink-cta__center {
  flex: 0 0 372px;
}
.pink-cta__center img {
  width: 372px;
  height: 380px;
  object-fit: cover;
}
.pink-cta__inner h2 {
  font-family: var(--font-freight);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-dark-alt);
  text-transform: uppercase;
  line-height: 1.049;
  margin-bottom: 20px;
}
.pink-cta__body p {
  font-family: var(--font-montserrat);
  font-size: var(--text-base);
  color: var(--color-black);
  line-height: 1.53;
  margin-bottom: 12px;
}
.pink-cta__body ul {
  list-style: none;
  font-family: var(--font-montserrat);
  font-size: var(--text-base);
  color: var(--color-black);
  line-height: 1.53;
}
.pink-cta__body ul li {
  margin-bottom: 4px;
}

/* Text Content Block */
.block-text-content {
  padding: var(--section-padding) 0;
}
.block-text-content .section-heading {
  margin-bottom: 40px;
}
.text-content__body {
  max-width: 800px;
  margin: 0 auto;
}
.text-content__body p {
  font-family: var(--font-montserrat);
  font-size: var(--text-md);
  color: var(--color-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}
.text-content__body h3 {
  font-family: var(--font-freight);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-dark-alt);
  text-transform: uppercase;
  margin: 32px 0 16px;
}
.text-content__body ul,
.text-content__body ol {
  margin: 0 0 16px 20px;
  font-family: var(--font-montserrat);
  font-size: var(--text-md);
  line-height: 1.6;
}
.text-content__body ul {
  list-style: disc;
}
.text-content__body ol {
  list-style: decimal;
}
/* FAQ Accordion Block */
.block-faq-accordion {
  padding: var(--section-padding) 0;
}
.block-faq-accordion .section-heading {
  margin-bottom: 40px;
  text-align: center;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-montserrat);
  font-size: var(--text-md);
  font-weight: 400;
  color: var(--color-dark);
  list-style: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 0 24px;
  font-family: var(--font-montserrat);
  font-size: var(--text-base);
  color: var(--color-gray);
  line-height: 1.7;
}
.faq-answer p {
  margin-bottom: 12px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
/* Contact Form Block */
.block-contact-form {
  padding: var(--section-padding) 0;
}
.block-contact-form .section-heading {
  margin-bottom: 20px;
  text-align: center;
}
.contact-form__text {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
  font-family: var(--font-montserrat);
  font-size: var(--text-md);
  color: var(--color-gray);
  line-height: 1.6;
}
.contact-form__form {
  max-width: 700px;
  margin: 0 auto;
}
/* Style form inputs to match design */
.contact-form__form input[type="text"],
.contact-form__form input[type="email"],
.contact-form__form input[type="tel"],
.contact-form__form textarea,
.contact-form__form select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-montserrat);
  font-size: var(--text-base);
  border: 1px solid #ddd;
  background: var(--color-white);
  color: var(--color-dark);
  margin-bottom: 16px;
  border-radius: 0;
  -webkit-appearance: none;
}
.contact-form__form input::placeholder,
.contact-form__form textarea::placeholder {
  color: var(--color-gray-light);
}
.contact-form__form input[type="submit"],
.contact-form__form button[type="submit"] {
  background: var(--color-pink);
  color: var(--color-dark);
  padding: 16px 48px;
  font-family: var(--font-futura);
  font-size: var(--text-md);
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.contact-form__form input[type="submit"]:hover,
.contact-form__form button[type="submit"]:hover {
  background: var(--color-pink-hover);
}
/* Team Grid Block */
.block-team-grid {
  padding: var(--section-padding) 0;
}
.block-team-grid .section-heading {
  margin-bottom: 60px;
  text-align: center;
}
.team-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.team-grid__card {
  text-align: center;
}
.team-grid__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 20px;
}
.team-grid__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.team-grid__card:hover .team-grid__photo img {
  transform: scale(1.04);
}
.team-grid__name {
  font-family: var(--font-freight);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.team-grid__name a {
  color: inherit;
}
.team-grid__role {
  font-family: var(--font-montserrat);
  font-size: var(--text-base);
  color: var(--color-gray);
}

/* ── Service Detail Page ── */
.svc-hero { position: relative; height: 800px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.svc-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.svc-hero h1 { position: relative; z-index: 2; font-family: var(--font-freight); font-size: var(--text-4xl); font-weight: 400; color: #fff; text-transform: uppercase; text-align: center; max-width: 411px; line-height: 1.05; }
.svc-section { display: flex; align-items: center; border-top: 1px solid #0f0f0f; }
.svc-section.reverse { flex-direction: row-reverse; }
.svc-section__image { flex: 0 0 47%; overflow: hidden; }
.svc-section__image img { width: 100%; height: 1080px; object-fit: cover; object-position: center top; }
.svc-section__content { flex: 1; padding: 100px 200px; }
.svc-section__content h2 { font-family: var(--font-freight); font-size: var(--text-3xl); font-weight: 400; color: var(--color-dark); text-transform: uppercase; line-height: 1.049; margin-bottom: 24px; }
.svc-section__content h3 { font-family: var(--font-freight); font-size: 24px; font-weight: 400; color: var(--color-dark); text-transform: uppercase; margin-bottom: 16px; }
.svc-section__content p { font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); line-height: 1.65; opacity: 0.8; margin-bottom: 14px; }
.svc-section__content .bold { font-weight: 400; }
.svc-section__content ul { font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); line-height: 1.65; opacity: 0.8; list-style: disc; margin: 8px 0 14px 24px; }
.svc-section__content ol { font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); line-height: 1.65; opacity: 0.8; list-style: decimal; margin: 8px 0 14px 24px; }
.svc-section__content li { margin-bottom: 4px; }
.svc-faq { padding: 80px 60px; text-align: center; }
.svc-faq .section-heading { margin-bottom: 40px; }
.svc-faq-list { max-width: 1018px; margin: 0 auto; text-align: left; }
.svc-faq-item { border-bottom: 1px solid #ddd; }
.svc-faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-family: var(--font-montserrat); font-size: 20px; font-weight: 400; color: var(--color-dark); opacity: 0.8; list-style: none; }
.svc-faq-q::-webkit-details-marker { display: none; }
.svc-faq-icon { flex-shrink: 0; transition: transform 0.3s; }
.svc-faq-item[open] .svc-faq-icon { transform: rotate(45deg); }
.svc-faq-a { padding: 0 0 20px; font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); opacity: 0.8; line-height: 1.65; }
.svc-gallery { text-align: center; padding: 80px 0 0; }
.svc-gallery h2 { font-family: var(--font-freight); font-size: var(--text-3xl); font-weight: 400; color: var(--color-dark); text-transform: uppercase; margin-bottom: 40px; }
.svc-gallery__nav { display: none; }
.svc-gallery__scroll { position: relative; }
.svc-gallery__grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  grid-auto-columns: calc(100% / 5);
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.svc-gallery__grid::-webkit-scrollbar { display: none; }
.svc-gallery__scroll .svc-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0f0f0f;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.svc-gallery__scroll .svc-gallery__arrow:hover { background: #fff; }
.svc-gallery__scroll .svc-gallery__arrow--left { left: 16px; }
.svc-gallery__scroll .svc-gallery__arrow--right { right: 16px; }
.svc-gallery__grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center center;
  scroll-snap-align: start;
  cursor: pointer;
  transition: opacity 0.2s;
}
/* Magnifier overlay on hover */
.svc-gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.svc-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(252,217,213,0.3) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.5'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") center center no-repeat;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.svc-gallery__item:hover::after {
  opacity: 1;
}
/* Static 4x2 grid (8 or fewer images) */
.svc-gallery--static .svc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: row;
  overflow: hidden;
}
.svc-gallery--static .svc-gallery__arrow { display: none; }
/* Lightbox */
.svc-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}
.svc-lightbox.active { display: flex; }
.svc-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.svc-lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  z-index: 2;
}
.svc-lightbox__prev,
.svc-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 48px;
  background: rgba(0,0,0,0.3);
  border: none;
  cursor: pointer;
  width: 50px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.svc-lightbox__prev { left: 20px; }
.svc-lightbox__next { right: 20px; }
.svc-lightbox__prev:hover,
.svc-lightbox__next:hover { background: rgba(0,0,0,0.6); }
@media (max-width: 768px) {
  .svc-gallery { padding: 60px 0 0; }
  .svc-gallery h2 { padding: 0 20px; }
  .svc-gallery__scroll { overflow: hidden; }
  .svc-gallery__grid { grid-auto-columns: 50%; }
  .svc-gallery__grid img { height: 220px; }
  .svc-gallery--static .svc-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .svc-gallery__grid img { height: 180px; }
}
.svc-cta { background: var(--color-pink); padding: 80px 60px; text-align: center; }
.svc-cta h2 { font-family: var(--font-freight); font-size: var(--text-4xl); font-weight: 400; color: var(--color-black); margin-bottom: 24px; }
.svc-cta p { font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); opacity: 0.8; line-height: 1.65; max-width: 759px; margin: 0 auto 32px; }
.svc-cta .btn-pink { border: 1px solid var(--color-dark); }

/* ── Services Overview Page ── */
.svc-dark { background: var(--color-dark); color: #fff; display: flex; align-items: center; padding: 80px 60px; gap: 60px; }
.svc-dark__text { flex: 0 0 45%; }
.svc-dark__text h2 { font-family: var(--font-freight); font-size: var(--text-4xl); font-weight: 400; text-transform: uppercase; line-height: 1.049; margin-bottom: 32px; }
.svc-dark__text p { font-family: var(--font-montserrat); font-size: var(--text-md); line-height: 1.56; margin-bottom: 16px; }
.svc-dark__image { flex: 1; }
.svc-dark__image img { width: 100%; height: 660px; object-fit: cover; }
.svc-row { display: flex; align-items: center; border-top: 1px solid #ddd; }
.svc-row.reverse { flex-direction: row-reverse; }
.svc-row__image { flex: 0 0 47%; overflow: hidden; }
.svc-row__image img { width: 100%; height: 1080px; object-fit: cover; }
.svc-row__content { flex: 1; padding: 60px 80px; }
.svc-row__content h2 { font-family: var(--font-freight); font-size: var(--text-3xl); font-weight: 400; color: var(--color-dark); text-transform: uppercase; line-height: 1.049; margin-bottom: 16px; }
.svc-row__content p { font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); line-height: 1.56; margin-bottom: 16px; }
.svc-switcher { margin: 16px 0 32px; border-top: 1px solid #ddd; padding-top: 16px; }
.svc-switcher__item { font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); text-transform: uppercase; padding: 8px 0; cursor: pointer; transition: color 0.2s; line-height: 2; }
.svc-switcher__item:hover { color: var(--color-pink-hover); }
.svc-switcher__item.active { font-weight: 600; color: var(--color-dark); }
.svc-switcher__desc { font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); opacity: 0.8; line-height: 1.65; padding: 16px 0; border-top: 1px solid #eee; margin-top: 8px; display: none; }
.svc-switcher__desc.active { display: block; }
.svc-prices { font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); text-transform: uppercase; line-height: 2.5; margin: 16px 0 32px; border-top: 1px solid #ddd; padding-top: 16px; }

/* ── Team Member Page ── */
.tm-hero { position: relative; height: 810px; overflow: hidden; }
.tm-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.tm-section { display: flex; align-items: center; }
.tm-section.reverse { flex-direction: row-reverse; }
.tm-section__image { flex: 0 0 47%; overflow: hidden; }
.tm-section__image img { width: 100%; height: 760px; object-fit: cover; object-position: center top; }
.tm-section__content { flex: 1; padding: 60px 80px; }
.tm-section__content h2 { font-family: var(--font-freight); font-size: var(--text-4xl); font-weight: 400; color: var(--color-dark); text-transform: uppercase; line-height: 1.089; margin-bottom: 32px; }
.tm-section__content p { font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); line-height: 1.65; opacity: 0.8; margin-bottom: 14px; }
.tm-portfolio { text-align: center; padding: 80px 0 0; }
.tm-portfolio h2 { font-family: var(--font-freight); font-size: var(--text-3xl); font-weight: 500; color: var(--color-dark); text-transform: uppercase; margin-bottom: 40px; padding: 0 60px; }
.tm-cta { background: var(--color-pink); padding: 75px 60px; text-align: center; }
.tm-cta h2 { font-family: var(--font-freight); font-size: var(--text-xl); font-weight: 400; color: #060606; text-transform: uppercase; margin-bottom: 24px; }
.tm-cta p { font-family: var(--font-montserrat); font-size: var(--text-md); color: #060606; line-height: 1.43; max-width: 709px; margin: 0 auto 32px; }
.tm-cta .btn-pink { border: 1px solid var(--color-dark); }

/* ── Wedding Page ── */
.wed-hero { position: relative; height: 800px; overflow: hidden; }
.wed-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wed-hero__title { position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%); font-family: var(--font-freight); font-size: var(--text-4xl); font-weight: 400; color: #0f0f0f; text-transform: uppercase; text-align: center; line-height: 0.89; max-width: 564px; z-index: 2; }
.wed-section { display: flex; align-items: center; max-width: 1440px; margin: 0 auto; }
.wed-section.reverse { flex-direction: row-reverse; }
.wed-section.reverse .wed-section__text { padding: 100px 0 100px 100px; }
.wed-section__image { flex: 0 0 48%; overflow: hidden; }
.wed-section__image img { width: 100%; height: auto; object-fit: cover; }
.wed-section__text { flex: 1; padding: 100px 100px 100px 0; }
.wed-section__text h2 { font-family: var(--font-freight); font-size: var(--text-3xl); font-weight: 400; color: var(--color-dark); text-transform: uppercase; line-height: 1.126; margin-bottom: 32px; }
.wed-section__text p { font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); line-height: 1.65; opacity: 0.8; margin-bottom: 14px; }
.wed-section__text ul { font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); line-height: 1.65; opacity: 0.8; list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.wed-section__text ul li { margin-bottom: 0; }
.wed-section__text .bold-label { font-weight: 700; }
.wed-process { background: #060606; color: #fff; padding: 58px 60px 100px; text-align: center; }
.wed-process__header { margin-bottom: 80px; }
.wed-process__header .serif { font-family: var(--font-freight); font-size: 42px; font-weight: 400; text-transform: uppercase; display: inline; line-height: 1; }
.wed-process__header .script { font-family: var(--font-freight); font-size: 48px; font-weight: 400; text-transform: uppercase; display: inline; line-height: 1; margin-left: 8px; }
.wed-process__steps { display: flex; justify-content: center; max-width: 1200px; margin: 0 auto; }
.wed-process__step { flex: 1; padding: 0 40px; position: relative; text-align: center; }
.wed-process__step:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 0; width: 1px; height: 292px; background: rgba(255,255,255,0.3); }
.wed-process__step .step-num { font-family: 'FreightDispCmp Pro', var(--font-freight); font-size: var(--text-2xl); font-weight: 300; text-transform: capitalize; display: block; margin-bottom: 8px; }
.wed-process__step .step-title { font-family: var(--font-freight); font-size: var(--text-4xl); font-weight: 400; text-transform: uppercase; display: block; margin-bottom: 40px; line-height: 1; }
.wed-process__step .step-desc { font-family: var(--font-montserrat); font-size: var(--text-md); line-height: 1.22; opacity: 0.8; max-width: 275px; margin: 0 auto; }
.wed-faqs { padding: 80px 60px; max-width: 1200px; margin: 0 auto; }
.wed-faqs__title { font-family: var(--font-freight); font-size: var(--text-3xl); font-weight: 500; color: var(--color-dark); text-transform: uppercase; text-align: center; margin-bottom: 50px; }
.wed-faq-item { border-bottom: 1px solid #ddd; padding: 18px 0; cursor: pointer; position: relative; }
.wed-faq-item__question { font-family: var(--font-montserrat); font-size: var(--text-lg); font-weight: 500; color: var(--color-dark); opacity: 0.8; padding-right: 50px; }
.wed-faq-item__icon { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 25px; height: 25px; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 300; color: var(--color-dark); transition: transform var(--transition-fast); }
.wed-faq-item.open .wed-faq-item__icon { transform: translateY(-50%) rotate(45deg); }
.wed-faq-item__answer { display: none; font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); line-height: 1.65; opacity: 0.8; padding-top: 16px; padding-right: 50px; }
.wed-faq-item.open .wed-faq-item__answer { display: block; }
.wed-brides { text-align: center; padding: 80px 0 0; }
.wed-brides__title { font-family: var(--font-freight); font-size: var(--text-3xl); font-weight: 400; color: #111; text-transform: uppercase; margin-bottom: 50px; }
.wed-brides__fallback { width: 100%; overflow: hidden; }
.wed-brides__fallback img { width: 100%; height: 600px; object-fit: cover; }
.wed-cta { background: var(--color-pink); display: flex; align-items: center; justify-content: center; padding: 80px 60px; gap: 60px; min-height: 530px; }
.wed-cta__text { flex: 0 1 auto; text-align: left; }
.wed-cta__text h2 { font-family: var(--font-freight); font-size: var(--text-4xl); font-weight: 400; color: #060606; line-height: 1.1; margin-bottom: 24px; max-width: 602px; }
.wed-cta__text p { font-family: var(--font-montserrat); font-size: var(--text-lg); color: #111; line-height: 1.65; opacity: 0.8; margin-bottom: 40px; max-width: 522px; }
.wed-cta__buttons { display: flex; gap: 20px; }
.wed-cta__btn { display: inline-flex; align-items: center; justify-content: center; width: 219px; height: 50px; background: var(--color-pink); border: 1px solid var(--color-dark); font-family: var(--font-futura); font-size: var(--text-lg); font-weight: 400; color: var(--color-dark); text-decoration: none; letter-spacing: 2px; transition: background var(--transition-fast), color var(--transition-fast); }
.wed-cta__btn:hover { background: var(--color-dark); color: #fff; }
.wed-cta__image { flex: 0 0 auto; width: 438px; height: 450px; overflow: hidden; }
.wed-cta__image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Contact Page ── */
.contact-hero { position: relative; height: 800px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.contact-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.contact-hero h1 { position: relative; z-index: 2; font-family: var(--font-freight); font-size: var(--text-4xl); font-weight: 500; color: var(--color-dark); text-transform: uppercase; text-align: center; line-height: 1.05; }
.visit-us { display: flex; align-items: center; gap: 60px; padding: 80px 60px; margin-top: 60px; }
.visit-us__info { flex: 1; padding: 40px 60px; }
.visit-us__info h2 { font-family: var(--font-freight); font-size: var(--text-3xl); font-weight: 400; color: var(--color-dark); text-transform: uppercase; line-height: 1.05; margin-bottom: 32px; }
.visit-us__info p { font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); line-height: 1.56; margin-bottom: 16px; }
.visit-us__image { flex: 0 0 50%; }
.visit-us__image img { width: 100%; height: 580px; object-fit: cover; }
.visit-details { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.visit-detail { display: flex; align-items: flex-start; gap: 24px; }
.visit-detail__icon { flex-shrink: 0; width: 25px; height: 25px; }
.visit-detail__icon img { width: 100%; height: 100%; }
.visit-detail__content h3 { font-family: var(--font-freight); font-size: var(--text-lg); font-weight: 500; color: var(--color-dark); margin-bottom: 6px; }
.visit-detail__content p { font-family: var(--font-montserrat); font-size: var(--text-md); color: #000; line-height: 1.526; margin: 0; }
.visit-detail__content a { color: #000; text-decoration: underline; }
.visit-detail__content a:hover { color: var(--color-pink-hover); }
.contact-info-cards { display: flex; gap: 40px; max-width: 1440px; margin: 60px auto; padding: 0 60px; }
.contact-info-card { flex: 1; text-align: center; padding: 40px 24px; border: 1px solid #eee; }
.contact-info-card__icon { margin-bottom: 16px; }
.contact-info-card__icon svg { display: inline-block; }
.contact-info-card h3 { font-family: var(--font-freight); font-size: 22px; font-weight: 400; text-transform: uppercase; margin-bottom: 12px; color: var(--color-dark); }
.contact-info-card p { font-family: var(--font-montserrat); font-size: 14px; color: #333; line-height: 1.7; margin-bottom: 8px; }
.contact-info-card p:last-child { margin-bottom: 0; }
.contact-info-card a { color: #333; text-decoration: none; transition: color 0.2s; }
.contact-info-card a:hover { color: var(--color-dark); text-decoration: underline; }
.get-in-touch { display: flex; align-items: flex-start; max-width: 1440px; margin: 60px auto 0; padding: 0 60px; }
.get-in-touch__image { flex: 0 0 41.67%; overflow: hidden; }
.get-in-touch__image img { width: 100%; height: 785px; object-fit: cover; }
.get-in-touch__form { flex: 1; padding: 80px 60px; }
.get-in-touch__form h2 { font-family: var(--font-freight); font-size: var(--text-4xl); font-weight: 500; color: var(--color-dark); text-transform: uppercase; line-height: 1.05; margin-bottom: 40px; }
.get-in-touch__form .ecf-form-wrap { max-width: 100%; }
.get-in-touch__form .ecf-label { font-family: var(--font-montserrat); font-size: 13px; font-weight: 600; color: var(--color-dark); margin-bottom: 6px; }
.get-in-touch__form .ecf-input, .get-in-touch__form .ecf-select, .get-in-touch__form .ecf-textarea { font-family: var(--font-montserrat); font-size: 14px; border: 1px solid #ddd; padding: 12px 16px; border-radius: 0; background: #fff; color: #333; width: 100%; box-sizing: border-box; }
.get-in-touch__form .ecf-input:focus, .get-in-touch__form .ecf-select:focus, .get-in-touch__form .ecf-textarea:focus { border-color: var(--color-dark); outline: none; }
.get-in-touch__form .ecf-textarea { resize: vertical; min-height: 120px; }
.get-in-touch__form .ecf-submit { display: inline-flex; align-items: center; justify-content: center; min-width: 200px; padding: 16px 40px; background: var(--color-pink); color: var(--color-dark); font-family: var(--font-futura); font-size: 14px; font-weight: 300; text-transform: uppercase; letter-spacing: 2px; border: none; cursor: pointer; }
.get-in-touch__form .ecf-submit:hover { background: var(--color-pink-hover); }
.contact-form-row { display: flex; gap: 32px; margin-bottom: 28px; }
.contact-form-row .form-field { flex: 1; }
.form-field { margin-bottom: 28px; }
.form-field input, .form-field textarea { width: 100%; border: 1px solid var(--color-dark); padding: 20px 24px; font-family: var(--font-futura); font-size: var(--text-lg); letter-spacing: 2px; color: #000; background: transparent; box-sizing: border-box; }
.form-field input { height: 70px; }
.form-field textarea { height: 334px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #000; opacity: 1; }
.btn-submit { display: inline-block; width: 246px; height: 64px; line-height: 64px; text-align: center; font-family: var(--font-futura); font-size: var(--text-lg); letter-spacing: 2px; text-transform: uppercase; color: var(--color-dark); background: var(--color-white); border: 1px solid var(--color-dark); cursor: pointer; transition: background var(--transition-fast), color var(--transition-fast); }
.btn-submit:hover { background: var(--color-pink); }
.contact-faq { padding: 80px 60px; text-align: center; }
.contact-faq h2 { font-family: var(--font-freight); font-size: var(--text-3xl); font-weight: 500; color: var(--color-dark); text-transform: uppercase; margin-bottom: 40px; }
.contact-faq-list { max-width: 1018px; margin: 0 auto; text-align: left; }
.contact-faq-item { border-bottom: 1px solid #ddd; }
.contact-faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-family: var(--font-montserrat); font-size: 20px; font-weight: 500; color: var(--color-dark); opacity: 0.8; list-style: none; }
.contact-faq-q::-webkit-details-marker { display: none; }
.contact-faq-icon { flex-shrink: 0; transition: transform 0.3s; }
.contact-faq-item[open] .contact-faq-icon { transform: rotate(45deg); }
.contact-faq-a { padding: 0 0 20px; font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); opacity: 0.8; line-height: 1.65; }
.contact-map iframe { filter: grayscale(100%) contrast(1.1); -webkit-filter: grayscale(100%) contrast(1.1); }

/* ── FAQ Page ── */
.faq-hero { position: relative; height: 810px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.faq-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.faq-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 100%); }
.faq-hero h1 { position: relative; z-index: 2; font-family: var(--font-freight); font-size: var(--text-4xl); font-weight: 400; color: var(--color-dark); text-transform: uppercase; line-height: 0.86; text-align: center; }
.faq-body { display: flex; padding: 60px 60px 80px; gap: 40px; max-width: 1920px; margin: 0 auto; }
.faq-sidebar { flex: 0 0 240px; position: sticky; top: 120px; align-self: flex-start; }
.faq-sidebar ul { list-style: none; padding: 0; margin: 0; }
.faq-sidebar li { margin-bottom: 29px; }
.faq-sidebar a { font-family: var(--font-montserrat); font-size: var(--text-lg); font-weight: 400; color: #000; text-decoration: none; transition: opacity var(--transition-fast); display: block; line-height: normal; }
.faq-sidebar a:hover, .faq-sidebar a.active { font-weight: 600; }
.faq-content { flex: 1; min-width: 0; }
.faq-category-heading { font-family: var(--font-freight); font-size: var(--text-3xl); font-weight: 500; color: var(--color-dark); text-transform: uppercase; line-height: normal; margin: 0 0 48px; }
.faq-category-heading:not(:first-child) { margin-top: 60px; }
.faq-item { border-bottom: 1px solid #ddd; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; font-family: var(--font-montserrat); font-size: var(--text-lg); font-weight: 500; color: var(--color-dark); opacity: 0.8; list-style: none; gap: 20px; }
.faq-question::-webkit-details-marker { display: none; }
.faq-icon { flex-shrink: 0; width: 25px; height: 25px; transition: transform var(--transition-fast); }
.faq-icon svg { width: 25px; height: 25px; stroke: var(--color-dark); stroke-width: 1; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 0 20px; font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); opacity: 0.8; line-height: 1.65; }
.faq-promo { display: flex; align-items: flex-start; padding: 80px 60px; gap: 60px; max-width: 1920px; margin: 0 auto; }
.faq-promo__text { flex: 1; }
.faq-promo__text h2 { font-family: var(--font-freight); font-size: var(--text-4xl); font-weight: 400; color: var(--color-dark); text-transform: uppercase; line-height: 0.86; margin-bottom: 32px; }
.faq-promo__text p { font-family: var(--font-montserrat); font-size: var(--text-md); color: var(--color-dark); line-height: 1.65; opacity: 0.8; margin-bottom: 14px; }
.faq-promo__cta { display: inline-block; margin-top: 24px; padding: 18px 48px; border: 1px solid var(--color-dark); background: var(--color-white); font-family: var(--font-futura); font-size: var(--text-lg); color: var(--color-dark); text-transform: uppercase; text-decoration: none; letter-spacing: 0.5px; transition: background var(--transition-fast), color var(--transition-fast); }
.faq-promo__cta:hover { background: var(--color-dark); color: var(--color-white); }
.faq-promo__image { flex: 0 0 613px; }
.faq-promo__image img { width: 613px; height: 613px; object-fit: cover; }

