/*
Theme Name: BH
Theme URI: https://bethhelmstetter.com/
Author: BH
Author URI: https://bethhelmstetter.com/
Description: A custom BH WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom, blog, responsive
Text Domain: bh
*/

/*  Custom Properties */
:root {
  --c-cream:       #F5F0EB;
  --c-cream-dark:  #ded3cf;
  --c-footer:      #706127;
  --c-footer-text: #E0D2CE;
  --c-text:        #5E351C;
  --c-text-mid:    #5E351C;
  --c-text-light:  #9B9B88;
  --c-border:      #DDD8CF;
  --c-white:       #ffffff;

  --ff-serif:  'denton', Georgia, serif;
  --ff-ditalic:  'dentonitalic', Georgia, serif;
  --ff-sans:   'mabry', system-ui, sans-serif;
  --ff-sansmedium:  'mabrymedium', system-ui, sans-serif;
  --ff-script: 'Tilda-Grande', cursive;

  --nav-h: 90px;
}

@font-face {
  font-family: 'mabry';
  src: url('fonts/MabryPro.woff2') format('woff2'),
       url('fonts/MabryPro.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'mabrymedium';
  src: url('fonts/mabrymedium.woff2') format('woff2'),
       url('fonts/mabrymedium.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'denton';
  src: url('fonts/DentonCondensed-Thin.woff') format('woff'),
       url('fonts/DentonCondensed-Thin.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'dentonitalic';
  src: url('fonts/DentonCondensed-ThinItalic.woff') format('woff'),
       url('fonts/DentonCondensed-ThinItalic.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

.wpcf7 form.sent .wpcf7-response-output{
	border:none!important;
}



@font-face {
  font-family: 'Tilda-Grande';
  src: url('fonts/Tilda-Grande.woff') format('woff'),
       url('fonts/Tilda-Grande.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}


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

html { color-scheme: light; }

body {
  font-family: var(--ff-serif);
  background: var(--c-cream);
  color: var(--c-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 0.8s ease;
  font-variant-ligatures: normal;
}

body.is-loaded {
  opacity: 1;
}

.sales-stats__list > div{
  border-bottom:dotted thin #5E351C;
  padding-bottom:50px;
}

.salespress:after{
  border-top:solid thin #5E351C;
  height:1px;
  width:100%;
  max-width:1300px;
  content:"";
  display: block;
  margin:auto;
  position:relative
}

.sales-stats__label{
  font-size:32px;
  font-family: 'denton';
  text-transform:uppercase;
  letter-spacing:0.05em;
  display:block;
}

.sales-toast:before{
  content:"";
  display:block;
  border-top:dotted thin #5E351C;
  width:100%;
  max-width:1300px;
  height:1px;
  margin:auto;
  margin-top:-50px;
  padding-top:100px;

}

button.link-label.sales-toast-slide__next {
    margin-top: 50px;
}



@media (prefers-reduced-motion: reduce) {
  body {
    transition: none;
    opacity: 1;
  }
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

.celeb-event__gallery-img img { height: auto; object-fit: unset; }

a {
  color: inherit;
  text-decoration: none;
}

/* ─── Site Header / Nav ───────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #F9ECDD;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
}

.site-logo {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  white-space: nowrap;
}

.site-logo a { color: inherit; }

.site-logo__img {
  display: block;
  height: 24px;
  width: auto;
  object-fit: unset;
}

.nav-primary ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-primary > ul > li > a {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
}

.nav-primary > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-primary > ul > li > a:hover::after {
  transform: scaleX(1);
}

/*
.nav-primary ul li {
  position: relative;
  width:100%;
  max-width:90%;
}
  */

.nav-primary ul li .sub-menu li:last-of-type{
  padding-top:0;
}

.nav-primary ul li .sub-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #F9ECDD;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
  gap:0;
  padding-top:15px;
}

.nav-primary ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-primary ul li .sub-menu li {
  position: relative;
  width: 100%;
  padding: 0.9rem 0;
  text-align: center;
}

.nav-primary ul li .sub-menu li:not(:last-child)::after {
  content: "";
  display: block;
  width: 120px;
  margin: 0.9rem auto 0;
  border-top: dotted 2px var(--c-text);
}

.nav-primary ul li .sub-menu li a {
  font-size: 12px;
  letter-spacing: 0.1em;
    font-family: var(--ff-sans);
text-transform: uppercase;
  color: var(--c-text);
  padding: 0;
font-weight: 500;
}

.nav-social {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
}

.nav-social a:hover { opacity: 0.55; }

.nav-social--mobile { display: none; }

.submenu-toggle {
  display: none;
  position: relative;
  width: 14px;
  height: 14px;
  margin-left: 0.6rem;
  vertical-align: middle;
}

.submenu-toggle::before,
.submenu-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--c-text);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.submenu-toggle::before { width: 14px; height: 1px; }
.submenu-toggle::after  { width: 1px; height: 14px; }

.menu-item-has-children.is-open .submenu-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.nav-primary ul li .sub-menu {
    top: 55%;
    left: 50%;
    transform: translateX(-75%);
}


/* ─── Mobile Nav ─────────────────────────────────────────── */
@media ( max-width: 768px ) {
  .site-header { padding: 0 1.5rem; }

  .nav-toggle { display: flex; }

  .nav-social--desktop { display: none; }

  .nav-primary {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #f9ecdd;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .hero__headline {
    line-height: 24px!important;
}

.intro__eyebrow {
    line-height: 38px;
}

.celeb-grid__item .celeb-grid__overlay {
    background: rgba(20, 18, 14, 0.45);
}

.celeb-grid__item .celeb-grid__meta {
    opacity: 1;
    transform: translateY(0);
}

.celeb-grid__item .celeb-grid__location {
    opacity: 1;
}

.inquire-form-wrap {
    padding-left: 0px;
}

  .nav-primary.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero__rule{
    display:none;
  }

      .nav-primary.is-open {
padding-top:30px;
}

  .nav-primary > ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    min-height: 100%;
    padding: 0 0 0 20px;
  }

  .nav-primary > ul > li{
    padding-top:0;
    padding-bottom:0;
  }

  .nav-primary > ul > li > a {
    font-size: 14px;
  }

  .about-founder__right{
    display: none;
  }

  .about-founder {
    padding-bottom: 3rem;
  }


  .nav-primary ul li .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: hidden;
    max-height: 0;
    padding: 0;
    min-width: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  /*
  .menu-item-has-children.is-open .sub-menu {
    padding: 1.5rem 0;
  }
*/

.about-cta,
.about-hero{
  background-position: 0!important;
}

  .submenu-toggle {
    display: inline-block;
  }

  .nav-social--mobile {
    display: block;
    margin-top: 2.5rem;
  }
}

.home{
  background-color:#FEFBF6;
}

.home .cta-block, .home .intro,
section.gallery-row-wrap {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
      background-color:#FEFBF6;

}


.home .intro__inner {
    max-width: 590px;
}
.home .cta-block{
  gap:0;
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* height: calc(100vh - var(--nav-h)); */
  height: 100vh;
  min-height: 690px;
}

.hero__panel {
  position: relative;
  overflow: hidden;
  background: var(--c-cream-dark);
}

.hero__panel--left {
  background-image: var(--hero-left-img, none);
  background-size: cover;
  background-position: center;
}

.hero__panel--right {
  background-image: var(--hero-right-img, none);
  background-size: cover;
  background-position: center;
}

.hero__panel--right::before {
  content: "";
  position: absolute;
  inset: 4rem 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  pointer-events: none;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 28, 20, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2.5rem;
  color: #fff;
}

.hero__icon {
  width: 36px;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero__rule {
  width: 48px;
  border: none;
  margin: 0.25rem auto;
}

.hero__headline {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.15;
}

.hero__headline em {
  text-transform: lowercase;
  letter-spacing: 0.05em;
  font-size: 52px;
  font-family: var(--ff-script);
}

.hero__sub {
    font-family: var(--ff-sans);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: 100%;
    max-width: 210px;
}

/* ─── Intro ───────────────────────────────────────────────── */
.intro {
  position: relative;
  background: var(--c-white);
  padding: 7rem 2rem;
  text-align: center;
}

.home .carousel,
.home .cta-block,
.home .intro{
  background: #FEFBF6;
}

.intro__ornament {
  position: absolute;
  left: 8vw;
  top: 38%;
  transform: translateY(-50%) translateX(-60px);
  opacity: 0;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1), opacity 2s ease-out;
}

.intro__ornament.is-visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .intro__ornament {
    transition: none;
    opacity: 1;
    transform: translateY(-50%);
  }
}

.intro__ornament img {
  width: 110px;
  height: auto;
}

.intro__inner {
  max-width: 550px;
  margin: 0 auto;
  text-align: left;
}

.intro__eyebrow {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(1.3rem, 32px, 32px);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--c-text);
}

.intro__eyebrow strong {
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-style: normal;
}



.intro__eyebrow em {
  font-family: var(--ff-ditalic);
}

.intro__body {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 20px;
  color: var(--c-text-mid);
  line-height: 26px;
  margin-bottom: 2rem;
}

.link-label {
  position: relative;
  display: inline-block;
  font-family: var(--ff-sansmedium);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  padding-bottom: 2px;
}

/* .link-label is sometimes a <button> (e.g. carousel "next" triggers) rather
   than an <a> — strip native button chrome so it still reads as a text link. */
button.link-label {
  background: none;
  border: none;
  padding-left: 0;
  padding-right: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.link-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.link-label:hover::after {
  transform: scaleX(1);
}

.about-service:after{
  content:"";
  display: block;
  height:1px;
  width:100%;
  border-top:dotted 2px var(--c-text);
  margin-top:50px;

}

.about-service + .about-service:after{
  display:none;
}

.about-service + .about-service{
  padding-bottom:100px;
}

/* ─── Gallery Row (3 images) ──────────────────────────────── */
.gallery-row-wrap {
  position: relative;
}

.gallery-row-wrap .carousel__btn {
  display: none;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 630px;
}

.gallery-row__item {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--c-cream-dark);
    max-width: 500px;
    margin: 0 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-decoration: none;
}



.gallery-row__item:hover .celeb-grid__overlay {
  background: rgba(20, 18, 14, 0.45);
}

.gallery-row__item:hover .celeb-grid__meta {
  opacity: 1;
  transform: translateY(0);
}

.gallery-row__item:hover .celeb-grid__location {
  opacity: 1;
}

.celeb-grid{
  margin-bottom:80px;
}

/* ─── CTA Block ───────────────────────────────────────────── */
.cta-block {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  padding: 7rem 8vw;
}

.cta-block__text {
  max-width: 520px;
  margin:auto;
}

.post-type-archive .cta-block__text{
    max-width: 460px;

}

.cta-block__heading{
    max-width: 440px;
  margin:0;
}

.cta-block__heading {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(1.1rem, 32px, 32px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 32px;
  margin-bottom: 0.25rem;
  color: var(--c-text);
}

.cta-block__heading em {
    display: block;
    text-transform: none;
    font-family: var(--ff-ditalic);
    letter-spacing: 0.05em;
    font-size: 32px;
    line-height: normal;
}

.cta-block__body {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 20px;
  color: var(--c-text-mid);
  line-height: 26px;
  margin: 1.5rem 0 2rem;
}

.cta-block__ornament {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(60px);
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1), opacity 2s ease-out;
}

.cta-block__ornament.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .cta-block__ornament {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

.cta-block__ornament svg {
  width: 80px;
  height: auto;
  opacity: 0.75;
}



/* ─── Photo Carousel ──────────────────────────────────────── */
.carousel {
  position: relative;
  background: #fff;
  padding: 0 0;
}

.carousel__viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
}

.carousel__viewport:active,
.carousel__viewport.is-dragging { cursor: grabbing; }

.carousel__viewport.is-dragging {
  user-select: none;
}

.carousel__viewport.is-dragging .carousel__img {
  pointer-events: none;
}

.carousel__track {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

/* Ticker variant is driven by JS every animation frame (continuous
   auto-scroll + drag) — the eased transition above would fight that. */
.carousel--ticker .carousel__track {
  transition: none;
}

.carousel__slide {
  overflow: hidden;
  position: relative;
  max-height: 650px;
}

/* Slide 1 of every 3 — full size, bottom-aligned */
.carousel__slide:nth-child(3n+1){
  flex: 0 0 calc(28%);
  align-self: flex-end;
}

/* Slide 2 of every 3 — narrower, centered vertically */
.carousel__slide:nth-child(3n+2) {
  flex: 0 0 calc(21% - 9px);
  align-self: center;
}

/* Slide 3 of every 3 — narrower, pushed to bottom */
.carousel__slide:nth-child(3n) {
  flex: 0 0 calc(21% - 9px);
  align-self: flex-end;
}

.carousel__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.carousel__placeholder {
  width: 100%;
  padding-top: 133%;
  background: var(--c-cream-dark);
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250, 248, 245, 0.92);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-text);
  z-index: 10;
  transition: background 0.2s, opacity 0.2s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}

.carousel__btn:hover { background: #fff; }

.carousel__btn[disabled] {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.carousel__btn--prev { left: 1rem; }
.carousel__btn--next { right: 1rem; }

nav.nav-primary {
    margin: 0 0px 0 -150px;
}


/* ─── Press / Recognition ─────────────────────────────────── */
.press {
    background: var(--c-cream-dark);
    padding: 12.5rem 2rem;
    text-align: center;
}

.sales-process:before,
.presssales:before{
    content: "";
    display: block;
    border-top: dotted thin #5E351C;
    max-width: 1300px;
    width:100%;
    height: 1px;
    margin:auto;
    margin-top: -50px;
    padding-top: 100px;
}

.presssales{
      padding: 0 2rem 5rem;

}

.press__label {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(0.85rem, 2.2vw, 3rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #706127;
  white-space: nowrap;
  margin: 0;
  padding-right: 1rem;
  font-style:normal;
}

.press__label em {
      font-family: var(--ff-ditalic);
  text-transform: none;
  letter-spacing: 0.03em;
}

.press__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.press__logo {
  display: flex;
  align-items: center;
}

.press__logo:hover { opacity: 0.9; }

.press__logo-img {
  display: block;
  height: 130px;
  width: auto;
  max-width: 155px;
  object-fit: contain;
}

/* Sales page — recolor the (single-color) press logo art to the site's rust
   accent instead of the color baked into the source file. Uses a CSS mask
   so the element paints a flat background-color clipped to the logo's own
   shape, rather than an approximate filter() color match. */
.presssales .press__logo-img--masked {
  width: 155px;
  background-color: #5E351C;
  -webkit-mask-image: var(--logo-src);
          mask-image: var(--logo-src);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}

.press__logo-fallback {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: clamp(1rem, 1.8vw, 1.6rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-mid);
}

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--c-footer);
  color: var(--c-footer-text);
  overflow: hidden;
  position: relative;
}

.footer__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.25rem 3rem;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.6;
  color:#E0D2CE!important
}

.footer__info a {
  color: inherit;
  transition: opacity 0.2s;
}

.footer__info a:hover { opacity: 0.6; }

.footer__address {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.6;
}

.footer__watermark-wrap {
  overflow: hidden;
  line-height: 0;
}

.footer__watermark {
    display: block;
    width: 95%;
    height: auto;
    pointer-events: none;
    user-select: none;
    margin: auto;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem 1.75rem;
}

.footer__copyright,
.footer__credits {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color:#E0D2CE;
  margin: 0;
}

/* Image placeholder (shown before real images are uploaded) */
.hero__placeholder {
  width: 100%;
  height: 100%;
  background: var(--c-cream-dark);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

/* ─── Generic inner page styles ───────────────────────────── */
.site-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */

/* Shared placeholder */
.about__placeholder {
  width: 100%;
  height: 100%;
  background: var(--c-cream-dark);
}

/* ─── About Hero ─────────────────────────────────────────── */
.about-hero {
  width: 100%;
  height: clamp(380px, 52vw, 680px);
  background-size: cover;
  background-position: center;
  background-color: var(--c-cream-dark);
}

.about-hero__placeholder {
  width: 100%;
  height: 100%;
  background: var(--c-cream-dark);
}

/* ─── Intro ──────────────────────────────────────────────── */
.about-intro {
  background: var(--c-white);
  padding: 6rem 8vw;
}

.about-intro__inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-intro__label {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1rem, 32px, 32px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 15px;
}

.svgblock{
  width:100%;
  max-width:45px;
  height:auto;
  margin-bottom:25px;
}


.about-intro__col {
  font-family: var(--ff-sans);
  font-weight: normal;
  font-size: 18px;
  line-height:25px;
  margin: 0 0 25px;
}

.about-intro__col--lead p {
  font-size: 18px;
  color: var(--c-text);

}

/* ─── Founder images ─────────────────────────────────────── */
.about-founder {
  display: flex;
  justify-content: center;
  gap: 10rem;
  padding: 0 8vw 6rem;
  background: var(--c-white);
  align-items: center;
}

.about-founder__left {
  width: 340px;
  max-width: 340px;
  flex-shrink: 0;
}

.about-founder__right {
  width: 560px;
  max-width: 560px;
  flex-shrink: 1;
}

.about-founder__signature {
  display: block;
  width: 350px;
  height: auto;
  margin: 0 0 2rem;
}

.about-founder__photo {
  aspect-ratio: 3/5;
  background-size: cover;
  background-position: center top;
  background-color: var(--c-cream-dark);
}

.about-founder__caption {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-mid);
  margin-top: 0.85rem;
}

.about-founder__venue {
  aspect-ratio: 3/5;
  background-size: cover;
  background-position: center;
  background-color: var(--c-cream-dark);
  margin-top: 3rem;
}

/* ─── Philosophy ─────────────────────────────────────────── */
.about-philosophy {
  background: var(--c-white);
  padding: 0rem 8vw 6rem;
}

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

.about-philosophy__mark svg {
  width: 72px;
  height: auto;
}

.about-philosophy__text p {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 0.975rem;
  line-height: 1.95;
  color: var(--c-text-mid);
  margin: 0 0 1.25rem;
}

/* ─── Team ───────────────────────────────────────────────── */
.about-team {
  background: #E0D2CE;
  padding: 5rem 6vw 6rem;
  outline: 1px solid #5E351C;
  outline-offset: -20px;
}

.about-team__inner {
  max-width: 1300px;
  margin: 0 auto;
}

.about-team__heading {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 3.5rem;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.about-team__photo {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center top;
  background-color: #C8BDB8;
  margin-bottom: 1.25rem;
}

.about-team__name {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--c-text);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.about-team__title {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
}

.link-label {
    width: fit-content;
}

/* ─── Service sections (Weddings / Social Events) ─────────── */
.about-service {
  background: #F9ECDD;
  padding: 5rem 8vw 4rem;
}

.about-service + .about-service {
  padding-top: 0;
}

.about-service__label {
  font-family: var(--ff-sans);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 2rem;
}

.about-service__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5vw;
  align-items: center;
}

.about-service__media {
  position: relative;
  overflow: hidden;
}

.about-service__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-color: var(--c-cream-dark);
}

.about-service__video {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* The homepage hero's crossfade slideshow (.hero__slideshow/.hero__slide),
   reused here — it normally sizes itself via position:absolute;inset:0
   against a parent that already has a height, but .about-service__media's
   height is otherwise driven entirely by whichever media child is present,
   so the slideshow needs its own explicit box to establish one. */
.about-service__media .hero__slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
}

.about-service__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 530px;
}

.about-service__label,
.about-service__heading {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--c-text);
  margin-bottom: 1.5rem;
}

