.af-root-home {
  --af-hero-height: min(1040px, 100svh);
  --af-gutter: clamp(24px, 3vw, 72px);
  --af-section-y: clamp(154px, 9vw, 212px);
  --af-root-container: min(var(--af-container), calc(100% - (var(--af-gutter) * 2)));
  margin-top: 0 !important;
}

.af-root-home .af-root-hero {
  position: relative;
  min-height: var(--af-hero-height);
  color: var(--af-color-white);
  background: var(--af-color-ink);
  isolation: isolate;
}

.af-root-home .af-root-hero-media,
.af-root-home .af-root-hero-media img,
.af-root-home .af-root-hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.af-root-home .af-root-hero-media img,
.af-root-home .af-root-hero-media video {
  object-fit: cover;
  object-position: center;
}

.af-root-home .af-root-hero-media video:not([src]) {
  display: none;
}

.af-root-home .af-root-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 240px;
  background: linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,0));
  pointer-events: none;
}

.af-root-home .af-root-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.34) 0%, rgba(0,0,0,.12) 42%, rgba(0,0,0,.5) 100%);
}

.af-root-home .af-header-inner {
  width: var(--af-root-container);
  height: 128px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
}

.af-root-home .af-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 2.6vw, 52px);
  font-family: var(--af-font-body);
  font-size: clamp(12px, .78vw, 14px);
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
}

.af-root-home .af-nav-right {
  justify-content: flex-end;
}

.af-root-home .af-nav a,
.af-root-home .af-mobile-menu a {
  position: relative;
  padding: 10px 0;
}

.af-root-home .af-nav a::after,
.af-root-home .af-mobile-menu a::after {
  content: "";
  position: absolute;
  inset: auto 0 1px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .42s var(--af-ease), opacity .42s var(--af-ease);
  opacity: .8;
}

.af-root-home .af-nav a:hover::after,
.af-root-home .af-nav a:focus-visible::after,
.af-root-home .af-mobile-menu a:hover::after,
.af-root-home .af-mobile-menu a:focus-visible::after {
  transform: scaleX(1);
}

.af-root-home .af-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.af-root-home .af-brand-logo img {
  width: clamp(148px, 10vw, 182px);
  height: auto;
  filter: invert(1) brightness(2.9) contrast(1.12) drop-shadow(0 1px 12px rgba(0,0,0,.26));
}

.af-root-home .af-mobile-menu {
  display: none;
}

.af-root-home .af-root-hero-copy {
  position: relative;
  z-index: 3;
  min-height: var(--af-hero-height);
  display: grid;
  place-items: center;
  padding: 164px var(--af-gutter) 96px;
  text-align: center;
}

.af-root-home .af-root-hero h1 {
  margin: 0;
  color: var(--af-color-white);
  font-family: var(--af-font-display);
  font-size: clamp(112px, 8.7vw, 176px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .8;
  text-shadow: 0 8px 36px rgba(0,0,0,.16);
}

.af-root-home .af-root-hero p {
  max-width: 820px;
  margin: 36px auto 0;
  color: var(--af-color-white);
  font-size: clamp(14px, 1.05vw, 19px);
  letter-spacing: .18em;
  line-height: 1.72;
  text-transform: uppercase;
}

.af-root-home .af-manifesto {
  width: min(900px, calc(100% - 48px));
  margin-inline: auto;
  text-align: center;
}

.af-root-home .af-manifesto .af-section-kicker {
  display: none !important;
}

.af-root-home .af-manifesto .af-section-title {
  font-size: var(--af-section-title-standard, clamp(42px, 3.25vw, 64px));
  letter-spacing: -.015em;
  line-height: 1;
}

.af-root-home .af-manifesto .af-editorial-copy {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--af-color-muted);
  font-size: var(--af-copy-editorial, clamp(19px, 1.18vw, 24px));
  line-height: var(--af-copy-editorial-line, 1.46);
}

.af-root-home .af-manifesto .af-editorial-copy::first-letter {
  float: none;
  padding: 0 .1em 0 0;
  color: var(--af-color-muted);
  font-family: var(--af-font-display);
  font-size: clamp(62px, 4.9vw, 88px);
  line-height: .78;
  vertical-align: -0.07em;
}

.af-root-home .af-cinema-head,
.af-root-home .af-featured-head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 600px);
  gap: clamp(64px, 7vw, 132px);
  align-items: end;
  margin-bottom: 68px;
}

.af-root-home .af-cinema-media {
  aspect-ratio: 16 / 9;
}

.af-root-home .af-vimeo-embed {
  background: var(--af-color-ink);
}

.af-root-home .af-vimeo-poster,
.af-root-home .af-vimeo-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.af-root-home .af-vimeo-poster {
  z-index: 1;
  object-fit: cover;
  object-position: center;
  transition: opacity .7s var(--af-ease), visibility .7s var(--af-ease);
}

.af-root-home .af-vimeo-embed iframe {
  z-index: 2;
  border: 0;
}

.af-root-js .af-root-home .af-vimeo-embed iframe {
  opacity: 0;
  transition: opacity .7s var(--af-ease);
}

.af-root-js .af-root-home .af-vimeo-embed.is-loaded iframe {
  opacity: 1;
}

.af-root-js .af-root-home .af-vimeo-embed.is-loaded .af-vimeo-poster {
  opacity: 0;
  visibility: hidden;
}

.af-root-home .af-vimeo-embed:hover iframe,
.af-root-home .af-vimeo-embed:focus-within iframe {
  transform: none;
}

.af-root-home .af-cinema .af-section-title,
.af-root-home .af-featured .af-section-title {
  font-size: clamp(72px, 6.3vw, 124px);
}

.af-root-home .af-cinema .af-container {
  width: min(var(--af-container), calc(100% - clamp(72px, 20vw, 408px)));
}

.af-root-home .af-cinema-head {
  position: relative;
  display: block;
  max-width: 100%;
  margin: 0 auto clamp(46px, 4.8vw, 72px);
  text-align: center;
}

.af-root-home .af-cinema .af-section-kicker,
.af-root-home .af-cinema-head .af-section-kicker {
  display: none !important;
}

.af-root-home .af-cinema .af-section-title {
  font-size: clamp(42px, 3.25vw, 64px);
  letter-spacing: -.018em;
  line-height: 1;
  text-align: center;
}

.af-root-home .af-cinema-head > div:last-child {
  max-width: 820px;
  margin: 26px auto 0;
  text-align: center;
}

.af-root-home .af-cinema-head .af-editorial-copy {
  color: var(--af-color-muted);
  font-size: var(--af-copy-editorial, clamp(19px, 1.18vw, 24px));
  line-height: var(--af-copy-editorial-line, 1.46);
}

.af-root-home .af-cinema-head .af-link {
  position: absolute;
  top: calc(50% + 46px);
  right: 0;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: clamp(17px, 1.05vw, 22px);
  letter-spacing: .02em;
  line-height: 1;
  text-transform: lowercase;
  transform: translateY(-50%);
}

.af-root-home .af-cinema-head .af-link::after {
  content: "\2192";
  margin-left: 18px;
  font-size: 1.35em;
  line-height: 0;
}

.af-root-home .af-stories .af-container {
  width: min(var(--af-container), calc(100% - clamp(72px, 20vw, 408px)));
}

.af-root-home .af-story-intro {
  position: relative;
  max-width: 100%;
  margin: 0 auto clamp(42px, 3.8vw, 64px);
  text-align: center;
}

.af-root-home .af-story-intro .af-section-kicker {
  display: none !important;
}

.af-root-home .af-stories .af-section-title {
  font-size: clamp(42px, 3.25vw, 64px);
  letter-spacing: -.018em;
  line-height: 1;
  text-align: center;
}

.af-root-home .af-story-intro .af-editorial-copy {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--af-color-muted);
  font-size: clamp(18px, 1.12vw, 22px);
  line-height: 1.45;
}

.af-root-home .af-story-intro .af-link {
  position: absolute;
  top: calc(50% + 38px);
  right: 0;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: clamp(17px, 1.05vw, 22px);
  letter-spacing: .02em;
  line-height: 1;
  text-transform: lowercase;
  transform: translateY(-50%);
}

