/* Festivity-inspired luxury layout — Abhises Weddings */

.header__inner {
  width: min(100% - 2.5rem, 1480px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
  line-height: 0;
  font-size: 0;
  text-shadow: none;
  box-shadow: none;
}

.logo img {
  display: block;
  height: 58px;
  width: auto;
  max-width: min(230px, 52vw);
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.logo span {
  display: none;
}

.nav-desktop {
  justify-self: center;
  gap: 1.65rem;
}

.nav-desktop a {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.header__end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast);
}

.social-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.social-icon:hover {
  background: var(--color-ivory);
  color: var(--color-black);
  border-color: var(--color-ivory);
}

.header.is-scrolled .social-icon,
.header:not(.is-dark) .social-icon {
  border-color: currentColor;
}

.header.is-scrolled .social-icon:hover,
.header:not(.is-dark) .social-icon:hover {
  background: var(--color-charcoal);
  color: var(--color-ivory);
  border-color: var(--color-charcoal);
}

.header.is-dark.is-scrolled {
  background: rgba(17, 17, 17, 0.94);
}

.header:not(.is-dark) {
  color: var(--color-charcoal);
}

/* Buttons — Festivity pill */
.btn {
  border-radius: 999px;
  padding: 0.95rem 1.85rem;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
}

.btn--gold,
.btn--taupe {
  background: var(--color-taupe);
  border-color: var(--color-taupe);
  color: var(--color-white);
  box-shadow: none;
}

.btn--gold:hover,
.btn--taupe:hover {
  background: var(--color-taupe-deep);
  border-color: var(--color-taupe-deep);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.btn--ghost:hover {
  background: var(--color-white);
  color: var(--color-charcoal);
  border-color: var(--color-white);
}

.btn--light {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--color-ivory);
}

/* Typography helpers */
.script-label {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.85rem;
  color: inherit;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(1.65rem, 3.4vw, 2.55rem);
  line-height: 1.2;
}

.section-title em,
.display-title em,
.hero__title em {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.eyebrow {
  letter-spacing: 0.32em;
}

/* Waves */
.wave {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(70px, 10vw, 130px);
  pointer-events: none;
  z-index: 4;
  color: var(--color-cream);
}

.wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wave--bottom {
  bottom: -1px;
}

.wave--top {
  top: -1px;
  transform: rotate(180deg);
}

.wave--ivory {
  color: var(--color-ivory);
}

.wave--cream {
  color: var(--color-cream);
}

.wave--taupe {
  color: var(--color-taupe);
}

.wave--black {
  color: var(--color-black);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-ivory);
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(100% - 2rem, 820px);
  padding: calc(var(--header-height) + 2rem) 0 7rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero__lead {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.85;
  max-width: 38rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.45) 0%,
    rgba(10, 10, 10, 0.38) 42%,
    rgba(10, 10, 10, 0.55) 100%
  );
}

.hero__overlay::before {
  display: none;
}

.hero__scroll {
  bottom: 5.5rem;
}

/* About taupe band */
.about-band {
  position: relative;
  background: var(--color-taupe);
  color: var(--color-ivory);
  text-align: center;
  padding: 5.5rem 0 0;
}

.about-band__intro {
  width: min(100% - 2.5rem, 720px);
  margin: 0 auto 3.5rem;
}

.about-band .script-label {
  color: rgba(255, 255, 255, 0.95);
}

.about-band .section-title {
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.about-band p {
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
}

.about-band .btn {
  margin-top: 2rem;
}

.media-slider {
  position: relative;
  width: min(100% - 2rem, 1100px);
  margin: 0 auto;
  overflow: hidden;
}

.media-slider__track {
  position: relative;
  min-height: clamp(280px, 52vw, 560px);
}

.media-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.media-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.media-slider__slide img {
  width: 100%;
  height: clamp(280px, 52vw, 560px);
  object-fit: cover;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background var(--transition-fast);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slider-btn--prev {
  left: 1rem;
}

.slider-btn--next {
  right: 1rem;
}

.slider-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

/* Quote overlay */
.quote-band {
  position: relative;
  min-height: min(72vh, 38rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-ivory);
  overflow: hidden;
}

.quote-band__bg {
  position: absolute;
  inset: 0;
}

.quote-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.32) saturate(0.85);
}