.about-service__heading em {
    font-family: var(--ff-ditalic);
    letter-spacing: 0.05em;
    font-size: 32px;
    line-height: normal;
    text-transform: none;
    margin-top: 0.2rem;
}

.about-service__body p {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-text-mid);
  margin: 0 0 0.9rem;
}

.about-service__body {
  margin-bottom: 2rem;
}

/* ─── CTA ────────────────────────────────────────────────── */
.about-cta {
  position: relative;
  height: clamp(380px, 44vw, 620px);
  background-size: cover;
  background-position: center;
  background-color: #3A3828;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 23, 16, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.about-cta__heading {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(2rem, 22px, 5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

.about-cta__heading em {
    font-family: var(--ff-ditalic);
    letter-spacing: 0.05em;
    font-size: 32px;
    line-height: normal;
    text-transform: none;
}

.link-label.whitebtn{
  color:#fff;
  display:block;
  opacity:1!important;
  margin:120px auto 0!important;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media ( max-width: 900px ) {
  .about-intro__cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-founder { flex-direction: column; align-items: center; gap: 3rem; }
  .about-founder__left,
  .about-founder__right { width: 100%; max-width: 420px; }
  .about-founder__venue { margin-top: 0; }
  .about-philosophy__inner { grid-template-columns: 1fr; }
  .about-team__grid { grid-template-columns: repeat(3, 1fr); }
  .about-service__grid { grid-template-columns: 1fr; }
  .about-service__image,
  .about-service__media .hero__slideshow { aspect-ratio: 4 / 3; }
}

@media ( max-width: 600px ) {
  .about-team__grid { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════════════════════════════════════════════════════════
   INQUIRE PAGE
═══════════════════════════════════════════════════════════ */

.inquire-form-wrap {
    padding-left: 50px;
}

.inquire-page {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  min-height: 90vh;
  padding: 5rem 5vw 8rem 0;
  max-width: 1400px;
  margin: 0 auto;
}



.wpcf7-spinner{
  display: none!important;
}

/* ─── Info sidebar ───────────────────────────────────────── */
.inquire-info {
  padding-top: 0.35rem;
}

.inquire-info__heading {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 2.5rem;
}

.wpcf7 form.sent .wpcf7-response-output {
     border-color:var(--c-text);
      font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.inquire-info__block {
  margin-bottom: 1.75rem;
}

.inquire-info__label {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-mid);
  margin-bottom: 0.3rem;
}

.inquire-info__value {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 18px;
  color: var(--c-text);
  line-height: 1.6;
  display: block;
}

a.inquire-info__value:hover { opacity: 0.6; }

.inquire-info__address {
  font-style: normal;
  line-height: 1.75;
}

/* ─── Form area ──────────────────────────────────────────── */
.inquire-heading {
  font-family: var(--ff-ditalic);
  font-weight: 300;
  font-size: 28px;
  color: var(--c-text);
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.inquire-form__notice {
  font-family: var(--ff-serif);
  font-size: 16px;
  color: var(--c-text-mid);
  padding: 1.5rem;
  border: 1px dashed var(--c-border);
  line-height: 1.7;
}

/* ─── CF7 form ───────────────────────────────────────────── */

/* Remove CF7 default wrapper spacing */
.wpcf7 { margin: 0; }
.wpcf7 form.wpcf7-form { margin: 0; }

/* Grid wrapper added in CF7 form editor */
.wpcf7 .cf7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  row-gap: 0;
}

.wpcf7 .cf7-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.25rem;
}

.wpcf7 .cf7-field--full {
  grid-column: 1 / -1;
}

/* Labels */
.wpcf7 .cf7-field label {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-mid);
  margin-bottom: 0.6rem;
  display: block;
}

/* All text inputs */
.wpcf7 .cf7-field input[type="text"],
.wpcf7 .cf7-field input[type="email"],
.wpcf7 .cf7-field input[type="tel"],
.wpcf7 .cf7-field input[type="url"],
.wpcf7 .cf7-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px dotted var(--c-text-mid);
  border-radius: 0;
  padding: 0.5rem 0 0.6rem;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--c-text);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}