.af-root-home .af-story-intro .af-link::after {
  content: "\2192";
  margin-left: 18px;
  font-size: 1.35em;
  line-height: 0;
}

.af-root-home .af-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 1.55vw, 24px);
}

.af-root-home .af-story-card {
  display: block;
}

.af-root-home .af-story-card figure {
  margin: 0;
}

.af-root-home .af-story-card .af-media {
  aspect-ratio: 430 / 570;
}

.af-root-home .af-story-card figcaption,
.af-root-home .af-feature-card p {
  margin: 22px 0 0;
  color: var(--af-color-ink);
  font-family: var(--af-font-display);
  font-size: clamp(22px, 1.55vw, 30px);
  line-height: 1;
  text-align: center;
}

.af-root-home .af-services {
  --af-services-content-w: min(var(--af-container), calc(100vw - clamp(72px, 11vw, 216px)));
  --af-services-edge: calc((100vw - var(--af-services-content-w)) / 2);
  --af-services-title-clip: clamp(62px, 5.3vw, 96px);
  --af-services-title-x: clamp(36px, 13vw, 220px);
  position: relative;
  min-height: 0;
  padding-block-start: clamp(52px, 5vw, 92px);
  color: var(--af-color-white);
  background: var(--af-color-white);
  overflow: hidden;
  isolation: isolate;
}

.af-root-home .af-services::before,
.af-root-home .af-services::after {
  content: none;
}

.af-root-home .af-services-title-wrap {
  position: relative;
  z-index: 0;
  width: 100vw;
  max-width: 100vw;
  height: var(--af-services-title-clip);
  margin-inline: 0;
  overflow: hidden;
  pointer-events: none;
}

.af-root-home .af-services-title-back,
.af-root-home .af-services-title-front {
  font-family: "Cormorant Garamond", var(--af-font-display);
  font-size: clamp(108px, 11.4vw, 218px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -.075em;
  line-height: .74;
  white-space: nowrap;
}

.af-root-home .af-services-title-back {
  display: block;
  color: rgba(17,17,17,.08);
  margin-left: max(72px, calc((100vw - 1512px) / 2 + 96px));
  transform: none;
}

.af-root-home .af-services-bg {
  position: relative;
  z-index: 1;
  width: 100vw;
  max-width: none;
  height: clamp(420px, 31vw, 584px);
  margin: calc(-1 * clamp(58px, 4.3vw, 74px)) 0 0 50%;
  overflow: hidden;
  transform: translateX(-50%);
  background: var(--af-color-ink) url('/wp-content/themes/asterfilms-site-structure-20260618-v8/assets/images/figjam/services-bg-bride-back.jpg') center 58% / cover no-repeat;
}

.af-root-home .af-services-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  opacity: .72;
  filter: grayscale(1) contrast(1.08);
}

.af-root-home .af-services-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.34), rgba(0,0,0,.12) 42%, rgba(0,0,0,.2));
}

.af-root-home .af-services-title-front {
  position: absolute;
  z-index: 2;
  top: calc(-1 * var(--af-services-title-clip));
  left: max(72px, calc((100vw - 1512px) / 2 + 96px));
  color: rgba(255,255,255,.74);
  opacity: .62;
  filter: blur(.65px);
  text-shadow: 0 0 18px rgba(255,255,255,.28);
  pointer-events: none;
}

.af-root-home .af-services-inner {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  width: var(--af-services-content-w);
  min-height: clamp(420px, 31vw, 584px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: clamp(56px, 7vw, 132px);
  align-items: center;
  pointer-events: none;
}

.af-root-home .af-services-inner > div:first-child {
  visibility: hidden;
}

.af-root-home .af-services-inner > div:last-child {
  pointer-events: auto;
}

.af-root-home .af-services h2,
.af-root-home .af-testimonials h2,
.af-root-home .af-cta h2 {
  color: inherit;
}

.af-root-home .af-services .af-section-title {
  font-size: 0;
}

.af-root-home .af-service-list {
  display: grid;
  gap: 0;
  margin: 0 0 clamp(30px, 3.5vw, 56px);
  padding: 0;
  list-style: none;
}

.af-root-home .af-service-list li {
  padding: clamp(18px, 1.6vw, 28px) 0 clamp(16px, 1.4vw, 24px);
  border-top: 1px solid rgba(255,255,255,.48);
}

.af-root-home .af-service-list li:last-child {
  border-bottom: 1px solid rgba(255,255,255,.48);
}

.af-root-home .af-service-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--af-color-white);
  font-family: var(--af-font-display);
  font-size: clamp(24px, 1.65vw, 34px);
  font-weight: 400;
  line-height: 1;
}

.af-root-home .af-service-list span {
  color: rgba(255,255,255,.88);
  font-size: clamp(15px, .95vw, 18px);
}

.af-root-home .af-services .af-button {
  float: right;
  min-height: 0;
  padding: 0;
  border: 0;
  color: var(--af-color-white);
  font-size: clamp(15px, .95vw, 18px);
  letter-spacing: .02em;
  text-transform: none;
}

.af-root-home .af-services .af-button::after {
  content: "\2192";
  margin-left: 18px;
  font-size: 1.3em;
  line-height: 0;
}

.af-root-home .af-press {
  padding-block: clamp(70px, 5vw, 104px);
  border-bottom: 0;
}

.af-root-home .af-press .af-logo-strip {
  gap: clamp(34px, 5.7vw, 104px);
}

.af-root-home .af-press .af-logo-strip img {
  max-height: 48px;
  max-width: 190px;
}

.af-root-home .af-believe-grid {
  display: grid;
  grid-template-columns: minmax(360px, 500px) minmax(0, 1fr);
  gap: clamp(68px, 8vw, 150px);
  align-items: start;
}

.af-root-home .af-believe-copy {
  padding-top: 48px;
}

.af-root-home .af-believe-copy .af-editorial-copy {
  margin-top: 34px;
}

.af-root-home .af-believe-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .42fr);
  grid-template-areas:
    "large large"
    "quote small";
  gap: 28px;
  align-items: end;
}

.af-root-home .af-believe-large {
  grid-area: large;
  aspect-ratio: 980 / 620;
}

.af-root-home .af-believe-large img {
  object-position: center bottom;
}

.af-root-home .af-believe-small {
  grid-area: small;
  aspect-ratio: 330 / 430;
  transform: translateY(-10%);
}

.af-root-home .af-believe-quote {
  grid-area: quote;
  max-width: 600px;
  margin: 0;
  color: var(--af-color-ink);
  font-family: var(--af-font-display);
  font-size: clamp(38px, 3.35vw, 68px);
  line-height: .96;
}

.af-root-home .af-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 2vw, 34px);
}

.af-root-home .af-feature-card .af-media {
  aspect-ratio: 745 / 430;
}

.af-root-home .af-feature-card .af-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.32));
  opacity: 0;
  transition: opacity .5s var(--af-ease);
}

.af-root-home .af-feature-card:hover .af-media::after,
.af-root-home .af-feature-card:focus-within .af-media::after {
  opacity: 1;
}

.af-root-home .af-feature-card .af-play {
  width: 82px;
  height: 82px;
}

.af-root-home .af-testimonials {
  position: relative;
  min-height: clamp(860px, 54vw, 980px);
  display: grid;
  place-items: center;
  color: var(--af-color-white);
  background: var(--af-color-ink);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.af-root-home .af-testimonials > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .82;
  filter: grayscale(.1) contrast(1.06);
}

.af-root-home .af-testimonials::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 42%, rgba(0,0,0,.2), rgba(0,0,0,.66));
}

.af-root-home .af-testimonials-inner {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 48px));
}

.af-root-home .af-testimonials .af-editorial-copy,
.af-root-home .af-testimonials blockquote {
  color: rgba(255,255,255,.88);
}

.af-root-home .af-testimonials blockquote {
  margin: 48px 0 0;
  font-family: var(--af-font-display);
  font-size: clamp(40px, 3.35vw, 66px);
  line-height: 1.02;
}