.quote-band__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, 780px);
  padding: 6rem 0;
}

.quote-band h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--color-ivory);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

/* Services split */
.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--color-ivory);
}

.services-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 5rem 3.5rem;
  background: var(--color-ivory);
}

.services-split__copy .script-label {
  color: var(--color-charcoal);
}

.service-lines {
  margin: 2rem auto 0;
  width: min(100%, 420px);
}

.service-lines li {
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(44, 41, 38, 0.18);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.service-lines li:first-child {
  border-top: 1px solid rgba(44, 41, 38, 0.18);
}

.services-split__copy .btn {
  align-self: center;
  margin-top: 2.25rem;
}

.services-split__image {
  min-height: 420px;
  overflow: hidden;
}

.services-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Portfolio preview */
.portfolio-preview {
  position: relative;
  background: var(--color-cream);
  text-align: center;
  padding: 6rem 0 5rem;
}

.portfolio-preview__intro {
  width: min(100% - 2.5rem, 680px);
  margin: 0 auto 3rem;
}

.portfolio-preview__intro .lead {
  margin-inline: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  width: min(100% - 2.5rem, 1180px);
  margin: 0 auto 2.5rem;
}

.portfolio-grid a {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}

.portfolio-grid a:hover img {
  transform: scale(1.06);
}

/* Testimonials */
.testimonials {
  background: var(--color-ivory);
  text-align: center;
  padding: 6rem 0;
}

.testimonials__intro {
  width: min(100% - 2.5rem, 680px);
  margin: 0 auto 2.5rem;
}

.testimonial-slider {
  position: relative;
  width: min(100% - 2.5rem, 720px);
  margin: 0 auto;
  min-height: 12rem;
}

.testimonial-slider blockquote {
  display: none;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-charcoal);
}

.testimonial-slider blockquote.is-active {
  display: block;
}

.testimonial-slider cite {
  display: block;
  margin-top: 1.35rem;
  font-family: var(--font-script);
  font-size: 1.85rem;
  font-style: normal;
  color: var(--color-taupe-deep);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.testimonial-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-taupe);
  color: var(--color-taupe-deep);
}

.testimonial-nav button:hover {
  background: var(--color-taupe);
  color: var(--color-white);
}

/* Magic CTA */
.magic-cta {
  position: relative;
  min-height: min(68vh, 36rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-ivory);
  overflow: hidden;
}

.magic-cta__bg {
  position: absolute;
  inset: 0;
}

.magic-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.9);
}

.magic-cta__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, 720px);
  padding: 6rem 0;
}

.magic-cta .script-label {
  color: rgba(255, 255, 255, 0.92);
}

.magic-cta p {
  margin: 1.15rem auto 2rem;
  max-width: 36rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
}

.magic-cta .section-title {
  color: var(--color-ivory);
}

/* Home blog */
.home-blog {
  background: var(--color-cream);
  padding: 6rem 0 5.5rem;
  text-align: left;
}

.home-blog__intro {
  width: min(100% - 2.5rem, 680px);
  margin: 0 0 3rem;
  margin-inline: 0;
  text-align: left;
}

.home-blog__intro .lead {
  margin-inline: 0;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: min(100% - 2.5rem, 1180px);
  margin: 0 auto 2.75rem;
  text-align: left;
}

.home-blog-card {
  background: transparent;
}

.home-blog-card__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 1rem;
}

.home-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.home-blog-card:hover img {
  transform: scale(1.05);
}

.home-blog-card__meta {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-taupe-deep);
  margin-bottom: 0.45rem;
}

.home-blog-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
}

.home-blog-card p {
  font-size: 0.9rem;
  color: var(--color-charcoal-soft);
  font-weight: 300;
}

.home-blog-card__link {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-taupe-deep);
}

/* Estimator on Festivity home */
.estimator-section--home {
  background: var(--color-ivory);
}