.wpcf7 .cf7-field input[type="text"]:focus,
.wpcf7 .cf7-field input[type="email"]:focus,
.wpcf7 .cf7-field input[type="tel"]:focus,
.wpcf7 .cf7-field textarea:focus {
  border-bottom-color: var(--c-text-mid);
  border-bottom-style: solid;
}

/* Textarea */
.wpcf7 .cf7-field textarea {
  width: 100%;
  background: transparent;
  border: 1px dotted var(--c-text-mid);
  border-radius: 0;
  padding: 0.75rem;
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 16px;
  color: var(--c-text);
  outline: none;
  resize: vertical;
  min-height: 160px;
  transition: border-color 0.2s;
}

.wpcf7 .cf7-field textarea:focus {
  border-color: var(--c-text-mid);
  border-style: solid;
}

/* Placeholder text */
.wpcf7 .cf7-field input::placeholder,
.wpcf7 .cf7-field textarea::placeholder {
  color: var(--c-border);
}

/* Remove CF7 default <p> margin inside grid */
.wpcf7 .cf7-field p { margin: 0; }
.wpcf7 .cf7-field .wpcf7-form-control-wrap { display: block; }

/* Submit */


.wpcf7 .cf7-submit input[type="submit"],
.wpcf7 .cf7-submit button,
.wpcf7 .cf7-submit .wpcf7-submit {
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  padding: 0 0 3px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  cursor: pointer;

}

.blog-cats__next:after,
.cf7-submit:after{
    border-bottom:solid thin var(--c-text);
content:"";
    transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  display:block;
  position:relative;
  height:1px;
  width:100px;
}


.blog-cats__next:after{
  width:auto;
  margin-top:5px;
}

.blog-cats__next:hover::after,
.cf7-submit:hover::after{
    transform: scaleX(1);

}

/* Validation + response messages */
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-acceptance-missing {
  border: none;
  font-family: var(--ff-serif);
  font-size: 0.85rem;
  color: var(--c-text-mid);
  margin-top: 1rem;
  padding: 0;
}

.wpcf7 .wpcf7-not-valid-tip {
  font-family: var(--ff-sans);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: #9B6B5A;
  margin-top: 0.3rem;
}

.wpcf7 .wpcf7-mail-sent-ok {
  border: none;
  font-family: var(--ff-ditalic);
  font-size: 1rem;
  color: var(--c-text-mid);
  padding: 0;
  margin-top: 1rem;
}

.inquire-sent {
  font-family: var(--ff-ditalic);
  font-size: 1.1rem;
  color: var(--c-text-mid);
  line-height: 1.7;
}

/* ─── Inquire responsive ─────────────────────────────────── */
@media ( max-width: 860px ) {
  .inquire-page {
    grid-template-columns: 1fr;
    padding: 4rem 6vw 6rem;
  }

  .inquire-info {
    padding-right: 0;
    margin-bottom: 3.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 2rem;
    align-items: start;
  }

  .inquire-info__heading { grid-column: 1 / -1; margin-bottom: 0.5rem; }
}

@media ( max-width: 600px ) {
  .inquire-info { grid-template-columns: 1fr 1fr; }
  .wpcf7 .cf7-grid { grid-template-columns: 1fr; }
  .wpcf7 .cf7-field--full { grid-column: 1; }
}


/* ═══════════════════════════════════════════════════════════
   PRESS PAGE
═══════════════════════════════════════════════════════════ */

.press-page {
  display: grid;
  grid-template-columns: 300px 1fr;
  padding: 5.5rem 5vw 3rem;
  max-width: 1300px;
  margin: 0 auto;
  gap: 0 4rem;
}

/* ─── Sidebar ────────────────────────────────────────────── */
.press-sidebar {
  position: sticky;
  top: var(--nav-h);
  align-self: start;
  padding-top: 0.25rem;
}




.press-sidebar__label {
  font-family: var(--ff-serif);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 0;
  line-height:normal;
}

.press-sidebar__heading {
  font-family: var(--ff-ditalic);
  font-weight: 300;
  font-size: 28px;
  color: var(--c-text);
  letter-spacing: 0.05em;
  margin-top:0;
  line-height:normal;
}

/* ─── Publication section ────────────────────────────────── */
.press-pub {
  padding: 3.5rem 0;
}

.press-pub:first-child { padding-top: 0; }

.press-divider {
  border: none;
  border-top: 1px dotted var(--c-text-mid);
  margin: 0;
}

/* ─── Publication name ───────────────────────────────────── */
.press-pub__name-wrap {
  margin-bottom: 2rem;
}

.press-pub__prefix {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-mid);
  margin-bottom: 0.2rem;
}

/* Shared base */
.press-pub__name {
  display: block;
  line-height: 1;
  color: var(--c-text);
}