.af-root-home .af-testimonials cite,
.af-root-home .af-testimonial-name {
  display: block;
  margin-top: 25px;
  color: var(--af-color-white);
  font-family: var(--af-font-body);
  font-size: 13px;
  font-style: normal;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.af-root-home .af-cta {
  width: min(1060px, calc(100% - 48px));
  margin-inline: auto;
  padding-block: clamp(150px, 9vw, 210px);
  text-align: center;
}

.af-root-home .af-cta .af-section-title {
  font-size: clamp(70px, 6vw, 120px);
}

.af-root-home .af-cta p {
  margin: 42px auto 42px;
  max-width: 820px;
}

.af-root-home .af-cta p::first-letter {
  font-family: var(--af-font-display);
  font-size: 76px;
  line-height: .72;
}

.af-root-home .af-footer-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.af-root-home .af-footer-strip img {
  width: 100%;
  height: clamp(240px, 14vw, 310px);
  object-fit: cover;
}

.af-root-home .af-footer-main {
  padding-block: clamp(88px, 6vw, 118px) 48px;
}

.af-root-home .af-footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.45fr) repeat(4, minmax(160px, 1fr));
  gap: clamp(42px, 4.4vw, 82px);
}

.af-root-home .af-footer-brand {
  max-width: 410px;
}

.af-root-home .af-footer-logo {
  margin: 0 0 26px;
  color: var(--af-color-white);
  font-family: var(--af-font-display);
  font-size: 46px;
  letter-spacing: .12em;
  line-height: .92;
  text-transform: uppercase;
}

.af-root-home .af-footer p,
.af-root-home .af-footer a,
.af-root-home .af-footer li {
  color: rgba(255,255,255,.74);
}

.af-root-home .af-footer h3 {
  margin: 0 0 24px;
  color: var(--af-color-white);
  font-family: var(--af-font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.af-root-home .af-footer ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.af-root-home .af-footer a {
  transition: color .3s var(--af-ease), opacity .3s var(--af-ease);
}

.af-root-home .af-footer a:hover,
.af-root-home .af-footer a:focus-visible {
  color: var(--af-color-white);
}

.af-root-home .af-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 78px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

.af-root-home .af-footer-legal {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.af-root-home .af-socials {
  gap: 9px;
}

.af-root-home .af-socials a {
  width: auto;
  min-width: 0;
  height: 38px;
  padding-inline: 14px;
  font-size: 11px;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .af-root-home .af-nav {
    gap: 18px;
    font-size: 12px;
  }

  .af-root-home .af-story-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .af-root-home .af-services-inner,
  .af-root-home .af-believe-grid {
    grid-template-columns: 1fr;
  }

  .af-root-home .af-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .af-root-home {
    --af-hero-height: 760px;
    --af-section-y: 84px;
  }

  .af-root-home .af-header-inner {
    width: calc(100% - 36px);
    height: 96px;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .af-root-home .af-nav {
    display: none;
  }

  .af-root-home .af-brand-logo {
    justify-self: start;
  }

  .af-root-home .af-brand-logo img {
    width: 132px;
  }

  .af-root-home .af-mobile-menu {
    display: block;
    justify-self: end;
    position: relative;
  }

  .af-root-home .af-mobile-menu summary {
    list-style: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
  }

  .af-root-home .af-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .af-root-home .af-mobile-menu summary span,
  .af-root-home .af-mobile-menu summary span::before,
  .af-root-home .af-mobile-menu summary span::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: currentColor;
  }

  .af-root-home .af-mobile-menu summary span::before {
    transform: translateY(-8px);
  }

  .af-root-home .af-mobile-menu summary span::after {
    transform: translateY(7px);
  }

  .af-root-home .af-mobile-menu nav {
    position: absolute;
    top: 56px;
    right: 0;
    width: min(292px, calc(100vw - 36px));
    padding: 22px;
    display: grid;
    gap: 11px;
    background: rgba(17,17,17,.92);
    backdrop-filter: blur(16px);
    color: var(--af-color-white);
  }

  .af-root-home .af-root-hero-copy {
    padding: 118px 18px 68px;
  }

  .af-root-home .af-cinema .af-container {
    width: calc(100% - 36px);
  }

  .af-root-home .af-cinema-head {
    margin-bottom: 32px;
  }

  .af-root-home .af-cinema .af-section-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .af-root-home .af-cinema-head > div:last-child {
    max-width: 100%;
    margin-top: 18px;
  }

  .af-root-home .af-cinema-head .af-link {
    position: static;
    margin-top: 18px;
    transform: none;
    font-size: 15px;
  }

  .af-root-home .af-root-hero h1 {
    font-size: clamp(74px, 24vw, 104px);
  }

  .af-root-home .af-root-hero p {
    margin-top: 24px;
    font-size: 12px;
    letter-spacing: .12em;
  }

  .af-root-home .af-manifesto {
    width: calc(100% - 36px);
  }

  .af-root-home .af-manifesto .af-editorial-copy {
    text-align: left;
    font-size: var(--af-copy-editorial, clamp(19px, 1.18vw, 24px));
  }

  .af-root-home .af-manifesto .af-editorial-copy::first-letter {
    font-size: 78px;
    padding-top: 8px;
  }

  .af-root-home .af-cinema-head,
  .af-root-home .af-featured-head,
  .af-root-home .af-services-inner,
  .af-root-home .af-believe-grid,
  .af-root-home .af-believe-media,
  .af-root-home .af-featured-grid,
  .af-root-home .af-footer-grid {
    grid-template-columns: 1fr;
  }

  .af-root-home .af-stories .af-container {
    width: calc(100% - 36px);
  }

  .af-root-home .af-story-intro {
    margin-bottom: 32px;
  }

  .af-root-home .af-stories .af-section-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .af-root-home .af-story-intro .af-editorial-copy {
    max-width: 100%;
    margin-top: 18px;
    font-size: 18px;
  }

  .af-root-home .af-story-intro .af-link {
    position: static;
    margin-top: 18px;
    transform: none;
    font-size: 15px;
  }

  .af-root-home .af-story-grid {
    grid-template-columns: 1fr;
  }

  .af-root-home .af-story-card .af-media {
    aspect-ratio: 390 / 520;
  }

  .af-root-home .af-services {
    --af-services-content-w: calc(100vw - 36px);
    --af-services-edge: 18px;
    --af-services-title-clip: 62px;
    --af-services-title-x: 0px;
    padding-block-start: 86px;
  }

  .af-root-home .af-services-title-wrap,
  .af-root-home .af-services-inner {
    width: var(--af-services-content-w);
  }

  .af-root-home .af-services-bg {
    width: 100vw;
  }

  .af-root-home .af-services-title-wrap {
    height: var(--af-services-title-clip);
  }

  .af-root-home .af-services-title-back,
  .af-root-home .af-services-title-front {
    font-size: clamp(78px, 22vw, 118px);
  }

  .af-root-home .af-services-title-back {
    transform: translateX(var(--af-services-title-x));
  }

  .af-root-home .af-services-bg {
    height: auto;
    min-height: 680px;
  }

  .af-root-home .af-services-title-front {
    top: calc(-1 * var(--af-services-title-clip));
    left: var(--af-services-title-x);
  }

  .af-root-home .af-services-inner {
    position: absolute;
    inset: 62px 0 auto;
    min-height: 0;
    display: block;
    padding: 118px 22px 34px;
  }

  .af-root-home .af-services-inner > div:first-child {
    display: none;
  }

  .af-root-home .af-service-list strong {
    font-size: 27px;
  }

  .af-root-home .af-service-list span {
    font-size: 16px;
  }

  .af-root-home .af-services .af-button {
    float: none;
  }

  .af-root-home .af-believe-media {
    grid-template-areas:
      "large"
      "small"
      "quote";
  }

  .af-root-home .af-believe-small {
    transform: none;
  }

  .af-root-home .af-believe-quote {
    font-size: 40px;
  }

  .af-root-home .af-feature-card .af-media {
    aspect-ratio: 390 / 248;
  }

  .af-root-home .af-testimonials {
    min-height: 780px;
  }

  .af-root-home .af-testimonials blockquote {
    font-size: 34px;
  }

  .af-root-home .af-footer-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .af-root-home .af-footer-strip img {
    height: 178px;
  }

  .af-root-home .af-socials a {
    height: 36px;
    padding-inline: 12px;
  }

  .af-root-home .af-footer-bottom {
    display: grid;
  }
}

/* ASTER lower reference pass 2026-06-21 */
.af-root-home .af-believe {
  padding-block: clamp(92px, 7.4vw, 142px) clamp(12px, 1.6vw, 28px);
}

.af-root-home .af-believe-reference {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 760px);
  gap: clamp(56px, 7vw, 120px);
  align-items: start;
}

.af-root-home .af-believe-copy {
  padding-top: 0;
}

.af-root-home .af-believe-label {
  margin: 0 0 18px;
  color: var(--af-color-muted);
  font-size: 14px;
}

.af-root-home .af-believe-copy .af-section-title {
  display: none;
}

.af-root-home .af-believe-copy p:last-child {
  max-width: 330px;
  margin: 0;
  color: var(--af-color-ink);
  font-size: clamp(14px, .86vw, 16px);
  line-height: 1.42;
}

.af-root-home .af-believe-stage {
  position: relative;
  min-height: clamp(500px, 36vw, 650px);
  padding-top: 0;
}

.af-root-home .af-believe-stage::before {
  content: "What we believe";
  position: absolute;
  top: -48px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  color: var(--af-color-ink);
  font-family: var(--af-font-display);
  font-size: clamp(24px, 1.8vw, 36px);
  line-height: 1;
  white-space: nowrap;
}

.af-root-home .af-believe-stage .af-believe-large {
  position: absolute;
  top: 0;
  right: 0;
  width: min(690px, 78%);
  aspect-ratio: 690 / 430;
}

.af-root-home .af-believe-stage .af-believe-small {
  position: absolute;
  top: clamp(90px, 8vw, 140px);
  left: 0;
  z-index: 2;
  width: min(220px, 32%);
  aspect-ratio: 220 / 270;
  transform: none;
}

.af-root-home .af-believe-note {
  position: absolute;
  left: clamp(110px, 14vw, 250px);
  bottom: clamp(24px, 4vw, 68px);
  z-index: 3;
  width: min(410px, 54%);
  text-align: center;
}

.af-root-home .af-believe-note blockquote {
  margin: 0 0 18px;
  color: var(--af-color-muted);
  font-family: var(--af-font-body);
  font-size: clamp(13px, .82vw, 15px);
  line-height: 1.28;
}

.af-root-home .af-believe-note p {
  margin: 0;
  color: var(--af-color-ink);
  font-size: clamp(13px, .82vw, 15px);
}

.af-root-home .af-featured-reference {
  width: min(1160px, calc(100% - 48px));
}

.af-root-home .af-featured-head {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 0 auto 26px;
  text-align: center;
}

.af-root-home .af-featured-head .af-section-title {
  max-width: 760px;
  font-size: clamp(24px, 2.1vw, 40px);
  line-height: 1.05;
}

.af-root-home .af-featured-head .af-editorial-copy {
  margin: 0;
  max-width: none;
  font-size: clamp(12px, .82vw, 15px);
  line-height: 1.2;
}

.af-root-home .af-featured-head .af-link {
  position: absolute;
  top: 30px;
  right: 0;
  transform: none;
  font-size: 14px;
  text-transform: lowercase;
}

.af-root-home .af-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.af-root-home .af-feature-card .af-media {
  aspect-ratio: 540 / 280;
}

.af-root-home .af-feature-card p {
  display: none;
}

.af-root-home .af-feature-card .af-play {
  width: 54px;
  height: 54px;
}

.af-root-home .af-featured {
  padding-top: clamp(18px, 2vw, 34px);
  padding-bottom: clamp(34px, 3vw, 58px);
}

.af-root-home .af-testimonials {
  width: 100vw;
  max-width: none;
  min-height: clamp(620px, 50vw, 880px);
  margin-top: clamp(72px, 5.5vw, 118px);
  margin-left: 50%;
  transform: translateX(-50%);
  place-items: stretch;
  text-align: left;
}

.af-root-home .af-testimonials > img {
  opacity: .74;
  filter: grayscale(1) contrast(1.08);
  object-position: center;
}

.af-root-home .af-testimonials::after {
  background: linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.52) 46%, rgba(0,0,0,.08));
}