.estimator-home-intro {
  text-align: center;
  margin-bottom: 2.75rem;
}

.estimator-home-intro .lead {
  margin-inline: auto;
}

/* Footer */
.footer {
  position: relative;
  background: var(--color-black);
  color: var(--color-ivory);
  padding: 7.5rem 0 2rem;
  text-align: center;
}

.footer__wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: clamp(70px, 9vw, 120px);
  color: var(--color-taupe);
}

body:has(.home-blog) .footer__wave,
.page-contact .footer__wave,
.page-estimator .footer__wave {
  color: var(--color-cream);
}

.service-card {
  background: var(--color-ivory);
  border: none;
  box-shadow: none;
  margin-bottom: 0;
}

.service-card:hover {
  box-shadow: none;
  transform: none;
}

.service-card__body {
  text-align: center;
  align-items: center;
}

.service-card p {
  margin-inline: auto;
}

.service-card .btn--gold {
  align-self: center;
}

.footer__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer .logo {
  display: inline-flex;
  margin: 0 auto 1.15rem;
  justify-self: center;
  color: inherit;
}

.footer__contact {
  font-size: 0.95rem;
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.footer__contact a {
  color: inherit;
}

.footer .header__social {
  justify-content: center;
  margin-bottom: 2.25rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.6rem;
  margin-bottom: 2.5rem;
}

.footer__nav a {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.8;
}

.footer__nav a:hover {
  opacity: 1;
  color: var(--color-ivory);
}

.footer__grid {
  display: none;
}

.footer__bottom {
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.55;
}

/* Inner page heroes */
.page-hero {
  min-height: min(72vh, 36rem);
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3.5rem, 10vh, 6rem) 0 clamp(3.25rem, 9vh, 5.5rem);
}

.page-hero__content {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.page-hero .eyebrow::before {
  margin-inline: auto;
  margin-bottom: 1.15rem;
}

.page-hero .display-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-family: var(--font-display);
}

.page-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(70px, 10vw, 120px);
  z-index: 4;
  color: var(--color-ivory);
  pointer-events: none;
}

.page-hero__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.page-hero::after {
  display: none;
}

.cta-band {
  position: relative;
  background: var(--color-taupe);
  padding: 6rem 1.5rem;
}

.cta-band .btn--light:hover {
  background: var(--color-white);
  color: var(--color-charcoal);
}

.split__content {
  text-align: center;
  align-items: center;
  padding: 4.5rem 3rem;
}

.split__content .lead,
.split__content p {
  max-width: 28rem;
}

.section {
  text-align: center;
}

.section .lead {
  margin-inline: auto;
}

.pillars {
  text-align: left;
}

/* Stats as a quiet row, not cards */
.stats-bar {
  background: var(--color-ivory);
  border: none;
  padding: 3.5rem 0;
}

.stats-bar__grid {
  gap: 1rem;
}

.stat-item {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0.5rem;
}

.stat-item:hover {
  transform: none;
  box-shadow: none;
}

.stat-item strong {
  color: var(--color-taupe-deep);
}

/* Highlights — simpler rectangles */
.highlight-tile,
.highlight-tile:nth-child(1),
.highlight-tile:nth-child(2),
.highlight-tile:nth-child(3) {
  border-radius: 0;
}

.showcase-item,
.showcase-item:nth-child(1),
.showcase-item:nth-child(2),
.showcase-item:nth-child(3) {
  border-radius: 0;
}

.estimator-card {
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .services-split {
    grid-template-columns: 1fr;
  }

  .services-split__image {
    min-height: 380px;
    order: -1;
  }

  .portfolio-grid,
  .home-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 44px;
  }

  .header__social {
    display: none;
  }

  .hero__content {
    padding-bottom: 6.5rem;
  }

  .about-band {
    padding-top: 4.25rem;
  }

  .services-split__copy {
    padding: 3.5rem 1.5rem;
  }

  .portfolio-grid,
  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .home-blog-card__image {
    aspect-ratio: 16 / 10;
  }
}