/* Vogue */
.press-pub__name--vogue {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Bazaar */
.press-pub__name--bazaar {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Martha Stewart Weddings */
.press-pub__name--msw {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  letter-spacing: 0.02em;
}

/* Brides */
.press-pub__name--brides {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* The Knot */
.press-pub__name--the-knot {
  font-family: var(--ff-script);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: 0.02em;
}

/* Generic fallback */
.press-pub__name--generic {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── Feature list ───────────────────────────────────────── */
.press-pub__features {
  list-style: none;
  columns: 2;
  column-gap: 4rem;
}

.press-pub__item {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.5;
  margin-bottom: 0.9rem;
  break-inside: avoid;
}

.press-pub__logo{
  max-width:130px;
}

.press-pub__item a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
}

.press-pub__item a:hover {
  opacity: 0.6;
  border-bottom-color: var(--c-border);
}

/* ─── Press responsive ───────────────────────────────────── */
@media ( max-width: 860px ) {
  .press-page {
    grid-template-columns: 1fr;
    padding: 4rem 6vw 6rem;
  }

  .press-sidebar {
    display: flex;
    gap: 0.5rem 1rem;
    align-items: baseline;
    margin-bottom: 3rem;
  }




  .press-sidebar__label::after { content: " —"; }
}

@media ( max-width: 600px ) {
  .press-pub__features { columns: 1; }
}

/* =============================================================================
   CELEBRATIONS ARCHIVE
   ============================================================================= */

/* ─── Hero ───────────────────────────────────────────────────── */
.celeb-hero {
  width: 100%;
  height: 88vh;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--c-cream-dark);
}

.celeb-hero__placeholder {
  width: 100%;
  height: 100%;
  background: var(--c-cream-dark);
}

/* ─── Intro ──────────────────────────────────────────────────── */
.celeb-intro {
  padding: 7rem 10vw 6rem;
  background: var(--c-cream);
}

.celeb-intro__inner {
  max-width: 640px;
}

.celeb-intro__label {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  margin: 0 0 0.75rem;
}

.celeb-intro__heading {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 2rem;
  color: var(--c-text);
}

.celeb-intro__heading em {
    font-family: var(--ff-ditalic);
    letter-spacing: 0.05em;
    font-size: 32px;
    line-height: normal;
  }

.celeb-intro__body {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-text);
  opacity: 0.85;
}

.celeb-intro__body p { margin: 0 0 1.25em; }
.celeb-intro__body p:last-child { margin-bottom: 0; }

/* ─── Grid ───────────────────────────────────────────────────── */



.celeb-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.celeb-grid__item {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-color: var(--c-cream-dark);
  overflow: hidden;
  text-decoration: none;
  max-width:97%;
  width:100%;
    margin-bottom:15px!important;

}

.celeb-grid__placeholder {
  width: 100%;
  height: 100%;
  background: var(--c-cream-dark);
}

.celeb-grid__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}

.celeb-grid__item:hover .celeb-grid__overlay {
  background: rgba(20, 18, 14, 0.45);
}

.celeb-grid__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.celeb-grid__item:hover .celeb-grid__meta {
  opacity: 1;
  transform: translateY(0);
}

.celeb-grid__view {
  font-family: var(--ff-script);
  font-size: clamp(1.6rem, 42px, 2.4rem);
  color: var(--c-white);
  line-height: 1;
  text-align: center;
}

.celeb-grid__rule {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.celeb-grid__location {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-white);
  opacity: 0;
  transition: opacity 0.35s ease;
left:0;
right:0;
margin-left:auto;
margin-right:auto;
text-align:center;
}

.celeb-grid__item:hover .celeb-grid__location {
  opacity: 1;
}

.celeb-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--ff-ditalic);
  font-size: 18px;
  color: var(--c-text);
  opacity: 0.5;
  padding: 4rem 0;
}

/* ─── CTA ────────────────────────────────────────────────────── */
.celeb-cta {
  position: relative;
  width: 100%;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-color: var(--c-footer);
  display: flex;
  align-items: center;
  justify-content: center;
}

.celeb-cta__placeholder {
  position: absolute;
  inset: 0;
  background: var(--c-footer);
}

.celeb-cta__overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 8vw;
  background: rgba(44, 44, 36, 0.55);
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.celeb-cta__heading {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--c-cream);
  line-height: 1.2;
  margin: 0;
}

.celeb-cta__heading em {
  display: block;
     font-family: var(--ff-ditalic);
    letter-spacing: 0.05em;
}

.celeb-cta__link {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 235, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s, opacity 0.2s;
}

.celeb-cta__link:hover {
  opacity: 0.7;
  border-bottom-color: var(--c-cream);
}

.icongif{
  max-width:99px;
  height:auto;
  margin-bottom:0;
  margin-top:-150px;
}

/* ─── Celebrations responsive ────────────────────────────────── */
@media ( max-width: 900px ) {
  .celeb-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media ( max-width: 600px ) {
  .celeb-hero { height: 60vh; min-height: 320px; }

  .celeb-intro {
    padding: 5rem 6vw 4rem;
  }

  .celeb-grid__items {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .celeb-cta__overlay {
    padding: 4rem 6vw;
  }
}

/* =============================================================================
   SINGLE CELEBRATION
   ============================================================================= */

/* ─── Hero ───────────────────────────────────────────────────── */
.single-celeb-hero {
  width: 100%;
  height: clamp(420px, 100vh, 100vh);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--c-cream-dark);
}

/* ─── Intro ──────────────────────────────────────────────────── */
.single-celeb-intro {
    background: var(--c-cream-dark);
    border: 1px solid var(--c-text);
    width: 98%;
    padding: 6rem 6vw 5rem;
    outline: solid 15px var(--c-cream-dark);
    max-width: 100%;
    display: block;
    margin: auto;
  position:relative;
}
.single-celeb-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.single-celeb-intro__meta {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  margin: 0 0 1rem;
}

.single-celeb-intro__title {
  font-family: var(--ff-ditalic);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--c-text);
  margin: 0 0 0.75rem;
}

.single-celeb-intro__type {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  margin: 0;
}

.single-celeb-intro__info {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
}

.single-celeb-intro__info li {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  margin: 0 0 0.6rem;
}

.single-celeb-intro__info li:last-child { margin-bottom: 0; }

.single-celeb-intro__title--banner {
  font-style: normal;
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.single-celeb-intro__subtitle {
  font-family: var(--ff-ditalic);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--c-text);
  margin: 0.5rem 0 0;
  line-height: 1.25;
}

.single-celebration--social .single-celeb-intro__body.celeb-toc-content__intro{
max-width:100%;
}

.single-celebration--social .celeb-toc-content{
  padding-left:0;
  margin-left:auto;
  margin-right:auto;
}

.single-celeb-intro__body {
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: normal;
  line-height: 1.8;
  color: var(--c-text);
}

.single-celeb-intro__body h2{
  font-weight:lighter;
    font-size: 24px;
  font-weight: normal;
  line-height: 1.8;
  color: var(--c-text);
}

.single-celeb-intro__body{
  width:100%;
  max-width:450px;
  margin:auto;
}

.single-celeb-intro__body p { margin: 0 0 1.2em; }
.single-celeb-intro__body p:last-child { margin-bottom: 0; }
.single-celeb-intro__body + .single-celeb-intro__body { margin-top: 1.5rem; }

.single-celeb-intro__body.celeb-toc-content__intro {
  max-width: 700px;
  margin: 0 0 3rem;
}

/* ─── Discover nav (sticky TOC) ──────────────────────────────── */
.celeb-toc-layout {
  display: flex;
  align-items: flex-start;
  gap: 1vw;
  width:100%;
  max-width:1400px;
  margin:80px auto 0;
  position:relative
}

.celeb-toc {
  flex: 0 0 400px;
  position: sticky;
  top: 100px;
  padding-left: 0;
  padding-right: 0;
}

.celeb-toc__label {
  font-family: var(--ff-script);
  font-size: 32px;
  color: var(--c-text);
  margin: 0;
}

.celeb-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.celeb-toc__list li { margin-bottom: 0.65rem; }

.celeb-toc__list a {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  text-decoration: none;
  transition: opacity 0.2s;
}

.celeb-toc__list a:hover {   opacity: 0.7;}

.celeb-toc-content {
  flex: 1;
  min-width: 0;
  width:100%;
  max-width:1150px;
  padding-left:50px;
}

/* ─── Event section ──────────────────────────────────────────── */
.celeb-event {
  background: var(--c-cream);
  padding: 0 0 5rem;
  width:100%;
  max-width:1150px;
}

/* ─── Prev/next celebration pagination ───────────────────────── */
.celeb-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1150px;
  padding-bottom: 4rem;
}

.celeb-event__venue {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--c-text);
  margin: 0;
  white-space: nowrap;
}

.celeb-event__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  text-align: right;
}

.celeb-event + .celeb-event {
  padding-top: 1rem;
}

.celeb-event__inner {
}

.celeb-event__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.celeb-event__label {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
}

.celeb-event__type {
  display: inline;
}

.celeb-event__name {
  font-family: var(--ff-serif);
  font-size: 32px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0;
  display:block;
  text-align:left;
}

.category .blog-browse__top{
  margin-bottom: 0;
}