.af-root-home .af-testimonials-inner {
  position: relative;
  z-index: 2;
  width: min(1150px, calc(100% - 96px));
  margin: 0 auto;
  padding-block: clamp(56px, 5vw, 92px);
  display: grid;
  grid-template-columns: minmax(330px, 520px) 1fr;
  grid-template-rows: auto 1fr auto;
  column-gap: clamp(60px, 8vw, 150px);
}

.af-root-home .af-testimonials-heading {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 420px;
  margin-bottom: clamp(34px, 4vw, 64px);
  text-align: center;
}

.af-root-home .af-testimonials-heading .af-section-title {
  font-size: clamp(24px, 1.85vw, 36px);
}

.af-root-home .af-testimonials-heading .af-editorial-copy {
  margin-top: 12px;
  font-size: clamp(12px, .78vw, 14px);
  line-height: 1.22;
}

.af-root-home .af-testimonials-slider {
  grid-column: 1;
  align-self: center;
}

.af-root-home .af-testimonial-slide {
  opacity: 1;
  transition: opacity 1200ms cubic-bezier(.22,.61,.36,1), transform 1200ms cubic-bezier(.22,.61,.36,1);
}

.af-root-home .af-testimonial-count {
  margin: 0 0 18px;
  color: rgba(255,255,255,.86);
  font-size: 13px;
}

.af-root-home .af-testimonials blockquote {
  margin: 0 0 18px;
  max-width: 500px;
  color: var(--af-color-white);
  font-size: clamp(26px, 2vw, 38px);
  line-height: 1.04;
}

.af-root-home .af-testimonial-body {
  max-width: 500px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.82);
  font-size: clamp(13px, .82vw, 15px);
  line-height: 1.35;
}

.af-root-home .af-testimonial-controls {
  position: absolute;
  top: clamp(140px, 12vw, 210px);
  left: 44%;
  display: flex;
  gap: 22px;
}

.af-root-home .af-testimonial-controls button {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.86);
  cursor: pointer;
  font: inherit;
}

.af-root-home .af-testimonial-more {
  position: absolute;
  right: 0;
  bottom: clamp(72px, 7vw, 120px);
  color: rgba(255,255,255,.9);
  font-size: 14px;
}

.af-root-home .af-cta {
  width: min(760px, calc(100% - 48px));
  padding-block: clamp(82px, 7vw, 134px);
}

.af-root-home .af-cta .af-section-title {
  font-size: clamp(18px, 1.35vw, 26px);
}

.af-root-home .af-cta p {
  margin: 22px auto 22px;
  max-width: 600px;
  font-size: clamp(12px, .82vw, 15px);
  line-height: 1.28;
}

.af-root-home .af-cta p::first-letter {
  float: left;
  padding: 0 8px 0 0;
  margin-top: -2px;
  font-size: 54px;
  line-height: .56;
}

.af-root-home .af-cta-link {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  font-size: 13px;
  text-transform: none;
}

.af-root-home .af-cta-link::after {
  content: "\2192";
}

.af-root-home .af-footer {
  color: var(--af-color-ink);
  background: var(--af-color-white);
}

.af-root-home .af-footer-main {
  padding-block: clamp(32px, 3.4vw, 58px) 0;
}

.af-root-home .af-footer-grid {
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: clamp(34px, 4vw, 76px);
}

.af-root-home .af-footer-logo {
  color: var(--af-color-ink);
  font-size: 16px;
  letter-spacing: .08em;
  line-height: 1;
}

.af-root-home .af-footer p,
.af-root-home .af-footer a,
.af-root-home .af-footer li {
  color: rgba(17,17,17,.7);
  font-size: 13px;
  line-height: 1.38;
}