.celeb-event__more {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  text-decoration: none;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.celeb-event__more:hover { opacity: 0.5; }

/* ─── Gallery masonry ────────────────────────────────────────── */
.celeb-event__gallery {
  columns: 3;
  column-gap: 15px;
}

.celeb-event__gallery-img {
  break-inside: avoid;
  overflow: hidden;
  background: var(--c-cream-dark);
  margin-bottom: 15px;
}

.celeb-event__gallery-img img {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
  transition: transform 0.5s ease;
}

.celeb-event__gallery-img.is-portrait img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.celeb-event__gallery-img:hover img {
  transform: scale(1.03);
}

/* ─── Days section (on single celebration) ───────────────────── */
.celeb-days {
  background: var(--c-cream);
  padding: 0 10vw 5rem;
}

.celeb-days__inner {
  border-top: 1px solid var(--c-border);
  padding-top: 2.5rem;
}

.celeb-days__heading {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  margin: 0 0 1.75rem;
}

.celeb-days__heading em {
  font-family: var(--ff-ditalic);
  font-size: 0.95rem;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
}

.celeb-days__list {
  list-style: none;
}

.celeb-days__list-item {
  border-top: 1px dotted var(--c-border);
}

.celeb-days__list-item:last-child {
  border-bottom: 1px dotted var(--c-border);
}

.celeb-days__list-link {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.1rem 0;
  text-decoration: none;
  color: var(--c-text);
  transition: opacity 0.2s;
}

.celeb-days__list-link:hover { opacity: 0.55; }

.celeb-days__list-num {
  font-family: var(--ff-sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.45;
  flex-shrink: 0;
  width: 2.5rem;
}

.celeb-days__list-text {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.celeb-days__list-title {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.celeb-days__list-sub {
  font-family: var(--ff-ditalic);
  font-size: 0.95rem;
  font-weight: 300;
  font-style: normal;
  color: var(--c-text);
  opacity: 0.65;
}

.celeb-days__list-arrow {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  opacity: 0.35;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.celeb-days__list-link:hover .celeb-days__list-arrow {
  opacity: 0.7;
  transform: translateX(3px);
}

/* ─── Event body (block content above gallery) ───────────────── */
.celeb-event__body {
  margin-bottom: 1.75rem;
}

/* ─── Single Day — custom info list ─────────────────────────── */
.single-day__info-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.single-day__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.single-day__info-label {
  font-family: var(--ff-sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text);
  opacity: 0.5;
}

.single-day__info-value {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--c-text);
}

.single-day__hero-text {
  font-family: var(--ff-ditalic);
  font-size: 1rem;
  font-weight: 300;
  font-style: normal;
  line-height: 1.75;
  color: var(--c-text);
  opacity: 0.8;
  margin-bottom: 1.25rem;
}

/* ─── Single Day — block content ────────────────────────────── */
.single-day__content {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-text);
  opacity: 0.85;
}

.single-day__content p  { margin: 0 0 1.2em; }
.single-day__content p:last-child { margin-bottom: 0; }

.single-day__content h2,
.single-day__content h3 {
  font-family: var(--ff-serif);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin: 1.75em 0 0.6em;
  line-height: 1.2;
}

.single-day__content h2 { font-size: 1.4rem; }
.single-day__content h3 { font-size: 1.15rem; }

.single-day__content strong { font-weight: 600; }
.single-day__content em     {     font-family: var(--ff-ditalic);}

.single-day__content a {
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.single-day__content a:hover { border-color: var(--c-text); }

/* ─── Single Day — back link ─────────────────────────────────── */
.single-day__back-link {
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  opacity: 0.6;
  text-decoration: none;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.single-day__back-link:hover { opacity: 1; }

.single-day__back {
  padding-bottom: 4rem;
}

/* ─── Single celebration responsive ─────────────────────────── */
@media ( max-width: 900px ) {
  .single-celeb-intro__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .celeb-event__gallery {
    columns: 2;
  }

  .celeb-toc { display: none; }

  .celeb-event { padding: 0 6vw 5rem; }

  .celeb-event__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .celeb-event__aside { align-items: flex-start; text-align: left; }
}

.celeb-event:last-of-type{
  padding-bottom:0;
}

@media ( max-width: 600px ) {
  .single-celeb-hero { height: 55vw; min-height: 260px; }

  .single-celeb-intro { margin: 0.5rem 3vw; padding: 4rem 6vw 3rem; }

  .celeb-event { padding: 0 6vw 4rem; }

  .celeb-days { padding: 0 6vw 4rem; }

  .celeb-event__gallery {
    columns: 2;
  }
}

/* =============================================================================
   BLOG ARCHIVE  (home.php)
   ============================================================================= */

/* ─── Browse header ──────────────────────────────────────────── */
.blog-browse {
    width: 100%;
    background: var(--c-cream);
    padding: 5rem 0 4rem;
    max-width: 1400px;
    margin: auto;
}

.blog-browse__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.blog-browse__heading {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--c-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Search form ────────────────────────────────────────────── */
.blog-search {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 520px;
  padding:10px 15px;
}

.blog-search__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.55rem 0;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--c-text);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid var(--c-text);
border-right:none;
padding-left:20px;
padding-top:15px;
padding-bottom:15px;
  
}

.blog-search__input::placeholder {
  color: var(--c-text-mid);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.blog-search__btn {
  border: none;
  background: transparent;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  cursor: pointer;
  padding: 0.55rem 0 0.55rem 1.25rem;
  transition: opacity 0.2s;
  white-space: nowrap;
  border:solid thin var(--c-text);
  padding-left:20px;
  padding-right:20px;
padding-top:15px;
padding-bottom:15px;

}

.blog-search__btn:hover { opacity: 0.55; }

/* ─── Category strip ─────────────────────────────────────────── */
.blog-cats__bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.blog-cats__label {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  opacity: 1;
}

.blog-cats__next {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  background: none;
  border: none;
  padding-bottom: 1px;
  cursor: pointer;
  transition: all ease-in 0.2s;
}

.blog-cats__next:hover {  


}

.blog-cats__viewport {
  overflow: hidden;
}

.blog-cats__grid {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

/* ─── Category card ──────────────────────────────────────────── */
.blog-cat-card {
  flex: 0 0 calc(33.3333% - 1rem);
  display: block;
  text-decoration: none;
  color: var(--c-text);
}

.blog-cat-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 440px;
  background-size: cover;
  background-position: center;
  background-color: var(--c-cream-dark);
  overflow: hidden;
  transition: opacity 0.3s;
}

.blog-cat-card:hover .blog-cat-card__img { opacity: 0.85; }

.blog-cat-card__name {
  position: relative;
  display: inline-block;
  margin-top: 0.85rem;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  padding-bottom: 2px;
}

.blog-cat-card__name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.blog-cat-card:hover .blog-cat-card__name::after {
  transform: scaleX(1);
}

/* ─── Category filter pills ──────────────────────────────────── */
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  margin-bottom: 2.5rem;
}

.blog-filter__pill {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  padding: 0 0 2px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.2s, border-color 0.2s;
}

.blog-filter__pill:hover { opacity: 0.7; }

.blog-filter__pill.is-active {
  opacity: 1;
  border-bottom-color: var(--c-text);
}

/* ─── Divider ────────────────────────────────────────────────── */
.blog-divider {
  border: none;
  border-top: 1px dotted var(--c-text);
  margin: auto;
  background-color:var(--c-cream);
  max-width:1400px;
  width:100%;
  display: block;
}

/* ─── The Latest section ─────────────────────────────────────── */
.blog-latest {
  background: var(--c-cream);
  padding: 0 0 6rem;
  width:100%;
  max-width:1400px;
  margin:auto;
}

.mtopper{margin-bottom:60px;}

.blog-latest__heading {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--c-text);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.blog-latest__empty {
  font-family: var(--ff-ditalic);
  font-style: normal;
  opacity: 0.5;
  text-align: center;
  padding: 4rem 0;
}

/* ─── Posts grid ─────────────────────────────────────────────── */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 1.5rem;
}

/* ─── Post card ──────────────────────────────────────────────── */
.blog-post-card {
  display: flex;
  flex-direction: column;
}

.blog-post-card__img-wrap {
  display: block;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
}

.blog-post-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.blog-post-card__img--placeholder {
  position: absolute;
  inset: 0;
  background: var(--c-cream-dark);
}

.blog-post-card__img-wrap:hover .blog-post-card__img {
  transform: scale(1.04);
}

.blog-post-card__info {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.blog-post-card__cat {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight:500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  margin: 0;
}


.blog-post-card__title {
  font-family: var(--ff-serif);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}




.blog-post-card__title a {
  color: var(--c-text);
  transition: opacity 0.2s;
  font-size:20px;
  font-family: var(--ff-sans);
}

.blog-post-card__title a:hover { }

.blog-post-card__read {
position: relative;
display: inline-block;
  width: fit-content;
    margin-top: 0.25rem;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  padding-bottom: 2px;
}

.blog-post-card__read::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.blog-post-card__read:hover::after {
  transform: scaleX(1);
 
}

/* ─── Pagination ─────────────────────────────────────────────── */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}

.blog-pagination__item {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--c-text);
  opacity: 0.45;
  transition: opacity 0.2s;
  padding-bottom: 2px;
}

.blog-pagination__item:hover { opacity: 0.75; }

.blog-pagination__item.is-active {
  opacity: 1;
  border-bottom: 1px solid var(--c-text);
}

.blog-pagination__ellipsis {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  color: var(--c-text);
  letter-spacing: 0.05em;
}

.blog-pagination__next {
  font-family: var(--ff-sans);
  font-size: 16px;
  color: var(--c-text);
  transition: opacity 0.2s;
  line-height: 1;
}


/* ─── Blog responsive ────────────────────────────────────────── */
@media ( max-width: 900px ) {
  .blog-cat-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

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

  .blog-browse__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

      .cta-block {
        padding: 4rem 1.5rem 0 1.5rem;
      }

  .blog-search{
    padding-left:0!important;
    padding-right:0!important;
  }

  .blog-search { max-width: 100%; width: 100%; }
}

.blog-cats {
    margin-bottom: 50px;
}

.blog-search__btn,
.blog-search__input{
  border-radius:0!important;
}

@media ( max-width: 600px ) {
  .blog-browse  { padding: 3.5rem 6vw 0rem; }
  .blog-latest  { padding: 3.5rem 6vw 4rem; }

  .blog-cat-card { flex: 0 0 100%; }

  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* =============================================================================
   404 NOT FOUND  (404.php)
   ============================================================================= */

.notfound__hero {
  min-height: calc( 100vh - var(--nav-h) );
  background-size: cover;
  background-position: center;
  background-color: var(--c-text);
  position: relative;
  display: flex;
}

.notfound__overlay {
  position: absolute;
  inset: 0;
  background: rgba( 44, 44, 36, 0.52 );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 6vw;
}

.notfound__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.notfound__heading {
  font-family: var(--ff-serif);
  font-size: clamp( 0.9rem, 1.6vw, 1.25rem );
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-cream);
  margin: 0;
  line-height: 1.4;
}

.notfound__sub {
  font-family: var(--ff-ditalic);
  font-size: clamp( 1.5rem, 3.2vw, 2.4rem );
  font-weight: 300;
  font-style: normal;
  color: var(--c-cream);
  margin: 0;
  line-height: 1.2;
}

.notfound__btn {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cream);
  border-bottom: 1px solid rgba( 245, 240, 235, 0.4 );
  padding-bottom: 2px;
  transition: border-color 0.2s, opacity 0.2s;
}

.notfound__btn:hover {
  border-bottom-color: var(--c-cream);
}

/* =============================================================================
   SEARCH RESULTS  (search.php)
   ============================================================================= */

/* ─── Header ─────────────────────────────────────────────────── */
.search-header {
  background: var(--c-cream);
  padding: 4.5rem 10vw 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.search-header__label {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  margin: 0 0 0.5rem;
}

.search-header__keyword {
  font-family: var(--ff-ditalic);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: normal;
  color: var(--c-text);
  line-height: 1.2;
  margin: 0;
}

/* ─── Grid wrapper ───────────────────────────────────────────── */
.search-grid {
  background: var(--c-cream);
  padding: 2rem 10vw 4rem;
}

.search-grid--empty {
  padding: 5rem 10vw 6rem;
}

.search-empty {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--c-text);
  opacity: 0.6;
}

.search-empty em {  font-style: normal;
 }

/* ─── Search responsive ──────────────────────────────────────── */
@media ( max-width: 900px ) {
  .search-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .search-header .blog-search { max-width: 100%; width: 100%; }
}

@media ( max-width: 600px ) {
  .search-header { padding: 3.5rem 6vw 3rem; }
  .search-grid   { padding: 1.5rem 6vw 3.5rem; }
}

/* =============================================================================
   SINGLE BLOG POST  (single.php)
   ============================================================================= */

/* ─── Layout — sticky sidebar + scrolling content ────────────── */
.sp-layout {
  display: flex;
  align-items: flex-start;
  gap: 3vw;
}

.sp-sidebar {
    position: sticky;
    top: 0;
    flex: 0 0 35%;
    min-height: 85vh;
    background: var(--c-cream);
    padding: 7rem 7vw 8.5rem 2vw;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}



.sp-content {
  flex: 1;
  min-width: 0;
}

.sp-hero__cat {
  position: relative;
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  text-decoration: none;
  padding-bottom: 2px;
  width:fit-content;
}

.sp-hero__cat::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.sp-hero__cat:hover::after {
  transform: scaleX(1);
}

.sp-hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--c-text);
  margin: 0;
}

.sp-hero__share {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  background: none;
  border: none;
  padding: 50px 0 2px 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.sp-hero__share:hover { opacity: 0.55; }

.sp-hero__mark {
  position: relative;
  display: inline-block;
  font-family: var(--ff-script);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--c-text);
  margin-top: auto;
  padding-bottom: 2px;
  user-select: none;
  width:100%;
  max-width:60px;
  height:auto;
}

.sp-hero__mark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.sp-hero__mark:hover::after {
  transform: scaleX(1);
}

.sp-hero__img {
  height: 68vh;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-color: var(--c-cream-dark);
}

main.single-post{
  margin-top:60px;
}

/* ─── Body — date / intro / content / gallery ────────────────── */
.sp-body {
  background: var(--c-cream);
  padding: 5rem 10vw 5rem 0;
}

.sp-body:before{
  margin:0 0 50px 0;
  width:100%;
  height:1px;
  display:block;
  border-top:1px dotted var(--c-text);
  content:"";
}

.sp-body__date {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  margin: 0 0 2.5rem;
}

.sp-body__intro {
  font-family: var(--ff-ditalic);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--c-text);
  max-width: 820px;
  margin: 0 0 3rem;
}

/* WordPress content styles */
.sp-body__content {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--c-text);
  max-width: 900px;
  margin-left: 0;
}

.sp-body__content ol, .sp-body__content ul, .sp-body__content li{
    font-family: var(--ff-sans);
}

.sp-body__content p { margin: 0 0 1.4em; 
  font-family: var(--ff-sans);
}
.sp-body__content p:last-child { margin-bottom: 0; }

.sp-body__content a {
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.sp-body__content a:hover { border-color: var(--c-text); }

.sp-body__content h2,
.sp-body__content h3 {
  font-family: var(--ff-serif);
  font-weight: 300;
  margin: 2.5em 0 0.75em;
  line-height: 1.2;
}

.sp-body__content h2 { font-size: 1.5rem; }
.sp-body__content h3 { font-size: 1.2rem; }

.sp-body__content strong { font-weight: 600; }
.sp-body__content em     { font-style: italic; }

/* ─── Photo gallery ──────────────────────────────────────────── */
.sp-body__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 4rem;
  max-width: none;
}

.sp-body__gallery-item {
  overflow: hidden;
  background: var(--c-cream-dark);
}

.sp-body__gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.sp-body__gallery-item:hover img {
  transform: scale(1.03);
}

/* ─── Also Explore ───────────────────────────────────────────── */
.sp-explore {
  background: var(--c-cream);
  padding: 4rem 10vw 5rem 0;
  border-top: 1px solid var(--c-border);
}

.sp-explore__heading {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  margin: 0 0 2rem;
  max-width: 900px;
  margin-left: auto;
}

.sp-explore__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  max-width: 900px;
  margin-left: auto;
}

.sp-explore__card {
  display: flex;
  flex-direction: column;
}

.sp-explore__card-img-wrap {
  display: block;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 2 / 2;
  width: 100%;
}

.sp-explore__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.sp-explore__card-img--placeholder {
  position: absolute;
  inset: 0;
  background: var(--c-cream-dark);
}

.sp-explore__card-img-wrap:hover .sp-explore__card-img {
  transform: scale(1.04);
}

.sp-explore__card-info {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sp-explore__card-cat {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  margin: 0;
}

.sp-explore__card-title {
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin: 5px 0;
    text-transform:none;

}

.sp-explore__card-title a {
  color: var(--c-text);
  transition: opacity 0.2s;
}

.sp-explore__card-title a:hover { opacity: 0.6; }

.sp-explore__card-read {
  display: inline-block;
  margin-top: 0.2rem;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-cream);
  padding-bottom: 1px;
  transition: opacity 0.2s, border-color 0.2s;
  width:fit-content;
}

.sp-explore__card-read:hover {
  border-bottom-color: var(--c-text);
}

/* ─── Back to blog ───────────────────────────────────────────── */
.sp-back {
    /* background: var(--c-cream); */
    padding: 0 10vw 0 0;
    margin: -110px auto 30px;
    position: relative;
    max-width: 95%;
    display: block;
}

.sp-back__link {
  position: relative;
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  padding-bottom: 2px;
}

.sp-back__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.sp-back__link:hover::after {
  transform: scaleX(1);
}

/* ─── Single post responsive ─────────────────────────────────── */
@media ( max-width: 900px ) {
  .sp-layout {
    flex-direction: column;
    gap: 0;
  }

  .sp-back {
    margin: auto;
  }
  .sp-sidebar {
    position: static;
    min-height: auto;
    flex-basis: auto;
    width: 100%;
    padding: 0 6vw 3.5rem;
    gap: 1.5rem;
  }

  .sp-hero__mark { display: none; }

  .sp-hero__img {
    height: 55vw;
    min-height: 280px;
  }

  .sp-body,
  .sp-explore,
  .sp-back {
    padding-left: 6vw;
  }

  .sp-explore__grid {
    grid-template-columns: 1fr;
  }
}


@media ( max-width: 768px ) {
    nav.nav-primary { margin: 0; }

.celeb-pagination {
    padding: 0 20px;
}

.press-sidebar{
  position: relative!important;
  top:0!important;
}

.celeb-toc-content{
  padding-left:0;
}

.single-celeb-intro {
    width: auto;
}

.nav-primary ul li .sub-menu li:not(:last-child)::after{
  display: none;
}

.nav-primary ul li .sub-menu li {
    padding: 0;
    text-align: left;
}


.single-celebration--social .celeb-toc-layout {
    margin: 50px auto 0;
    padding: 0 20px;
}

.single-celebration--social .single-celeb-intro__body.celeb-toc-content__intro{
  margin-bottom:0;
}

.celeb-pagination .link-label{
font-size:11px;
text-align:center;
}


    .about-team__grid {
        padding: 0 10px 0 10px;
    }

    .about-service__body p {
    font-size: 16px;
    }

    .link-label{
      font-size:14px;
    }

.about-team {
    padding: 5rem 6vw 3rem;
}

.about-intro {
    background: var(--c-white);
    padding: 4rem 8vw;
}




.cta-block__heading em {
    font-size: 28px;
}

.cta-block__body,
    .cta-block__heading {
        text-align: left;
    }

.cta-block__heading em {
    margin-top: 1.3rem;
}



.home .cta-block__text,
    .home .cta-block,
.intro__eyebrow,
    .intro__body{
      text-align:left!important;
    }

    .intro .link-label {
    width: fit-content;
    text-align: left;
    display: block;
}

.home .cta-block{
  flex-direction:column-reverse;
  display:flex;
  flex-wrap:wrap;
}

.hero__headline {
        font-size: 28px!important;
        line-height: 38px !important;
    }

    .hero__sub{
      margin-top:30px;
    }

.hero__headline em{
  line-height:20px;
}

    .celeb-event__gallery {
    columns: 1!important;
    }

    .inquire-info {
    display: block;
    }

  .inquire-info {
  margin-bottom: 0;
  }

  .celeb-event__gallery-img {
  margin-bottom: 25px;
  }

  .press-sidebar__label::after{
    display:none;
  }

  .press-sidebar,
  .press-sidebar__label,
  .press-sidebar__heading{
    width:100%;
    max-width:100%;
    display:block;
  }

  .wpcf7 .cf7-submit {
     margin-top:0;
}

  .inquire-page {
        padding: 2rem 6vw 6rem;
    }

    .home .intro__eyebrow strong{
      letter-spacing:0.05em;
    }

}