.af-root-home .af-footer h3 {
  color: var(--af-color-ink);
  font-size: 13px;
  letter-spacing: .08em;
}

.af-root-home .af-socials {
  display: flex;
  align-items: center;
  gap: 15px;
}

.af-root-home .af-socials a {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  min-width: 0;
  padding: 0;
  border: 0;
  color: rgba(17,17,17,.66);
}

.af-root-home .af-socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: .72;
  transition: opacity .3s var(--af-ease), transform .3s var(--af-ease);
}

.af-root-home .af-socials a:hover img,
.af-root-home .af-socials a:focus-visible img {
  opacity: 1;
  transform: translateY(-1px);
}

.af-root-home .af-footer-signature {
  margin: clamp(10px, 1vw, 18px) auto 8px;
  width: clamp(154px, 12vw, 220px);
  height: clamp(58px, 5vw, 86px);
  overflow: hidden;
  color: rgba(17,17,17,.42);
  line-height: 1;
  text-align: center;
}

.af-root-home .af-footer-signature img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .66;
}

.af-root-home .af-socials--missing {
  display: none;
}

.af-root-home .af-footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(17,17,17,.14);
  color: rgba(17,17,17,.62);
  font-size: 12px;
}

.af-root-home .af-footer-bottom a:last-child {
  justify-self: end;
}

@media (max-width: 900px) {
  .af-root-home .af-believe-reference,
  .af-root-home .af-testimonials-inner,
  .af-root-home .af-footer-grid {
    grid-template-columns: 1fr;
  }

  .af-root-home .af-believe-stage {
    min-height: 0;
    display: grid;
    gap: 18px;
  }

  .af-root-home .af-believe-stage::before,
  .af-root-home .af-believe-stage .af-believe-large,
  .af-root-home .af-believe-stage .af-believe-small,
  .af-root-home .af-believe-note,
  .af-root-home .af-testimonial-controls,
  .af-root-home .af-testimonial-more {
    position: static;
    transform: none;
    width: auto;
  }

  .af-root-home .af-believe-stage .af-believe-small {
    max-width: 240px;
  }

  .af-root-home .af-featured-head .af-link {
    position: static;
  }

  .af-root-home .af-featured-grid {
    grid-template-columns: 1fr;
  }

  .af-root-home .af-featured {
    padding-bottom: 42px;
  }

  .af-root-home .af-testimonials {
    margin-top: 70px;
  }

  .af-root-home .af-testimonials-inner {
    width: min(560px, calc(100% - 42px));
  }

  .af-root-home .af-footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  .af-root-home .af-footer-bottom a:last-child {
    justify-self: center;
  }
}

/* ASTER weddings rework 2026-06-21 */
.af-root-home.af-weddings-rework {
  background: #f7f2ea;
}

.af-root-home.af-weddings-rework .af-site-header {
  position: relative;
  color: var(--af-color-ink);
  background: var(--af-color-white);
}

.af-root-home.af-weddings-rework .af-header-inner {
  width: var(--af-root-container);
  height: 128px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
}

.af-root-home.af-weddings-rework .af-nav {
  gap: clamp(26px, 2.6vw, 52px);
  font-size: clamp(12px, .78vw, 14px);
  letter-spacing: .13em;
}

.af-root-home.af-weddings-rework .af-brand-logo img {
  width: clamp(148px, 10vw, 182px);
  filter: none;
  opacity: .9;
}

.af-weddings-page{--af-weddings-gallery-width:min(1508px,calc(100vw - 328px));width:100%;margin:0 auto;background:var(--af-color-white);color:#161412;font-family:var(--af-font-body)}

.af-weddings-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.af-weddings-ref-hero{position:relative;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));width:100%;height:clamp(680px,68.7vw,1040px);margin:0;overflow:hidden}

.af-weddings-hero-panel{margin:0;height:100%;overflow:hidden}

.af-weddings-ref-hero h1{position:absolute;inset:0;display:grid;place-items:center;margin:0;color:rgba(255,255,255,.82);font-family:var(--af-font-display);font-size:clamp(96px,7.4vw,144px);font-weight:400;letter-spacing:.02em;line-height:1;text-align:center;text-transform:uppercase;text-shadow:0 1px 18px rgba(22,20,18,.2);pointer-events:none}

.af-weddings-intro{max-width:520px;margin:clamp(86px,7vw,134px) auto 42px;padding:0 18px;text-align:center}

.af-weddings-intro h2{margin:0;color:#2b2723;font-family:var(--af-font-display);font-size:var(--af-section-title-standard);font-weight:400;letter-spacing:0;line-height:1.1}

.af-weddings-intro p{max-width:520px;margin:18px auto 0;color:#71695f;font-size:var(--af-copy-editorial);line-height:var(--af-copy-editorial-line)}

.af-weddings-grid,.af-weddings-session-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(18px,1.28vw,28px);width:var(--af-weddings-gallery-width);margin:0 auto}

.af-weddings-card,
.af-weddings-session-card {
  min-width: 0;
}

.af-weddings-card img {
  aspect-ratio: 488 / 651;
}

.af-weddings-card p{margin:12px 0 0;color:#70675d;font-size:clamp(15px,1.05vw,18px);line-height:1.32;text-align:center}

.af-weddings-intro--engagement{margin-top:clamp(112px,7.5vw,150px);margin-bottom:40px}

.af-weddings-intro--engagement p,
.af-weddings-intro--booking p {
  max-width: 365px;
}

.af-weddings-intro--booking{margin-top:clamp(116px,7.8vw,156px);margin-bottom:42px}

.af-weddings-session-cards{gap:clamp(18px,1.28vw,28px);padding-bottom:clamp(96px,8vw,150px)}

.af-weddings-session-card {
  position: relative;
  overflow: hidden;
}

.af-weddings-session-card img {
  aspect-ratio: 488 / 760;
}

.af-weddings-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 26px rgba(22,20,18,.14);
  transform: translate(-50%, -50%);
}

.af-weddings-play::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 11px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid rgba(90,83,76,.9);
}

.af-root-home.af-weddings-rework .af-cta,.af-root-home.af-weddings-rework .af-footer{width:100%;max-width:none;margin-inline:auto;background:var(--af-color-white)}

.af-root-home.af-weddings-rework .af-cta {
  padding-block: clamp(82px, 7vw, 120px);
}