@media ( max-width: 900px ) {
  .carousel__slide:nth-child(3n+1) { flex: 0 0 calc(44% - 9px); }
  .carousel__slide:nth-child(3n+2),
  .carousel__slide:nth-child(3n)   { flex: 0 0 calc(33% - 9px); }
}

@media ( max-width: 600px ) {
  .carousel__track { gap: 0; }
  .carousel__slide:nth-child(3n+1),
  .carousel__slide:nth-child(3n+2),
  .carousel__slide:nth-child(3n) {
        flex: 0 0 calc(100% - 0px);
        align-self: center;
    }

  /* Source photos vary in aspect ratio — crop them all to a matching
     height so slides don't jump size as the carousel is swiped. */
  .carousel__slide {
    aspect-ratio: 3 / 4;
    max-height: none;
  }

  .carousel__img {
    height: 100%;
    object-fit: cover;
  }

  .carousel__placeholder {
    height: 100%;
    padding-top: 0;
  }
}

.hmob{
  display:flex;
}

.hdesk{
  display:none;
}



@media ( max-width: 768px ) {


  .footer__address,
.footer__info p, .footer__info a, .footer__info span, .footer__info, .footer__copyright, .footer__credits{
  display:block;
  line-height:18px!important;
}

.celeb-event__name {
    font-size: 22px;
}

.home .cta-block__heading {
        margin: 50px auto 0.25rem;
    }


.inquire-form-wrap {
    padding-left: 0px;
}

.single-celeb-intro__body h2, .single-celeb-intro__body h1, .single-celeb-intro__body h3,
.single-celeb-intro__body h4, .single-celeb-intro__body h5 {
    font-weight: lighter;
    font-size: 18px;
}

  .single-celeb-intro__body {
font-size:14px;
  }

.site-footer{
  padding-top:25px;
}

.cta-block__body {
    font-size: 16px;
}

.celeb-grid__item {
    max-width: 90%;
}

.celeb-grid__item {
    margin: auto;
}

.about-team__grid {
    gap: 1rem;
}

.about-cta__heading em{
  display:block;
  margin:auto;
}


.about-team__heading {
    text-align: center;
}

.about-philosophy {
padding-top:0;
}

.footer__bottom {
    padding: 0 1rem 1.75rem;
}

.footer__info{
    padding: 2.25rem 1rem;
}

.footer__info,
.footer__copyright, .footer__credits {
font-size:11px;
}


.footer__bottom {
flex-wrap:Wrap;
}

.footer__copyright, .footer__credits{
  width:100%;
  max-width:100%;
  display: block;
}

.hmob{
  display:none;
}

.hdesk{
  display:block;
}

.footer__watermark-wrap {
  padding: 1.5rem 0;
}

.footer__info.hdesk {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer__info.hdesk .footer__address {
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.footer__info.hdesk .footer__links-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer__bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding-top: 0.5rem;
}

.press__inner {
  display: block;
}

.press__logos {
gap:0;
padding-top:50px;
padding-bottom:25px;
flex-wrap: nowrap;
justify-content: flex-start;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
cursor: grab;
touch-action: pan-y;
}

.press__logos::-webkit-scrollbar {
  display: none;
}

.press__logos.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.press {
    padding: 2rem;
}

.press__label {
    font-size: 28px;
}

.press__logo-img{
  margin:auto;
  height:110px;
}

.press__logo {
  justify-content: center;
}

.press__logos > *{
  scroll-snap-align: center;
  scroll-snap-stop: always;
  flex: 0 0 100%;
  width:100%;
  max-width:100%;
  padding:0;
}


  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    height:100vh;
  }

    .hero__panel {
        min-height: 100%;
        height: 100vh;
    }

    .icongif{
      margin-top:0;
    }

    .hero__headline {
    font-size: 20px;
    }

    .hero__panel--right::before {
      inset: 2rem 1.75rem;
    }

        .hero {
          height:auto;
        }

  .intro {
    padding: 3.5rem 1.5rem;
  }

  .intro__ornament {
    position: static;
    transform: translateX(-60px);
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
  }

  .intro__ornament.is-visible {
    transform: translateX(0);
  }

.gallery-row__item .celeb-grid__overlay {
    background: rgba(20, 18, 14, 0.45);
}

.gallery-row__item .celeb-grid__location {
    opacity: 1;
}

  .gallery-row__item .celeb-grid__meta{
    opacity: 1;
    transform: translateY(0);
  }

  .intro__inner {
    text-align: center;
  }

  .gallery-row {
    display: flex;
    height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-row::-webkit-scrollbar {
    display: none;
  }

  .gallery-row__item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    max-width: 100%;
    aspect-ratio: 1;
    margin: 0;
    height: 100vh;
  }

  .gallery-row-wrap .carousel__btn {
    display: flex;
  }



  .cta-block {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 4rem 1.5rem;
    gap: 2rem;
  }

  .cta-block__text {
    margin: 0 auto;
  }

  .cta-block__heading {
    margin: 0 auto 0.25rem;
  }

  .cta-block__ornament {
    margin: 0 auto;
  }
}


@media ( max-width: 600px ) {
  .sp-body { padding: 4rem 6vw; }
  .sp-explore { padding: 3.5rem 6vw 4rem; }
  .sp-back { padding: 0 6vw 4rem; }

  .sp-body__gallery {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* ═══════════════════════════════════════════════════════════
   SALES PAGE
═══════════════════════════════════════════════════════════ */

.sales__placeholder {
  width: 100%;
  height: 100%;
  background: var(--c-cream-dark);
}

/* ─── Welcome ────────────────────────────────────────────── */
.sales-welcome {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    align-items: center;
  background-color:#FEFBF6;
    padding: 4rem 0;
    max-width: 1100px;
    margin: auto;
}

.sales-page{
  background-color:#FEFBF6;
}

.sales-welcome__eyebrow {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 1.25rem;
}

.sales-welcome__body {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-text-mid);
  max-width: 460px;
}

.sales-welcome__media { position: relative; }

.sales-welcome__image {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--c-cream-dark);
}

.sales-welcome__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.sales-welcome__play:hover { background: #fff; }

.sales-welcome__play svg { margin-left: 3px; }

/* ─── Toast ──────────────────────────────────────────────── */
.sales-toast {
  background-color:#FEFBF6;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
  clear:both;
}

.sales-toast__heading {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--c-text);
  margin-bottom: 3rem;
  text-transform:uppercase;
  text-align:left;
  width:100%;
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
}

.sales-toast__heading{
  float:right;
  max-width: 1310px;
}

.sales-toast__eyebrow {
  font-family: var(--ff-ditalic);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.05em;
  color: var(--c-text);
  margin-bottom: 1rem;
  font-weight:lighter;
}

.sales-toast__body {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--c-text-mid);
  margin-bottom: 1.5rem;
}

.sales-toast__carousel {
  margin-top: 3rem;
  background: none;
  /* Break out of .sales-toast's own padding so the slide spans the full
     viewport width edge-to-edge, not just the padded content column. */
  width: 100vw;
}

/* Each slide is one image + text. Slides are sized narrower than the full
   viewport (by this peek amount) so the NEXT slide's own image naturally
   shows a sliver of itself at the right edge — no image is ever duplicated
   in the DOM to fake that preview; the rest of it just sits offscreen,
   cropped by .carousel__viewport's own overflow:hidden. */
.sales-toast__carousel {
  --toast-peek: 90px;
  --toast-image-inset: 130px;
    width: 100%;
    max-width: 1310px;
    float: right;
}


.carousel--slides .carousel__track {
  align-items: stretch;
  gap: 0;
}

.logoicon{
  margin-top:50px;
}

.sales-process:after{
  content:"";
  display:block;
  height:1px;
  width:100%;
  max-width:1300px;
  border-top:1px dotted var(--c-text);
  margin:auto;
}

.page-template-page-sales .press__label{
  color:var(--c-text);
}

.carousel--slides .carousel__slide {
  /* The active slide's own image is pushed in from the left by
     --toast-image-inset (see .sales-toast-slide__image below), so the slide
     needs to be that much narrower too, on top of --toast-peek, to keep the
     next slide's sliver preview at a consistent width. */
  flex: 0 0 calc(90vw - var(--toast-peek, 325px) - var(--toast-image-inset, 0px));
  width: calc(100vw - var(--toast-peek, 325px) - var(--toast-image-inset, 0px));
  max-height: none;
  align-self: auto;
}

/*
.carousel--slides{
  margin-left:200px;
}
*/
/* The last slide has no next slide to peek in from, so it doesn't need the
   reserved peek space — without this it'd leave dead empty whitespace past
   its own content, and the carousel's own "scroll to the end" clamping would
   land short of the viewport's left edge, leaving the previous slide bleeding
   in from the left instead of this one sitting flush. Sized as 100% (of the
   actual carousel viewport) rather than 100vw, since the carousel no longer
   spans the full browser viewport (it's float:right; max-width:1320px). */
.carousel--slides .carousel__slide:last-child {
  flex: 0 0 100%;
  width: 100%;
}

.page-template-page-sales .about-cta__overlay{
  background:none;
}

.carousel--slides .carousel__slide:last-child  .sales-toast-slide__content{
  margin-left:150px;
}