@media (max-width: 781px) {
  .af-root-home.af-weddings-rework .af-header-inner {
    width: calc(100vw - 18px);
    height: auto;
    min-height: 42px;
    padding-block: 10px;
  }

  .af-root-home.af-weddings-rework .af-mobile-menu nav {
    color: var(--af-color-white);
  }

  .af-weddings-page {
    --af-weddings-gallery-width: min(100% - 34px, 560px);
  }

  .af-weddings-ref-hero {
    min-height: clamp(214px, 54vw, 300px);
  }

  .af-weddings-ref-hero h1 {
    font-size: clamp(30px, 8vw, 39px);
  }

  .af-weddings-intro {
    max-width: 330px;
    margin-top: 54px;
    margin-bottom: 28px;
  }

  .af-weddings-grid,
  .af-weddings-session-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .af-weddings-card p {
    margin-top: 7px;
    font-size: 8px;
  }

  .af-weddings-intro--engagement,
  .af-weddings-intro--booking {
    margin-top: 62px;
  }

  .af-weddings-session-cards {
    padding-bottom: 56px;
  }

  .af-weddings-play {
    width: 30px;
    height: 30px;
  }

  .af-weddings-play::after {
    left: 12px;
    top: 9px;
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 9px;
  }

  .af-root-home.af-weddings-rework .af-cta,
  .af-root-home.af-weddings-rework .af-footer {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .af-weddings-grid,
  .af-weddings-session-cards {
    gap: 8px;
    width: calc(100% - 24px);
  }

  .af-weddings-intro p {
    font-size: 10px;
  }
}

/* AF_WEDDINGS_SYSTEM_FIX_005: cross-page system guard for Weddings */
.af-root-home.af-weddings-rework .af-site-header{position:absolute!important;inset:0 0 auto 0!important;z-index:30!important;color:var(--af-color-ink)!important;background:transparent!important;pointer-events:none!important}
.af-root-home.af-weddings-rework .af-site-header .af-header-inner{background:transparent!important}
.af-root-home.af-weddings-rework .af-site-header a,.af-root-home.af-weddings-rework .af-site-header button,.af-root-home.af-weddings-rework .af-site-header .af-brand-logo{pointer-events:auto!important}
.af-root-home.af-weddings-rework .af-brand-logo img{filter:none!important;opacity:.78!important}
.af-root-home.af-weddings-rework .af-weddings-ref-hero{height:100svh!important;min-height:100svh!important;margin-top:0!important}
@supports(height:100dvh){.af-root-home.af-weddings-rework .af-weddings-ref-hero{height:100dvh!important;min-height:100dvh!important}}
.af-root-home.af-weddings-rework .af-weddings-ref-hero:after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;background:linear-gradient(180deg,rgba(255,255,255,.2) 0%,rgba(255,255,255,0) 22%,rgba(10,10,10,.12) 100%)}
.af-root-home.af-weddings-rework .af-weddings-ref-hero h1{z-index:2}
.af-root-home.af-weddings-rework .af-weddings-grid{align-items:start!important;row-gap:clamp(48px,4.2vw,80px)!important}
.af-root-home.af-weddings-rework .af-weddings-card{display:flex!important;min-height:0!important;flex-direction:column!important;gap:14px!important;overflow:visible!important}
.af-root-home.af-weddings-rework .af-weddings-card img{width:100%!important;height:auto!important;aspect-ratio:488/651!important;object-fit:cover!important;flex:0 0 auto!important}
.af-root-home.af-weddings-rework .af-weddings-card p{position:static!important;display:block!important;margin:0!important;min-height:1.4em!important;overflow:visible!important;text-align:center!important}
.af-root-home.af-weddings-rework .af-cta .af-editorial-copy::first-letter{float:none!important;display:inline-block!important;padding:0 .08em 0 0!important;margin:0!important;color:inherit!important;font-family:var(--af-font-display)!important;font-size:clamp(36px,3vw,52px)!important;line-height:.72!important;vertical-align:-.08em!important}

/* AF_WEDDINGS_HEADER_COLOR_FIX_006: Home-standard white overlay nav */
.af-root-home.af-weddings-rework .af-site-header{color:var(--af-color-white)!important;text-shadow:0 1px 22px rgba(0,0,0,.18)!important}
.af-root-home.af-weddings-rework .af-site-header .af-nav a{color:rgba(255,255,255,.94)!important}
.af-root-home.af-weddings-rework .af-brand-logo img{filter:brightness(0) invert(1) drop-shadow(0 1px 18px rgba(0,0,0,.18))!important;opacity:.88!important}
.af-root-home.af-weddings-rework .af-weddings-ref-hero:after{background:linear-gradient(180deg,rgba(0,0,0,.22) 0%,rgba(0,0,0,.06) 20%,rgba(10,10,10,.14) 100%)!important}
@media(max-width:781px){.af-root-home.af-weddings-rework .af-site-header{color:var(--af-color-white)!important}.af-root-home.af-weddings-rework .af-mobile-toggle span{background:rgba(255,255,255,.92)!important}}


/* === AF_SHARED_SCALE_FIX_20260623_001 START === */
/* System fix: CTA/closing text uses the same editorial copy scale as approved story/body copy. */
.af-root-home .af-cta .af-editorial-copy,
.af-root-home .af-process-closing .af-editorial-copy,
.af-root-home .af-services-closing .af-editorial-copy,
.af-root-home .af-cinema-closing .af-editorial-copy,
.af-root-home .af-about-closing .af-editorial-copy,
.af-root-home .af-faq-closing .af-editorial-copy {
  font-size: var(--af-copy-editorial, clamp(19px, 1.18vw, 24px)) !important;
  line-height: var(--af-copy-editorial-line, 1.46) !important;
}
.af-root-home .af-cta .af-editorial-copy {
  max-width: 790px !important;
}
.af-root-home .af-cta .af-editorial-copy::first-letter,
.af-root-home .af-process-closing .af-editorial-copy::first-letter,
.af-root-home .af-services-closing .af-editorial-copy::first-letter,
.af-root-home .af-cinema-closing .af-editorial-copy::first-letter,
.af-root-home .af-about-closing .af-editorial-copy::first-letter,
.af-root-home .af-faq-closing .af-editorial-copy::first-letter {
  float: none !important;
}
.af-root-home .af-dropcap {
  display: inline-block !important;
  padding: 0 .12em 0 0 !important;
  font-family: var(--af-font-display) !important;
  font-size: clamp(50px, 3.8vw, 74px) !important;
  line-height: .72 !important;
  vertical-align: -0.06em !important;
}
@media (max-width: 760px) {
  .af-root-home .af-dropcap {
    font-size: clamp(44px, 13vw, 62px) !important;
    vertical-align: -0.05em !important;
  }
}
/* === AF_SHARED_SCALE_FIX_20260623_001 END === */

/* === AF_HOME_CLIENT_REVISIONS_20260628_001 START === */
.af-root-home .af-root-hero p.af-root-hero-location {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255,255,255,.86);
  font-size: clamp(14px, .95vw, 17px);
  letter-spacing: .045em;
  line-height: 1.42;
  text-transform: none;
}

.af-root-home .af-services {
  padding-block-start: 0 !important;
}

.af-root-home .af-services-title-wrap {
  position: absolute !important;
  inset: clamp(22px, 3.2vw, 56px) 0 auto !important;
  z-index: 4 !important;
  height: clamp(84px, 9vw, 150px) !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.af-root-home .af-services-title-back {
  margin-left: max(28px, calc((100vw - 1512px) / 2 + 96px)) !important;
  color: rgba(255,255,255,.62) !important;
  font-size: clamp(92px, 10.8vw, 206px) !important;
  line-height: .8 !important;
  text-shadow: 0 8px 34px rgba(0,0,0,.12);
}

.af-root-home .af-services-title-front {
  display: none !important;
}

.af-root-home .af-services-bg {
  height: clamp(540px, 38vw, 700px) !important;
  margin: 0 0 0 50% !important;
  background-image: url('https://assets.cdn.filesafe.space/TPpZ8vBrxKatfX101xy8/media/69ac6da136702fd218482080.png') !important;
  background-position: center 54% !important;
}

.af-root-home .af-services-bg img {
  object-position: center 54% !important;
  opacity: .78 !important;
  filter: grayscale(1) contrast(1.04) brightness(.96) !important;
}

.af-root-home .af-services-bg::after {
  background: linear-gradient(90deg, rgba(0,0,0,.36), rgba(0,0,0,.12) 44%, rgba(0,0,0,.24)) !important;
}

.af-root-home .af-services-inner {
  min-height: clamp(540px, 38vw, 700px) !important;
  align-items: center !important;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 560px) !important;
}

.af-root-home .af-service-list {
  margin-bottom: clamp(24px, 2.4vw, 42px) !important;
}

.af-root-home .af-service-list li {
  padding: clamp(14px, 1.18vw, 22px) 0 clamp(13px, 1.08vw, 20px) !important;
}

.af-root-home .af-service-list strong {
  font-size: clamp(23px, 1.55vw, 31px) !important;
}

.af-root-home .af-service-list span {
  font-size: clamp(14px, .9vw, 17px) !important;
  line-height: 1.35;
}

.af-root-home .af-feature-video {
  background: #111;
  isolation: isolate;
}

.af-root-home .af-feature-video-trigger {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  color: inherit;
  text-decoration: none;
}

.af-root-home .af-feature-video.is-playing .af-feature-video-trigger {
  display: none;
}

.af-root-home .af-feature-video img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
}

.af-root-home .af-feature-video iframe {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #111;
}