.sales-toast-slide {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.sales-toast-slide__image {
  width: 325px;
  height: 485px;
  background-size: cover;
  background-position: center;
  background-color: var(--c-cream-dark);
}

.sales-toast-slide__content {
  max-width: 420px;
  margin: 0 0 0 150px;
  text-align: left;
}

/* ─── Stats ──────────────────────────────────────────────── */
.sales-stats {
  display: flex;
  background: var(--c-cream-dark);
}

.statswrap{
  margin:100px auto;
  width:100%;
  max-width:1100px;
  display:flex;
}

.sales-stats__image {
  flex: 0 0 42%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: #C8BDB8;
  width:100%;
  max-width:325px;
  height:485px;
}

.sales-stats__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  padding: 4rem 0 4rem 6vw;
}

.sales-stats__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sales-stats__number {
  font-family: var(--ff-ditalic);
  font-weight: 300;
  font-size: 56px;
  color: var(--c-text);
  line-height: 1;
  font-style:italic;
}

.sales-stats__label {
  color: var(--c-text-mid);
}

.topsales-testimonials{
  padding-top:100px!important;
}

/* ─── Testimonials (Kind Words) ─────────────────────────────── */
.sales-testimonials {
  background: #FEFBF6;
  padding: 0 8vw 5rem;
}

.sales-testimonials__heading {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 3.5rem;
}

.sales-testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 1100px;
  margin-left:auto;
  margin-right:auto;
}

.sales-testimonial__content{
  width:100%;
  max-width:670px;
}

.sales-testimonial {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3vw;
  align-items: center;
}

.sales-testimonial--reverse {
  grid-template-columns: 1fr 325px;
}

.sales-testimonial--reverse .sales-testimonial__photo { order: 2; }

.sales-testimonial__photo {
  width: 325px;
  height: 485px;
  background-size: cover;
  background-position: center;
  background-color: var(--c-cream-dark);
}

.sales-testimonials__heading{
  width:100%;
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
}

.sales-testimonial__quote {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  color: var(--c-text);
  margin-bottom: 1rem;
}

.sales-testimonial__client {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #5E351C;
}

/* ─── Process ────────────────────────────────────────────── */
.sales-process {
  background: #FEFBF6;
  padding: 6rem 8vw;
}

.sales-process__layout {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  max-width: 1120px;
  margin: 0 auto;
}

.sales-process__title-col {
  position: sticky;
  top: var(--nav-h);
  flex: 0 0 390px;
  width: 100%;
  padding-top: 0.25rem;
}

.sales-process__heading {
  font-family: var(--ff-serif);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 1.5rem;
  line-height: normal;
}

.sales-process__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-color: var(--c-cream-dark);
}

.sales-process__list {
  list-style: none;
  flex: 1;
  max-width: 750px;
  margin: 0 0 50px auto;
}

.sales-process__item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px dotted #5E351C;
}

.sales-process__item:first-child { padding-top: 0; }
.sales-process__item:last-child { border-bottom: none; }

.sales-process__number {
  font-family: var(--ff-ditalic);
  font-weight: 300;
  font-size: 32px;
  color:#5E351C;
  letter-spacing: 0;
  font-style:italic;
}

.sales-process__title {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #5E351C;
}

.sales-process__body {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: var(--c-text-mid);
  max-width: 560px;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.sales-faq {
  background: #E0D2CE;
  padding: 6rem 8vw;
}

.sales-faq__layout {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
}

.sales-faq__title {
  position: sticky;
  top: var(--nav-h);
  flex: 0 0 365px;
  width: 300px;
  padding-top: 0.25rem;
}

.sales-faq__label {
  font-family: var(--ff-serif);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 0;
  line-height: normal;
}

.sales-faq__heading {
  font-family: var(--ff-ditalic);
  font-weight: 300;
  font-style: italic;
  font-size: 28px;
  color: var(--c-text);
  letter-spacing: 0.05em;
  margin-top: 0;
}

.sales-faq__inner {
  flex: 1;
  max-width: 800px;
  margin: 0 0 0 auto;
}

.sales-faq__item {
  border-bottom: 1px dotted var(--c-text);
}

.sales-faq__item:first-child { border-top: 1px dotted var(--c-text); }

.sales-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  color: var(--c-text);
  line-height: 30px;
}

.sales-faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}

.sales-faq__icon::before,
.sales-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--c-text);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sales-faq__icon::before { width: 14px; height: 1px; }
.sales-faq__icon::after { width: 1px; height: 14px; }

.sales-faq__item.is-open .sales-faq__icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

.sales-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.sales-faq__answer p {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-text-mid);
  padding: 0 0 1.5rem;
  max-width: 640px;
}

/* ─── CTA extras (shared .about-cta markup) ─────────────────── */
.sales-cta__body {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 1.25rem 0 1.75rem;
}

.about-cta{
  background-repeat: no-repeat;
  background-size: cover;
}

.sales-cta__link { color: #fff; }

@media ( min-width: 1000px ) {

.press-content{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.press-pub__name-wrap {
    height: 140px;
}

.press-pub__name-wrap img{
  object-fit: contain;
}

    .press-content {
        margin-top: -40px;
    }

.press-pub{
  max-width: 48%;
  width:100%;
  display: block;
  flex-wrap: wrap;
  padding-top:0;
}

.press-pub__features,
.press-pub > div{
  width:100%;
  max-width:100%;
  display: block;
  columns: inherit;
}

}

@media ( min-width: 1600px ) {

.sales-toast__carousel {
  --toast-peek: 0px;
  --toast-image-inset: 0px;
    width: 100%;
    max-width: 1100px;
    float: none;
    margin:auto;
}

.sales-toast__heading{
  float:none;
  max-width: 1110px;
  margin-left:auto;
  margin-right:auto;
}


.carousel__slide {
    flex: 0;
    width: 100%;
    max-height: none;
    align-self: auto;
    max-width: 1600px;
    margin: auto;
}

}


@media ( max-width: 900px ) {
  .sales-welcome {
    grid-template-columns: 1fr;
    padding: 4rem 6vw;
  }

  .sales-toast-slide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .sales-toast-slide__content {
    order: -1;
    text-align: center;
    margin: 0 auto;
  }

  .sales-toast-slide__image {
    width: 100%;
    height: 485px;
  }

  .sales-stats {
    flex-direction: column;
  }

  .sales-stats__image { aspect-ratio: 16 / 9; }

  .sales-testimonial,
  .sales-testimonial--reverse {
    grid-template-columns: 1fr;
  }

  .sales-testimonial--reverse .sales-testimonial__photo { order: 0; }

  .sales-testimonial__photo {
    width: 100%;
  }

  .sales-process__item {
    grid-template-columns: 50px 1fr;
  }
}

@media ( max-width: 768px ) {
  /* The desktop "peek carousel" geometry (fixed margin-left offset, plus
     peek/inset spacing tuned for wide viewports) pushes the whole carousel
     off-screen on phones. Below 768px each slide is already a stacked,
     full-width layout (see the 900px rules above), so there's no next-slide
     sliver to preserve room for — every slide can just be full width. */
  .carousel--slides {
    margin-left: 0;
  }

  .sales-faq__heading {
    font-size: 24px;
  }

  .carousel--slides .carousel__slide{
    flex-direction: column-reverse;
  }

.sales-stats__list > div:last-of-type{
  border:none;
}

.sales-stats__image{
  max-width: 100%;
  margin-left:auto;
  margin-right:auto;
}

  .sales-stats__label,
  .sales-stats__number {
        width: 100%;
        text-align: center;
        font-size:28px;
    }

  .sales-stats__list > div,
  .statswrap{
    flex-wrap:wrap;
  }

  .sales-toast__carousel {
    --toast-peek: 0px;
    --toast-image-inset: 0px;
  }

  .carousel--slides .carousel__slide {
    flex: 0 0 100vw;
    width: 100vw;
  }

  .sales-welcome {
    padding: 3rem 6vw;
  }

  .sales-toast {
    padding: 4rem 0;
  }

  .carousel--slides .carousel__slide:last-child .sales-toast-slide__content{
    margin-left:auto;
  }

.sales-toast-slide__image{
  display:none;
}

.sales-testimonial__quote {
    font-size: 18px;
    line-height: 28px;
}

.sales-stats__item:last-of-type{
  padding-bottom:0;
}

.sales-toast__carousel{
  margin-top:0;
}

.sales-toast{
  padding:0;
}

  .sales-toast__heading {
    font-size: 26px;
    text-align: center;
    padding: 0 6vw;
    margin-bottom:0;
  }

  .sales-toast-slide {
    padding: 0 6vw;
  }

  .statswrap {
    margin: 4rem auto;
    padding: 0 6vw;
  }

  .sales-stats__list {
    padding: 2.5rem 0 0;
    gap: 1.75rem;
  }

  .sales-stats__number {
    font-size: 42px;
  }

  .sales-testimonials {
    padding: 0 6vw 3.5rem;
  }

  .sales-testimonials__heading {
    margin-bottom: 2rem;
  }

  .sales-testimonials__list {
    gap: 2.5rem;
  }

  .sales-process {
    padding: 4rem 6vw;
  }

  .sales-process__layout {
    flex-direction: column;
    gap: 2rem;
  }

  .sales-process__title-col {
    position: relative;
    top: 0;
    width: 100%;
    flex-basis: auto;
    padding-top: 0;
  }

  .sales-process__title {
        margin-top: 5px;
    }

  .sales-process__list {
    width: 100%;
    margin: 0 0 30px;
  }

  .sales-process__item {
    grid-template-columns: 32px 1fr;
    gap: 1.25rem;
    padding: 1.5rem 0;
  }

  .sales-process__title {
    font-size: 22px;
  }

  .sales-process__body {
    font-size: 15px;
  }

  .sales-faq {
    padding: 4rem 6vw;
  }

  .sales-faq__layout {
    flex-direction: column;
    gap: 2rem;
  }

  .sales-faq__title {
    position: relative;
    top: 0;
    width: 100%;
    flex-basis: auto;
    padding-top: 0;
  }

  .sales-faq__inner {
    width: 100%;
    margin: 0 auto;
  }
}