.af-root-home .af-feature-card .af-feature-video::after {
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 760px) {
  .af-root-home .af-root-hero p.af-root-hero-location {
    max-width: 320px;
    margin-top: 14px;
    font-size: 13px;
    letter-spacing: .03em;
  }

  .af-root-home .af-services-title-wrap {
    inset: 22px 0 auto !important;
    height: 78px !important;
  }

  .af-root-home .af-services-title-back {
    margin-left: 18px !important;
    font-size: clamp(74px, 21vw, 112px) !important;
  }

  .af-root-home .af-services-bg {
    min-height: 790px !important;
    height: auto !important;
  }

  .af-root-home .af-services-inner {
    inset: 0 0 auto !important;
    min-height: 0 !important;
    padding: clamp(132px, 28vw, 180px) 22px 44px !important;
  }

  .af-root-home .af-service-list li {
    padding: 17px 0 15px !important;
  }

  .af-root-home .af-service-list strong {
    font-size: 26px !important;
  }
}
/* === AF_HOME_CLIENT_REVISIONS_20260628_001 END === */

/* === AF_HOME_SPACING_SERVICES_VIMEO_20260628_002 START === */
.af-root-home .af-stories {
  padding-bottom: clamp(76px, 7.8vw, 146px) !important;
}

.af-root-home .af-services {
  padding-block-start: clamp(50px, 5vw, 92px) !important;
}

.af-root-home .af-services-title-wrap {
  position: relative !important;
  inset: auto !important;
  z-index: 0 !important;
  height: clamp(92px, 8.8vw, 154px) !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.af-root-home .af-services-title-back {
  color: rgba(17,17,17,.08) !important;
  font-size: clamp(104px, 11vw, 214px) !important;
  line-height: .74 !important;
  text-shadow: none !important;
}

.af-root-home .af-services-title-front {
  display: block !important;
  position: absolute !important;
  z-index: 2 !important;
  top: calc(-1 * clamp(92px, 8.8vw, 154px)) !important;
  left: max(28px, calc((100vw - 1512px) / 2 + 96px)) !important;
  color: rgba(255,255,255,.62) !important;
  font-size: clamp(104px, 11vw, 214px) !important;
  line-height: .74 !important;
  opacity: .66 !important;
  filter: blur(.45px) !important;
  text-shadow: 0 8px 30px rgba(0,0,0,.12) !important;
}

.af-root-home .af-services-bg {
  margin: calc(-1 * clamp(46px, 4vw, 74px)) 0 0 50% !important;
}

.af-root-home .af-services-bg img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
}

.af-root-home .af-feature-video > iframe {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #111;
}

.af-root-home .af-feature-video > .af-feature-video-trigger,
.af-root-home .af-feature-video > img,
.af-root-home .af-feature-video > .af-play {
  display: none !important;
}

@media (max-width: 760px) {
  .af-root-home .af-stories {
    padding-bottom: 72px !important;
  }

  .af-root-home .af-services {
    padding-block-start: 42px !important;
  }

  .af-root-home .af-services-title-wrap {
    position: relative !important;
    inset: auto !important;
    height: clamp(72px, 19vw, 98px) !important;
  }

  .af-root-home .af-services-title-back {
    margin-left: 18px !important;
    color: rgba(17,17,17,.08) !important;
    font-size: clamp(76px, 22vw, 118px) !important;
    line-height: .74 !important;
  }

  .af-root-home .af-services-title-front {
    top: calc(-1 * clamp(72px, 19vw, 98px)) !important;
    left: 18px !important;
    font-size: clamp(76px, 22vw, 118px) !important;
    line-height: .74 !important;
  }

  .af-root-home .af-services-bg {
    margin-top: -36px !important;
  }
}
/* === AF_HOME_SPACING_SERVICES_VIMEO_20260628_002 END === */

/* === AF_HOME_FEATURED_VIMEO_RATIO_20260628_003 START === */
.af-root-home .af-feature-card .af-media.af-feature-video {
  aspect-ratio: 16 / 9 !important;
}

@media (max-width: 760px) {
  .af-root-home .af-feature-card .af-media.af-feature-video {
    aspect-ratio: 16 / 9 !important;
  }
}
/* === AF_HOME_FEATURED_VIMEO_RATIO_20260628_003 END === */
/* === AF_HOME_SERVICES_COLOR_PANEL_20260701_001 START === */
.af-root-home .af-services {
  padding-block-start: clamp(70px, 6.5vw, 116px) !important;
  background: var(--af-color-white) !important;
}

.af-root-home .af-services-title-wrap,
.af-root-home .af-services-title-back,
.af-root-home .af-services-title-front {
  display: none !important;
}

.af-root-home .af-services-bg {
  height: clamp(560px, 46vw, 760px) !important;
  margin: 0 0 0 50% !important;
  background: #14110f !important;
}

.af-root-home .af-services-bg img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  opacity: 1 !important;
  filter: none !important;
  object-position: center 54% !important;
}

.af-root-home .af-services-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(0,0,0,.04) 0%,
    rgba(0,0,0,.02) 38%,
    rgba(0,0,0,.32) 64%,
    rgba(0,0,0,.46) 100%);
}

.af-root-home .af-services-bg::after {
  background: linear-gradient(90deg,
    rgba(255,246,235,.04),
    rgba(0,0,0,0) 42%,
    rgba(0,0,0,.20)) !important;
}

.af-root-home .af-services-inner {
  min-height: clamp(560px, 46vw, 760px) !important;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 520px) !important;
  align-items: center !important;
}

.af-root-home .af-services-inner > div:last-child {
  position: relative;
  pointer-events: auto;
  padding: clamp(34px, 3.2vw, 54px) clamp(32px, 3vw, 52px) !important;
  color: #fffaf2;
  background: linear-gradient(135deg, rgba(11,10,9,.66), rgba(11,10,9,.48));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 100px rgba(0,0,0,.30);
  backdrop-filter: blur(12px) saturate(115%);
  -webkit-backdrop-filter: blur(12px) saturate(115%);
}

.af-root-home .af-services-inner > div:last-child::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.09);
  pointer-events: none;
}

.af-root-home .af-service-list {
  margin-bottom: clamp(26px, 3vw, 44px) !important;
}

.af-root-home .af-service-list li {
  border-top-color: rgba(255,255,255,.18) !important;
}

.af-root-home .af-service-list li:last-child {
  border-bottom: 1px solid rgba(255,255,255,.18) !important;
}

.af-root-home .af-service-list strong {
  color: #fffaf2 !important;
  text-shadow: 0 2px 20px rgba(0,0,0,.24);
}

.af-root-home .af-service-list span {
  color: rgba(255,250,242,.78) !important;
}

.af-root-home .af-services .af-button--light {
  color: #111 !important;
  background: rgba(255,250,242,.94) !important;
  border-color: rgba(255,250,242,.82) !important;
}

.af-root-home .af-services .af-button--light:hover,
.af-root-home .af-services .af-button--light:focus-visible {
  background: #fff !important;
  border-color: #fff !important;
}

@media (max-width: 920px) {
  .af-root-home .af-services-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 460px) !important;
    width: min(100% - 44px, 720px) !important;
    justify-content: end !important;
  }
}

@media (max-width: 760px) {
  .af-root-home .af-services {
    padding-block-start: 54px !important;
  }

  .af-root-home .af-services-bg {
    min-height: 760px !important;
    height: auto !important;
    margin-top: 0 !important;
  }

  .af-root-home .af-services-bg img {
    object-position: center top !important;
  }

  .af-root-home .af-services-bg::before {
    background: linear-gradient(180deg,
      rgba(0,0,0,.02) 0%,
      rgba(0,0,0,.04) 42%,
      rgba(0,0,0,.58) 100%) !important;
  }

  .af-root-home .af-services-bg::after {
    background: linear-gradient(180deg,
      rgba(255,246,235,.04),
      rgba(0,0,0,0) 42%,
      rgba(0,0,0,.20)) !important;
  }

  .af-root-home .af-services-inner {
    inset: 0 0 auto !important;
    width: 100% !important;
    min-height: 760px !important;
    grid-template-columns: 1fr !important;
    align-items: end !important;
    padding: 360px 20px 42px !important;
  }

  .af-root-home .af-services-inner > div:last-child {
    width: 100%;
    padding: 24px 22px 26px !important;
  }

  .af-root-home .af-service-list li {
    padding: 15px 0 14px !important;
  }

  .af-root-home .af-service-list strong {
    font-size: clamp(24px, 7vw, 30px) !important;
  }
}
/* === AF_HOME_SERVICES_COLOR_PANEL_20260701_001 END === */
/* === AF_HOME_SERVICES_PANEL_MICRO_POLISH_20260701_002 START === */
.af-root-home .af-services .af-service-list span {
  color: rgba(255,250,242,.86) !important;
  font-size: clamp(15px, 1.08vw, 18px) !important;
  line-height: 1.45 !important;
}

.af-root-home .af-services .af-button--light {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 0 9px !important;
  color: #fffaf2 !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255,250,242,.64) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  letter-spacing: .12em !important;
}

.af-root-home .af-services .af-button--light::after {
  content: "→";
  margin-left: 12px;
  transform: translateY(-1px);
}

.af-root-home .af-services .af-button--light:hover,
.af-root-home .af-services .af-button--light:focus-visible {
  color: #fff !important;
  background: transparent !important;
  border-bottom-color: #fff !important;
}
/* === AF_HOME_SERVICES_PANEL_MICRO_POLISH_20260701_002 END === */
/* === AF_HOME_SERVICES_MOBILE_HEIGHT_20260701_003 START === */
@media (max-width: 760px) {
  .af-root-home .af-services {
    padding-block-start: 26px !important;
  }

  .af-root-home .af-services-bg {
    min-height: 930px !important;
  }

  .af-root-home .af-services-inner {
    min-height: 930px !important;
    padding: 378px 20px 48px !important;
  }
}
/* === AF_HOME_SERVICES_MOBILE_HEIGHT_20260701_003 END === */

/* AF_FOOTER_UNIFICATION_20260703_002_ROOT_ASSET START
   Loaded after style.css on Home/root pages; keep root-home footers visually aligned with About/Cinematography footer. */
.af-root-home .af-footer { background: #fff; color: #111; }
.af-root-home .af-footer-strip { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); width: 100%; }
.af-root-home .af-footer-strip img { width: 100%; height: clamp(190px, 15vw, 286px); object-fit: cover; }
.af-root-home .af-footer-main.af-container { width: min(1344px, calc(100vw - 96px)); max-width: none; margin-inline: auto; padding: clamp(54px, 5.5vw, 86px) 0 34px; }
.af-root-home .af-footer-grid { display: grid; grid-template-columns: 1.35fr .95fr .85fr 1.15fr 1fr; gap: clamp(34px, 5vw, 88px); }
.af-root-home .af-footer h3,
.af-root-home .af-footer-logo { margin: 0 0 20px; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 400; color: #111; }
.af-root-home .af-footer p,
.af-root-home .af-footer li,
.af-root-home .af-footer a { color: #555; font-size: clamp(15px, .86vw, 17px); line-height: 1.55; }
.af-root-home .af-footer ul { margin: 0; padding: 0; list-style: none; }
.af-root-home .af-footer li { margin: 0 0 10px; }
.af-root-home .af-socials { display: flex; align-items: center; gap: 18px; margin-top: 24px; }
.af-root-home .af-socials img { width: 16px; height: 16px; opacity: .72; }
.af-root-home .af-footer-signature { display: flex; justify-content: center; margin: clamp(44px, 4vw, 68px) 0 24px; }
.af-root-home .af-footer-signature img { width: clamp(160px, 12vw, 232px); opacity: .6; }
.af-root-home .af-footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; border-top: 1px solid #e5e5e5; padding-top: 26px; }
.af-root-home .af-footer-bottom a:last-child { justify-self: end; }
.af-root-home .af-footer-bottom p { margin: 0; color: #999; font-size: 13px; }
.af-root-home .af-footer-grid a,
.af-root-home .af-footer-bottom a { text-decoration-line: underline; text-decoration-color: transparent; text-decoration-thickness: 1px; text-underline-offset: .24em; transition: color .22s ease, text-decoration-color .22s ease, opacity .22s ease; }
.af-root-home .af-footer-grid a:hover,
.af-root-home .af-footer-grid a:focus-visible,
.af-root-home .af-footer-bottom a:hover,
.af-root-home .af-footer-bottom a:focus-visible { color: #111; text-decoration-color: rgba(17,17,17,.46); }
.af-root-home .af-socials a { text-decoration: none; }
@media (max-width: 980px) {
  .af-root-home .af-footer-main.af-container { width: calc(100vw - 36px); }
  .af-root-home .af-footer-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .af-root-home .af-footer-strip img { height: 170px; }
  .af-root-home .af-footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .af-root-home .af-footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .af-root-home .af-footer-bottom a:last-child { justify-self: center; }
}
@media (max-width: 520px) {
  .af-root-home .af-footer-main.af-container { width: calc(100vw - 28px); }
  .af-root-home .af-footer-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
/* AF_FOOTER_UNIFICATION_20260703_002_ROOT_ASSET END */
/* AF_FOOTER_UNIFICATION_20260703_003_UL_GAP_FIX START
   Prevent older root-home footer grid gaps from stacking with canonical li margins. */
.af-root-home .af-footer ul { display: block; gap: 0; }
.af-root-home .af-footer li { margin: 0 0 10px; }
/* AF_FOOTER_UNIFICATION_20260703_003_UL_GAP_FIX END */

/* AF_GLOBAL_TEMPLATE_PARTS_MIGRATION_20260703_001_FOOTER_SIGNATURE_CENTER_FIX START
   Root/Home previously kept an old shrink-wrapped signature width, which made the footer logo sit on the left edge. Keep the signature row full-width and center the transparent logo in both root and global-part contexts. */
.af-root-home .af-footer-signature,
.af-page-suite .af-footer-signature {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  margin: clamp(24px, 2.6vw, 42px) 0 12px !important;
  overflow: visible !important;
}
.af-root-home .af-footer-signature img,
.af-page-suite .af-footer-signature img {
  display: block !important;
  flex: 0 0 auto !important;
  width: clamp(142px, 10vw, 196px) !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  opacity: .58 !important;
}
/* AF_GLOBAL_TEMPLATE_PARTS_MIGRATION_20260703_001_FOOTER_SIGNATURE_CENTER_FIX END */



/* === AF_HOME_SERVICES_PANEL_SOFTEN_20260708 START === */
@media (min-width: 921px) {
  .af-root-home .af-services-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 468px) !important;
  }
}

.af-root-home .af-services-inner > div:last-child {
  padding: clamp(24px, 2.15vw, 34px) clamp(24px, 2.15vw, 34px) !important;
  background: linear-gradient(135deg, rgba(11, 10, 9, 0.38), rgba(11, 10, 9, 0.20)) !important;
  border: 0 !important;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18) !important;
  backdrop-filter: blur(8px) saturate(108%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(108%) !important;
}

.af-root-home .af-services-inner > div:last-child::before {
  content: none !important;
  border: 0 !important;
}

.af-root-home .af-service-list {
  margin-bottom: clamp(18px, 2vw, 28px) !important;
}

.af-root-home .af-service-list li {
  padding: clamp(12px, 1vw, 18px) 0 clamp(11px, 0.95vw, 16px) !important;
  border: 0 !important;
}

.af-root-home .af-service-list li + li {
  border-top: 1px solid rgba(255, 250, 242, 0.16) !important;
}

.af-root-home .af-service-list li:first-child {
  border-top: 0 !important;
}

.af-root-home .af-service-list li:last-child {
  border-bottom: 0 !important;
}
/* === AF_HOME_SERVICES_PANEL_SOFTEN_20260708 END === */

/* AF_HOME_HERO_FIREFLY_IMAGE_20260708: Firefly château/couple image in the root hero. */
.af-root-home .af-root-hero-media img,
.af-root-home .af-root-hero-media video {
  object-position: 54% center;
}

@media (max-width: 767px) {
  .af-root-home .af-root-hero-media img,
  .af-root-home .af-root-hero-media video {
    object-position: 86% center;
  }
}
