@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400&display=swap");

:root {
  --paper: #fbfaf8;
  --white: #ffffff;
  --ink: #383635;
  --muted: #77716d;
  --line: #ded9d3;
  --blush: #ead8d8;
  --sage: #d8ded6;
  --moss: #777d6b;
  --charcoal: #2f3130;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: Raleway, Arial, sans-serif;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 104px;
  padding: 0 5vw;
  background: rgba(251, 250, 248, 0.94);
  border-bottom: 1px solid rgba(222, 217, 211, 0.62);
  backdrop-filter: blur(12px);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(118px, 8.6vw, 166px);
  line-height: 0;
}

.site-header .brand {
  width: clamp(118px, 8.6vw, 166px);
  height: auto;
  overflow: visible;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
  filter: brightness(0) saturate(100%) invert(31%) sepia(4%) saturate(220%) hue-rotate(345deg) brightness(93%) contrast(88%);
}

.site-header .brand-logo {
  width: 100%;
  max-width: 100%;
  transform: none;
}

.nav-link,
.dropdown-trigger,
.footer-nav a,
.mobile-menu a,
.mobile-menu button {
  font-family: var(--serif);
  font-size: 0.76rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-left > .nav-link,
.nav-right > .nav-link,
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  line-height: 1;
}

.dropdown-trigger {
  gap: 0.22em;
  border: 0;
  padding: 0;
  appearance: none;
  background: transparent;
  color: inherit;
  cursor: default;
}

.nav-plus {
  position: relative;
  top: -0.14em;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  display: grid;
  gap: 10px;
  min-width: 190px;
  padding: 22px 18px 18px;
  background: rgba(251, 250, 248, 0.98);
  border: 1px solid var(--line);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 34px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  flex: 0 0 1px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleY(0.82);
  transform-origin: center;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  background: var(--paper);
}

.mobile-menu.is-open {
  display: grid;
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--moss);
  background: transparent;
  font-family: var(--sans);
  font-size: 1.2rem;
  line-height: 1;
  color: var(--ink);
}

.mobile-menu-inner {
  display: grid;
  gap: 24px;
  text-align: center;
}

.mobile-subnav {
  display: grid;
  gap: 12px;
  margin-top: -10px;
}

.mobile-subnav a {
  font-size: 0.66rem;
  color: var(--muted);
}

.hero-collage {
  display: block;
  background: var(--white);
  overflow: hidden;
}

.hero-track {
  --hero-height: clamp(620px, 43vw, 890px);
  display: flex;
  width: max-content;
  height: var(--hero-height);
  overflow: visible;
  transform: translate3d(0, 0, 0);
  transition: transform 700ms ease;
  will-change: transform;
}

.hero-track.is-resetting {
  transition: none;
}

.hero-panel {
  flex: 0 0 auto;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: var(--white);
}

.hero-panel-portrait {
  width: clamp(413px, 28.7vw, 593px);
}

.hero-panel-landscape {
  width: clamp(930px, 64.5vw, 1335px);
}

.hero-panel img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-panel.is-active img {
  filter: saturate(1.02);
}

.hero-mobile {
  display: none;
  padding: 0 20px 56px;
}

.mobile-hero-frame {
  height: min(66vh, 560px);
  background: var(--white);
  overflow: hidden;
}

.hero-controls {
  display: flex;
  justify-content: space-between;
  padding: 30px 26px 0;
}

.hero-desktop-controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: clamp(72px, 4vw, 84px);
  padding: 28px 32px 0;
  background: var(--white);
}

.arrow-btn {
  position: relative;
  width: clamp(44px, 2.9vw, 53px);
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8d8c8a;
  cursor: pointer;
}

.arrow-btn::before,
.arrow-btn::after {
  content: "";
  position: absolute;
  display: block;
}

.arrow-btn::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

.arrow-btn::after {
  top: 50%;
  width: 13px;
  height: 13px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.arrow-prev::after {
  left: 1px;
  transform: translateY(-50%) rotate(-45deg);
}

.arrow-next::after {
  right: 1px;
  transform: translateY(-50%) rotate(135deg);
}

.section.home-intro {
  padding-top: clamp(48px, 4.1vw, 84px);
  padding-bottom: clamp(82px, 6.4vw, 124px);
  background: var(--white);
}

.home-intro .narrow {
  width: min(780px, 100%);
}

.home-intro .eyebrow {
  margin-bottom: 34px;
  color: #74726f;
  font-size: clamp(1.38rem, 1.28vw, 1.66rem);
  line-height: 1.15;
}

.home-intro h1 {
  color: #777574;
  font-size: clamp(3.95rem, 3.48vw, 4.9rem);
  font-weight: 300;
  letter-spacing: 0.045em;
  line-height: 1.12;
}

.home-intro .kicker {
  margin-top: 44px;
  margin-bottom: 0;
  color: #827f7d;
  font-size: 0.77rem;
  letter-spacing: 0.76em;
}

.home-intro .button {
  min-width: 250px;
  min-height: 70px;
  margin-top: 34px;
  padding: 20px 34px;
  border-color: #8f8c89;
  color: #777574;
  font-size: 0.78rem;
  letter-spacing: 0.5em;
}

.section {
  padding: clamp(68px, 9vw, 132px) 5vw;
}

.narrow {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
}

.container {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1rem, 2.4vw, 1.45rem);
  font-style: italic;
  line-height: 1.4;
}

.kicker {
  margin-bottom: 20px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.58em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.14;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 8vw, 7.5rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.lead {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.17rem);
  line-height: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 58px;
  margin-top: 38px;
  padding: 18px 28px;
  border: 1px solid #c6c0bb;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.button.solid {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.split-feature {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(42px, 8vw, 112px);
}

.split-feature.reversed {
  grid-template-columns: 0.96fr 1.04fr;
}

.feature-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--white);
}

.feature-image.wide {
  aspect-ratio: 16 / 10;
}

.flower-mark {
  width: 42px;
  height: 52px;
  margin: 38px auto;
  background: url("assets/logos/nk-icon-pink.svg") center / contain no-repeat;
  opacity: 0.55;
}

.image-pair,
.image-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.image-pair .image-frame {
  aspect-ratio: 4 / 5;
}

.featured-links-section {
  padding: clamp(40px, 2.25vw, 52px) 0 clamp(130px, 7vw, 150px);
  background: var(--white);
  border-bottom: 1px solid rgba(222, 217, 211, 0.52);
}

.featured-image-pair,
.featured-link-row {
  width: min(1552px, 76vw);
  margin: 0 auto;
}

.featured-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.featured-image {
  aspect-ratio: 4 / 4.9;
  overflow: hidden;
  background: var(--white);
}

.featured-image img {
  object-position: center;
}

.featured-image:first-child img {
  object-position: center 24%;
}

.featured-image-muted {
  background: #f4f3f2;
}

.featured-image-muted img {
  filter: none;
  opacity: 1;
  object-position: center 42%;
}

.featured-link-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 54px;
  text-align: center;
}

.featured-link-card h2 {
  color: #898684;
  font-size: clamp(1.55rem, 1.45vw, 1.9rem);
  font-weight: 300;
  letter-spacing: 0.055em;
  line-height: 1;
}

.featured-link-card .kicker {
  margin-top: 25px;
  margin-bottom: 0;
  color: #8b8784;
  font-size: 0.82rem;
  letter-spacing: 0.62em;
}

.featured-link-card .button {
  min-width: 198px;
  min-height: 70px;
  margin-top: 31px;
  padding: 19px 30px;
  border-color: #8f8c89;
  color: #8a8683;
  font-size: 0.74rem;
  letter-spacing: 0.5em;
}

.press-section {
  padding: clamp(96px, 7.8vw, 150px) 5vw clamp(112px, 8.2vw, 164px);
  background: var(--white);
  border-bottom: 1px solid rgba(222, 217, 211, 0.52);
}

.press-inner {
  width: min(1320px, 82vw);
  margin: 0 auto;
  text-align: center;
}

.press-heading {
  color: #83807d;
  font-size: clamp(2.2rem, 2.45vw, 3.35rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1;
  text-transform: none;
}

.press-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(36px, 3.6vw, 65px) clamp(47px, 4.7vw, 86px);
  width: 90%;
  margin-top: clamp(58px, 4.6vw, 78px);
  margin-right: auto;
  margin-left: auto;
  transform: scale(0.9);
  transform-origin: center top;
}

.press-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(58px, 4.9vw, 84px);
  color: #85827f;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.9;
  opacity: 1;
  transform-origin: center;
}

.press-logo-grid.is-reveal-ready .press-logo {
  opacity: 0;
}

.press-logo-grid.is-reveal-ready.is-visible .press-logo {
  opacity: 1;
  transition: opacity 1260ms ease;
}

.press-logo img {
  width: min(100%, var(--press-logo-width, 280px));
  height: auto;
  object-fit: contain;
}

.press-logo span {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 0.68em;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.press-logo-huffpost {
  --press-logo-width: 226px;
  font-size: clamp(2.1rem, 2.55vw, 3.6rem);
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.press-logo-script {
  --press-logo-width: 177px;
  font-size: clamp(4rem, 5.6vw, 7.8rem);
  font-style: italic;
  letter-spacing: 0.01em;
  text-transform: none;
}

.press-logo-brides {
  --press-logo-width: 276px;
  font-size: clamp(3.6rem, 5.2vw, 7.2rem);
  font-weight: 500;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.press-logo-glitter {
  --press-logo-width: 230px;
  font-size: clamp(2.7rem, 3.75vw, 5.4rem);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 0.78;
  text-transform: uppercase;
}

.press-logo-desiree {
  --press-logo-width: 352px;
  font-family: var(--sans);
  font-size: clamp(1.65rem, 2.25vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1.05;
  text-transform: uppercase;
}

.press-logo-asked {
  --press-logo-width: 300px;
  font-size: clamp(2.7rem, 3.8vw, 5.45rem);
  font-style: italic;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}

.press-logo-asked span {
  margin-top: 0;
  font-size: 0.36em;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.press-logo-bridal,
.press-logo-fortwayne {
  --press-logo-width: 262px;
  font-size: clamp(2.8rem, 3.55vw, 5.1rem);
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 0.86;
  text-transform: uppercase;
}

.press-logo-fortwayne {
  --press-logo-width: 246px;
}

.press-logo-academy {
  --press-logo-width: 304px;
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.42vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.press-logo-academy span {
  margin-top: 6px;
  font-size: 0.64em;
  font-style: italic;
  letter-spacing: 0.2em;
  text-transform: lowercase;
}

.press-logo-mark {
  width: 52px;
  height: 32px;
  margin: 0 auto 18px;
  border: 4px double currentColor;
  opacity: 0.72;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.link-tile {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  background: var(--charcoal);
  text-align: center;
  color: var(--white);
}

.link-tile img,
.portfolio-hero img {
  position: absolute;
  inset: 0;
  opacity: 0.66;
  transition: transform 900ms ease, opacity 900ms ease;
}

.link-tile:hover img,
.portfolio-hero:hover img {
  transform: scale(1.04);
  opacity: 0.76;
}

.link-tile-content,
.portfolio-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 100%;
  padding: 0 20px;
}

.tile-label,
.small-link {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
}

.cta-band {
  padding: clamp(72px, 9vw, 128px) 5vw;
  background: var(--sage);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(2.115rem, 4.5vw, 4.5rem);
}

.site-footer {
  padding: 56px 5vw;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}

.footer-logo {
  display: block;
  width: min(230px, 62vw);
  height: auto;
  margin: 0 auto 30px;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 34px;
  margin-bottom: 28px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-hero {
  padding: clamp(58px, 8vw, 118px) 5vw;
}

.page-hero.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(44px, 8vw, 112px);
}

.page-hero .portrait {
  aspect-ratio: 4 / 5;
  max-height: 640px;
}

.about-page,
.testimonials-page {
  background: var(--white);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(360px, 704px) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(70px, 8vw, 150px);
  width: min(1500px, 76vw);
  margin: 0 auto;
  padding: clamp(78px, 6.5vw, 128px) 0 clamp(104px, 8vw, 156px);
}

.about-portrait {
  aspect-ratio: 704 / 915;
  overflow: hidden;
  background: var(--white);
  transform: translateY(-44px);
}

.about-portrait img {
  object-position: center bottom;
}

.about-copy {
  width: min(610px, 100%);
  justify-self: center;
  text-align: center;
}

.about-copy h1,
.testimonial-hero-copy h1 {
  color: #777574;
  font-size: clamp(3.2rem, 3.25vw, 4.35rem);
  font-weight: 300;
  letter-spacing: 0.045em;
}

.about-copy .kicker,
.testimonial-hero-copy .kicker {
  margin-top: 24px;
  margin-bottom: 0;
  letter-spacing: 0.66em;
}

.about-copy .flower-mark {
  margin: clamp(34px, 3vw, 54px) auto clamp(34px, 3.2vw, 56px);
  opacity: 0.32;
}

.about-copy .lead,
.about-approach-copy .lead,
.testimonial-hero-copy .lead,
.testimonial-feature-copy .lead {
  color: #85817e;
  font-size: clamp(1rem, 1.02vw, 1.16rem);
  line-height: 2.08;
}

.about-approach {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(420px, 640px);
  align-items: end;
  gap: clamp(66px, 8.5vw, 148px);
  width: min(1500px, 76vw);
  margin: 0 auto;
  padding: 0 0 clamp(100px, 8vw, 160px);
}

.about-approach-copy {
  max-width: 720px;
  align-self: center;
  text-align: center;
}

.about-approach-copy h2 {
  color: #777574;
  font-size: clamp(3.25rem, 3.45vw, 4.65rem);
  font-weight: 300;
  letter-spacing: 0.045em;
}

.about-approach-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-approach-images .image-frame {
  aspect-ratio: 3 / 4.7;
  overflow: hidden;
  background: var(--paper);
}

.about-kind-words {
  padding: clamp(80px, 8vw, 132px) 5vw;
  background: var(--paper);
  text-align: center;
}

.testimonials-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(74px, 9vw, 160px);
  width: min(1440px, 76vw);
  margin: 0 auto;
  padding: clamp(78px, 6.5vw, 124px) 0 clamp(96px, 8vw, 150px);
}

.testimonial-hero-image {
  aspect-ratio: 5 / 6.3;
  overflow: hidden;
  background: var(--paper);
}

.testimonial-hero-copy {
  max-width: 650px;
  justify-self: center;
  text-align: center;
}

.testimonial-hero-copy .flower-mark {
  margin: 0 auto clamp(52px, 4vw, 78px);
  opacity: 0.3;
}

.testimonial-feature {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(66px, 8vw, 144px);
  width: min(1280px, 70vw);
  margin: 0 auto;
  padding: 0 0 clamp(92px, 8vw, 150px);
}

.testimonial-feature-copy {
  text-align: center;
}

.testimonial-feature-copy h2 {
  color: #777574;
  font-size: clamp(3.25rem, 4vw, 5.6rem);
  font-weight: 300;
  letter-spacing: 0.055em;
}

.testimonial-feature-image {
  aspect-ratio: 4 / 5.6;
  overflow: hidden;
  background: var(--paper);
}

.testimonial-editorial-list {
  display: grid;
  gap: clamp(78px, 8vw, 132px);
  width: min(1180px, 72vw);
  margin: 0 auto;
  padding: 0 0 clamp(100px, 9vw, 168px);
}

.testimonial-editorial {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(56px, 7vw, 118px);
}

.testimonial-editorial.reversed {
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.78fr);
}

.testimonial-editorial.reversed .testimonial-editorial-image {
  order: 2;
}

.testimonial-editorial.reversed .testimonial-editorial-copy {
  order: 1;
}

.testimonial-editorial-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper);
}

.testimonial-editorial-copy {
  text-align: center;
}

.testimonial-editorial-copy p:last-child {
  color: var(--muted);
}

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

.experience-page {
  background: var(--white);
}

.experience-photo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  width: min(1200px, 82vw);
  margin: 0 auto;
  padding: clamp(48px, 4vw, 68px) 0 clamp(90px, 7vw, 130px);
}

.experience-photo {
  overflow: hidden;
  background: var(--paper);
}

.experience-photo img,
.experience-editorial-images img {
  object-fit: cover;
}

.experience-photo-row .experience-photo {
  aspect-ratio: 4 / 5.35;
}

.experience-photo:nth-child(1) img {
  object-position: center 32%;
}

.experience-photo:nth-child(2) img {
  object-position: center 42%;
}

.experience-photo:nth-child(3) img {
  object-position: center 36%;
}

.experience-intro {
  padding: 0 20px clamp(108px, 8vw, 156px);
  text-align: center;
}

.experience-intro-copy {
  width: min(720px, 100%);
  margin: 0 auto;
}

.experience-intro h1,
.experience-process-heading h2,
.experience-editorial-copy h2,
.experience-faq-heading h2 {
  color: #777574;
  font-weight: 300;
  letter-spacing: 0.045em;
}

.experience-intro h1 {
  font-size: clamp(3.4rem, 3.5vw, 4.8rem);
}

.experience-intro .kicker,
.experience-process-heading .kicker,
.experience-editorial-copy .kicker,
.experience-faq-heading .kicker {
  margin-top: 24px;
  margin-bottom: 0;
  letter-spacing: 0.62em;
}

.experience-intro .lead,
.experience-editorial-copy .lead {
  color: #85817e;
  font-size: clamp(1rem, 1.02vw, 1.14rem);
  line-height: 2.08;
}

.experience-intro .lead:first-of-type {
  margin-top: clamp(52px, 4.8vw, 76px);
}

.experience-intro .lead + .lead {
  margin-top: 22px;
}

.experience-process {
  width: min(1200px, 82vw);
  margin: 0 auto;
  padding: 0 0 clamp(110px, 8vw, 162px);
}

.experience-process-heading,
.experience-faq-heading {
  width: min(700px, 100%);
  margin: 0 auto clamp(58px, 5vw, 86px);
  text-align: center;
}

.experience-process-heading h2,
.experience-editorial-copy h2,
.experience-faq-heading h2 {
  margin-top: 24px;
  font-size: clamp(2.75rem, 3vw, 4rem);
  line-height: 1.15;
}

.experience-step-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-step {
  padding: clamp(34px, 3.2vw, 54px) clamp(20px, 2.4vw, 34px);
  text-align: center;
}

.experience-step + .experience-step {
  border-left: 1px solid var(--line);
}

.experience-step span {
  display: block;
  color: #9b9692;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.52em;
}

.experience-step h3 {
  margin-top: 22px;
  color: #777574;
  font-size: clamp(1.6rem, 1.7vw, 2.15rem);
  font-weight: 300;
  letter-spacing: 0.055em;
}

.experience-step p,
.experience-faq p {
  color: #85817e;
  font-size: 0.96rem;
  line-height: 1.95;
}

.experience-step p {
  margin-top: 18px;
}

.experience-editorial {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(64px, 8vw, 142px);
  width: min(1200px, 82vw);
  margin: 0 auto;
  padding: 0 0 clamp(112px, 8vw, 168px);
}

.experience-editorial-copy {
  text-align: center;
}

.experience-editorial-copy .lead {
  margin-top: clamp(34px, 3vw, 48px);
}

.experience-editorial-copy .button {
  margin-top: 34px;
}

.experience-editorial-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.experience-editorial-images .image-frame:first-child,
.experience-editorial-images .image-frame:last-child {
  aspect-ratio: 4 / 5.25;
}

.experience-faq-section {
  width: min(1200px, 82vw);
  margin: 0 auto;
  padding: 0 0 clamp(108px, 8vw, 150px);
}

.experience-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.experience-faq div {
  padding: clamp(32px, 3.2vw, 50px) clamp(24px, 4vw, 66px);
  border-bottom: 1px solid var(--line);
}

.experience-faq div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.experience-faq h3 {
  color: #777574;
  font-size: clamp(1.45rem, 1.55vw, 1.95rem);
  font-weight: 300;
  letter-spacing: 0.045em;
}

.experience-faq p {
  margin-top: 16px;
}

.services-page {
  background: var(--white);
}

.service-hero {
  min-height: clamp(690px, calc(100vh - 104px), 820px);
  display: grid;
  place-items: center;
  padding: clamp(54px, 5vw, 82px) 5vw;
  background:
    linear-gradient(rgba(251, 250, 248, 0.42), rgba(251, 250, 248, 0.42)),
    url("assets/images/details.jpg") center 34% / cover;
}

.service-panel {
  width: min(584px, 46vw);
  min-height: clamp(500px, 44vw, 566px);
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(48px, 5vw, 76px) clamp(46px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.84);
  text-align: center;
}

.service-panel .kicker {
  margin-bottom: clamp(42px, 3.8vw, 54px);
  font-size: 0.72rem;
  letter-spacing: 0.64em;
}

.service-panel h1 {
  color: #777574;
  font-size: clamp(2.55rem, 2.65vw, 3.45rem);
  font-weight: 300;
  letter-spacing: 0.035em;
  line-height: 1.14;
}

.service-panel h1 span {
  display: block;
}

.service-panel .lead {
  max-width: 420px;
  margin-top: clamp(34px, 3.2vw, 44px);
  color: #77716d;
  font-size: clamp(0.96rem, 0.98vw, 1.08rem);
  line-height: 1.92;
}

.service-love-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(70px, 8vw, 144px);
  width: min(1200px, 82vw);
  margin: 0 auto;
  padding: clamp(108px, 8vw, 160px) 0;
}

.service-love-image {
  aspect-ratio: 4 / 5.25;
  overflow: hidden;
  background: var(--paper);
}

.service-love-copy {
  max-width: 590px;
  text-align: center;
}

.service-love-copy p:first-child {
  color: #777574;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 2.8vw, 3.65rem);
  font-weight: 300;
  line-height: 1.18;
}

.service-love-copy .kicker {
  margin-top: 34px;
}

.service-packages-section {
  width: min(1200px, 82vw);
  margin: 0 auto;
  padding: 0 0 clamp(108px, 8vw, 158px);
}

.service-packages-heading {
  width: min(720px, 100%);
  margin: 0 auto clamp(54px, 5vw, 82px);
  text-align: center;
}

.service-packages-heading h2 {
  margin-top: 24px;
  color: #777574;
  font-size: clamp(3rem, 3.35vw, 4.4rem);
  font-weight: 300;
  letter-spacing: 0.045em;
}

.package-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.package {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 210px;
  gap: 32px;
  align-items: center;
  padding: clamp(36px, 3.5vw, 56px) 0;
  border-bottom: 1px solid var(--line);
}

.package-number,
.price {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-action {
  display: grid;
  justify-items: end;
  gap: 18px;
}

.package-action .button {
  min-width: 178px;
  min-height: 56px;
  padding: 16px 22px;
  font-size: 0.66rem;
  letter-spacing: 0.36em;
}

.service-testimonial {
  position: relative;
  min-height: clamp(620px, 58vw, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
}

.service-testimonial > img {
  position: absolute;
  inset: 0;
  filter: saturate(0.95) brightness(0.95);
}

.service-testimonial::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(47, 49, 48, 0.2);
}

.service-testimonial-card {
  position: relative;
  z-index: 1;
  width: min(700px, calc(100% - 40px));
  padding: clamp(48px, 6vw, 88px);
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.service-testimonial-card blockquote {
  margin: clamp(28px, 3vw, 44px) 0;
  color: #595653;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 3.6vw, 4.9rem);
  font-weight: 300;
  line-height: 1.08;
}

.service-link-section {
  padding: clamp(72px, 6vw, 110px) 0 clamp(118px, 7vw, 150px);
  background: var(--white);
}

.quote-row,
.testimonial-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.quote,
.testimonial {
  display: grid;
  gap: 22px;
}

.quote-image,
.testimonial-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.quote p,
.testimonial p,
.package p,
.blog-card p,
.faq p {
  color: var(--muted);
}

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

.blog-card {
  display: grid;
  gap: 18px;
}

.blog-card .image-frame {
  aspect-ratio: 4 / 5;
  background: var(--white);
}

.date {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.blog-page,
.blog-post-page {
  background: var(--white);
}

.blog-quote-hero {
  width: min(764px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(112px, 9vw, 150px) 0 clamp(112px, 9vw, 156px);
  text-align: center;
}

.blog-quote-hero p {
  color: #373737;
  font-family: var(--serif);
  font-size: clamp(1.72rem, 2.18vw, 2.06rem);
  font-weight: 300;
  line-height: 1.22;
}

.word-reveal-word {
  display: inline-block;
  opacity: 0;
  animation: quoteWordFade 1258ms ease forwards;
  will-change: opacity;
}

@keyframes quoteWordFade {
  to {
    opacity: 1;
  }
}

.blog-index-section {
  width: min(1030px, 80.5vw);
  margin: 0 auto;
  padding: 0 0 clamp(118px, 8vw, 160px);
}

.blog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(26px, 4vw, 54px);
  margin-bottom: clamp(42px, 4.2vw, 58px);
}

.blog-category-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 14px 34px;
  color: #8b8784;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.blog-filter {
  appearance: none;
  padding: 0;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.blog-filter.is-active {
  color: #3f3d3b;
}

.blog-search {
  display: grid;
  grid-template-columns: auto minmax(188px, 260px);
  align-items: center;
  gap: 18px;
  color: #8b8784;
  font-size: 0.68rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.blog-search input {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(119, 113, 109, 0.34);
  border-radius: 0;
  background: var(--white);
  color: #5f5a56;
  font: 0.86rem var(--sans);
  letter-spacing: 0.12em;
  text-transform: none;
}

.blog-search input::placeholder {
  color: #aaa4a0;
}

.blog-topic-tray {
  flex: 0 0 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 520ms ease, opacity 360ms ease, transform 420ms ease;
}

.blog-controls.is-search-open .blog-topic-tray {
  max-height: 320px;
  opacity: 1;
  transform: translateY(0);
}

.blog-topic-tray p {
  margin: 6px 0 18px;
  color: #aaa4a0;
  font-family: var(--serif);
  font-size: 0.98rem;
  font-style: italic;
  letter-spacing: 0;
  text-align: center;
}

.blog-topic-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  padding: 22px 0 4px;
  border-top: 1px solid rgba(119, 113, 109, 0.18);
  color: #8b8784;
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.blog-index-grid {
  display: grid;
  gap: clamp(74px, 5.8vw, 86px);
}

.blog-listing-card[hidden],
.blog-empty[hidden] {
  display: none;
}

.blog-listing-link {
  position: relative;
  display: block;
  aspect-ratio: 1000 / 667;
  overflow: hidden;
  background: var(--paper);
}

.blog-listing-image {
  transition: transform 900ms ease;
}

.blog-listing-shade {
  position: absolute;
  inset: 0;
  background: rgba(42, 39, 37, 0.22);
  transition: background 400ms ease;
}

.blog-listing-copy {
  position: absolute;
  inset: 50% clamp(28px, 4vw, 70px) auto;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--white);
  text-align: center;
  transform: translateY(-50%);
}

.blog-listing-date {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.05vw, 1.02rem);
  font-weight: 300;
  line-height: 1.7;
}

.blog-listing-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.72rem, 3.22vw, 3.34rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.blog-listing-link:hover .blog-listing-image {
  transform: scale(1.035);
}

.blog-listing-link:hover .blog-listing-shade {
  background: rgba(42, 39, 37, 0.3);
}

.blog-empty {
  margin-top: 52px;
  color: #85817e;
  text-align: center;
}

.blog-post-hero h1 {
  color: #777574;
  font-weight: 300;
  letter-spacing: 0.045em;
}

.blog-post-hero {
  width: min(980px, 82vw);
  margin: 0 auto;
  padding: clamp(76px, 7vw, 124px) 0 clamp(70px, 6vw, 110px);
  text-align: center;
}

.blog-post-hero h1 {
  margin-top: 24px;
  font-size: clamp(2.72rem, 4.68vw, 5.44rem);
  line-height: 1;
}

.blog-post-hero .lead {
  max-width: 720px;
  margin: 32px auto 0;
  color: #85817e;
  font-size: clamp(1rem, 1.02vw, 1.14rem);
  line-height: 2;
}

.blog-post-cover {
  aspect-ratio: 16 / 10;
  margin-top: clamp(54px, 5vw, 82px);
  overflow: hidden;
  background: var(--paper);
}

.blog-post-body {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  color: #77716d;
  font-size: clamp(1rem, 1.02vw, 1.12rem);
  line-height: 2.05;
}

.blog-post-body p + p,
.blog-post-body p + h2,
.blog-post-body figure + p,
.blog-post-body p + figure {
  margin-top: 24px;
}

.blog-post-body h2,
.blog-post-body h3 {
  color: #777574;
  font-weight: 300;
  letter-spacing: 0.045em;
}

.blog-post-body h2 {
  font-size: clamp(2.4rem, 3vw, 3.8rem);
  line-height: 1.12;
}

.blog-post-body h3 {
  font-size: clamp(1.8rem, 2.2vw, 2.7rem);
}

.blog-post-body figure {
  overflow: hidden;
  background: var(--paper);
}

.blog-post-body figure img {
  aspect-ratio: 16 / 10;
}

.blog-post-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(1200px, 82vw);
  margin: clamp(70px, 6vw, 110px) auto 0;
}

.blog-post-gallery figure {
  overflow: hidden;
  background: var(--paper);
}

.blog-post-gallery figure:nth-child(odd) {
  aspect-ratio: 4 / 5.25;
}

.blog-post-gallery figure:nth-child(even) {
  aspect-ratio: 4 / 3.1;
}

.blog-post-actions {
  display: grid;
  place-items: center;
  padding: clamp(76px, 7vw, 124px) 20px clamp(108px, 8vw, 150px);
}

.portfolio-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: calc(100vh - 104px);
  background: var(--white);
}

.portfolio-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 720px;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}

.portfolio-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(47, 49, 48, 0.2);
  transition: background 700ms ease;
}

.portfolio-hero img {
  opacity: 0.78;
  filter: saturate(0.82) brightness(0.95);
}

.portfolio-hero:hover::after {
  background: rgba(47, 49, 48, 0.1);
}

.portfolio-hero:hover img {
  opacity: 0.86;
}

.portfolio-content {
  z-index: 1;
  width: 100%;
  gap: 24px;
  place-items: center;
}

.portfolio-content h1 {
  font-size: clamp(2.5rem, 3.7vw, 5.3rem);
  font-weight: 300;
  letter-spacing: 0.045em;
  line-height: 0.98;
}

.portfolio-content .small-link {
  color: rgba(255, 255, 255, 0.92);
}

.gallery-page {
  background: var(--white);
}

.gallery-hero {
  padding: clamp(32px, 2.2vw, 48px) 0 clamp(44px, 3.3vw, 60px);
}

.gallery-hero-frame {
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(360px, 1fr) minmax(170px, 240px);
  align-items: center;
  gap: clamp(80px, 7.5vw, 150px);
  width: min(1200px, 82vw);
  margin: 0 auto;
}

.gallery-hero-image {
  aspect-ratio: 240 / 366;
  overflow: hidden;
  background: var(--paper);
}

.gallery-hero-image img,
.gallery-item img {
  object-fit: cover;
}

.gallery-title-card {
  display: grid;
  justify-items: center;
  align-self: end;
  padding-bottom: clamp(142px, 11vw, 168px);
  text-align: center;
}

.gallery-title-card h1 {
  color: #777574;
  font-size: clamp(3rem, 3.1vw, 4.15rem);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.gallery-grid-section {
  padding: 0 0 clamp(82px, 7vw, 128px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 12px;
  width: min(1200px, 82vw);
  margin: 0 auto;
}

.gallery-column {
  display: grid;
  align-content: start;
  gap: 0;
}

.gallery-item {
  overflow: hidden;
  background: var(--paper);
}

.gallery-item-tall {
  aspect-ratio: 594 / 903;
}

.gallery-item-wide {
  aspect-ratio: 594 / 408;
}

.gallery-link-section {
  padding: clamp(34px, 3vw, 58px) 0 clamp(118px, 7vw, 150px);
  background: var(--white);
  border-top: 1px solid rgba(222, 217, 211, 0.5);
}

.supports-scroll-reveal .reveal-on-scroll {
  opacity: 0.01;
  transform: translateY(34px) scale(0.985);
  transition: opacity 760ms ease, transform 760ms ease;
  will-change: opacity, transform;
}

.supports-scroll-reveal .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .supports-scroll-reveal .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .word-reveal-word {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.contact-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto 84px;
}

.contact-collage .image-frame {
  aspect-ratio: 1 / 1;
}

.contact-page {
  background: var(--white);
}

.contact-hero {
  padding: clamp(56px, 4.8vw, 78px) 0 clamp(90px, 8vw, 146px);
}

.contact-photo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(1520px, 91.6vw);
  margin: 0 auto;
}

.contact-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper);
}

.contact-photo img {
  object-fit: cover;
}

.contact-photo:nth-child(1) img {
  object-position: center 42%;
}

.contact-photo:nth-child(2) img {
  object-position: center 28%;
}

.contact-photo:nth-child(3) img {
  object-position: center 45%;
}

.contact-photo:nth-child(4) img {
  object-position: center 38%;
}

.contact-intro {
  width: min(760px, calc(100% - 40px));
  margin: clamp(94px, 6.8vw, 116px) auto 0;
  text-align: center;
}

.contact-intro .flower-mark {
  width: 132px;
  height: 132px;
  margin: 0 auto clamp(56px, 4.6vw, 64px);
  background-size: auto 205%;
  opacity: 0.42;
}

.contact-intro h1 {
  color: #777574;
  font-size: clamp(3rem, 3.25vw, 4.25rem);
  font-weight: 300;
  letter-spacing: 0.045em;
}

.contact-intro .lead {
  max-width: 760px;
  margin: 28px auto 0;
  color: #85817e;
  font-size: clamp(1rem, 1.02vw, 1.14rem);
  line-height: 2.05;
}

.honeybook-shell {
  width: min(820px, 100%);
  margin: 56px auto 0;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.honeybook-placeholder {
  display: grid;
  place-items: center;
  min-height: 340px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.contact-page .honeybook-shell {
  width: min(760px, calc(100% - 40px));
  min-height: 540px;
  margin-top: clamp(45px, 4vw, 60px);
  padding: 0;
  border: 0;
  background: transparent;
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 64px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
    min-height: 76px;
    padding: 0 20px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .brand {
    grid-column: 2;
    width: 102px;
  }

  .site-header .brand {
    width: 102px;
  }

  .menu-toggle {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  .hero-collage {
    display: block;
  }

  .hero-track {
    --hero-height: clamp(430px, 68vh, 560px);
  }

  .hero-panel-portrait {
    width: clamp(255px, 72vw, 330px);
  }

  .hero-panel-landscape {
    width: clamp(400px, 112vw, 520px);
  }

  .hero-desktop-controls {
    height: 74px;
    padding: 24px 26px 0;
  }

  .hero-mobile {
    display: none;
  }

  .section {
    padding: 62px 20px;
  }

  h1 {
    font-size: clamp(3.05rem, 14vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.9rem);
  }

  h3 {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .lead {
    font-size: 1rem;
    line-height: 1.9;
  }

  .button {
    min-width: 194px;
    min-height: 56px;
  }

  .section.home-intro {
    padding-top: 48px;
    padding-bottom: 78px;
  }

  .home-intro .eyebrow {
    margin-bottom: 28px;
    font-size: clamp(1.18rem, 5.2vw, 1.35rem);
  }

  .home-intro h1 {
    font-size: clamp(2.65rem, 11.2vw, 3.15rem);
    letter-spacing: 0.025em;
  }

  .home-intro .kicker {
    margin-top: 32px;
    font-size: 0.66rem;
    letter-spacing: 0.55em;
  }

  .home-intro .button {
    min-width: min(254px, 82vw);
    min-height: 64px;
    font-size: 0.68rem;
    letter-spacing: 0.42em;
  }

  .split-feature,
  .split-feature.reversed,
  .page-hero.split {
    grid-template-columns: 1fr;
  }

  .split-feature.reversed .feature-copy {
    order: 2;
  }

  .split-feature.reversed .feature-image {
    order: 1;
  }

  .image-pair {
    gap: 10px;
  }

  .featured-links-section {
    padding: 56px 20px 86px;
  }

  .featured-image-pair,
  .featured-link-row {
    width: 100%;
  }

  .featured-image-pair {
    gap: 10px;
  }

  .featured-image {
    aspect-ratio: 4 / 5;
  }

  .featured-link-row {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 52px;
  }

  .featured-link-card h2 {
    font-size: 1.72rem;
  }

  .featured-link-card .kicker {
    margin-top: 15px;
    font-size: 0.68rem;
    letter-spacing: 0.5em;
  }

  .featured-link-card .button {
    min-width: 194px;
    min-height: 60px;
    margin-top: 24px;
    font-size: 0.68rem;
    letter-spacing: 0.42em;
  }

  .press-section {
    padding: 72px 20px 84px;
  }

  .press-inner {
    width: 100%;
  }

  .press-heading {
    font-size: clamp(2rem, 9.5vw, 2.7rem);
  }

  .press-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 24px 8px;
    margin-top: 42px;
    overflow: hidden;
    transform: none;
  }

  .press-logo {
    min-width: 0;
    min-height: 50px;
    transform: none;
  }

  .press-logo-academy {
    grid-column: 1 / -1;
    order: 9;
  }

  .press-logo-script {
    order: 8;
  }

  .press-logo-asked {
    order: 7;
  }

  .press-logo-huffpost {
    --press-logo-width: 108px;
    font-size: clamp(1.38rem, 6.9vw, 2.02rem);
  }

  .press-logo-script {
    --press-logo-width: 94px;
    font-size: clamp(2.5rem, 11.8vw, 3.6rem);
  }

  .press-logo-brides {
    --press-logo-width: 124px;
    font-size: clamp(2.34rem, 11.2vw, 3.32rem);
  }

  .press-logo-glitter,
  .press-logo-asked,
  .press-logo-bridal,
  .press-logo-fortwayne {
    font-size: clamp(1.72rem, 8.5vw, 2.7rem);
  }

  .press-logo-glitter {
    --press-logo-width: 112px;
  }

  .press-logo-desiree {
    --press-logo-width: 155px;
    font-size: clamp(1rem, 5vw, 1.5rem);
  }

  .press-logo-asked {
    --press-logo-width: 130px;
  }

  .press-logo-bridal {
    --press-logo-width: 130px;
  }

  .press-logo-fortwayne {
    --press-logo-width: 120px;
  }

  .press-logo-academy {
    --press-logo-width: 182px;
    font-size: clamp(0.72rem, 3.2vw, 0.98rem);
  }

  .link-grid,
  .quote-row,
  .testimonial-list,
  .blog-grid,
  .faq {
    grid-template-columns: 1fr;
  }

  .blog-quote-hero {
    width: calc(100% - 40px);
    padding: 72px 0 92px;
  }

  .blog-quote-hero p {
    font-size: clamp(1.58rem, 6.2vw, 1.9rem);
  }

  .blog-index-section,
  .blog-post-hero,
  .blog-post-gallery {
    width: calc(100% - 40px);
  }

  .blog-category-list {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 10px 14px;
    font-size: 0.56rem;
    letter-spacing: 0.22em;
    line-height: 1.25;
  }

  .blog-controls {
    display: grid;
    justify-items: stretch;
    width: 100%;
    gap: 18px;
    margin-bottom: 44px;
    overflow: hidden;
  }

  .blog-search {
    grid-template-columns: 1fr;
    justify-items: center;
    justify-self: center;
    width: min(250px, 100%);
    gap: 0;
  }

  .blog-search span {
    display: none;
  }

  .blog-search input {
    min-height: 40px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-align: center;
  }

  .blog-controls.is-search-open .blog-topic-tray {
    max-height: 420px;
  }

  .blog-topic-tray {
    width: 100%;
  }

  .blog-topic-tray p {
    margin-top: 2px;
    margin-bottom: 14px;
  }

  .blog-topic-list {
    justify-content: center;
    gap: 12px 14px;
    padding-top: 18px;
    font-size: 0.54rem;
    letter-spacing: 0.2em;
    line-height: 1.35;
  }

  .blog-topic-list .blog-filter {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .blog-index-grid,
  .blog-post-gallery {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .blog-listing-link {
    aspect-ratio: 343 / 229;
  }

  .blog-listing-copy {
    inset: 50% 24px auto;
    gap: 5px;
    transform: translateY(-50%);
  }

  .blog-listing-date {
    font-size: 0.94rem;
  }

  .blog-listing-copy h2 {
    width: 100%;
    font-size: clamp(2.05rem, 8.45vw, 2.35rem);
  }

  .blog-post-hero {
    padding: 62px 0 58px;
  }

  .blog-post-hero h1 {
    font-size: clamp(2.3rem, 10.2vw, 3.4rem);
  }

  .blog-post-cover {
    aspect-ratio: 4 / 5;
  }

  .link-tile {
    min-height: 350px;
  }

  .page-hero {
    padding: 42px 20px 70px;
  }

  .page-hero .portrait {
    width: min(230px, 62vw);
    margin: 0 auto;
  }

  .page-hero .narrow {
    margin-top: 48px;
  }

  .about-hero,
  .about-approach,
  .testimonials-hero,
  .testimonial-feature,
  .testimonial-editorial,
  .testimonial-editorial.reversed {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 44px;
  }

  .about-hero {
    padding: 48px 20px 78px;
  }

  .about-portrait {
    width: min(560px, 100%);
    margin: 0 auto;
    aspect-ratio: 4 / 5;
    transform: translateY(-20px);
  }

  .about-copy,
  .testimonial-hero-copy {
    width: min(640px, 100%);
    margin: 0 auto;
  }

  .about-copy h1,
  .testimonial-hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 4.05rem);
  }

  .about-copy .kicker,
  .testimonial-hero-copy .kicker {
    letter-spacing: 0.52em;
  }

  .about-copy .flower-mark {
    margin: 30px auto 34px;
  }

  .about-approach {
    padding: 0 20px 76px;
  }

  .about-approach-copy {
    max-width: 640px;
    margin: 0 auto;
  }

  .about-approach-copy h2,
  .testimonial-feature-copy h2 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .about-approach-images {
    gap: 10px;
  }

  .about-approach-images .image-frame {
    aspect-ratio: 3 / 4.2;
  }

  .about-kind-words {
    padding: 72px 20px;
  }

  .testimonials-hero {
    padding: 48px 20px 78px;
  }

  .testimonial-hero-image {
    width: min(520px, 100%);
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }

  .testimonial-hero-copy .flower-mark {
    margin: 0 auto 40px;
  }

  .testimonial-feature {
    width: 100%;
    padding: 0 20px 78px;
  }

  .testimonial-feature-image {
    width: min(430px, 100%);
    margin: 0 auto;
  }

  .testimonial-editorial-list {
    width: 100%;
    gap: 70px;
    padding: 0 20px 82px;
  }

  .testimonial-editorial.reversed .testimonial-editorial-image {
    order: 1;
  }

  .testimonial-editorial.reversed .testimonial-editorial-copy {
    order: 2;
  }

  .service-hero {
    min-height: 650px;
    padding: 58px 20px;
    background-position: center 30%;
  }

  .service-panel {
    width: min(100%, 520px);
    min-height: 460px;
    padding: 42px 28px;
  }

  .service-panel .kicker {
    margin-bottom: 32px;
    font-size: 0.66rem;
    letter-spacing: 0.48em;
  }

  .service-panel h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.25rem);
    letter-spacing: 0.035em;
  }

  .service-panel .lead {
    margin-top: 30px;
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .service-love-section {
    grid-template-columns: 1fr;
    gap: 46px;
    width: calc(100% - 40px);
    padding: 72px 0;
  }

  .service-love-image {
    width: min(460px, 100%);
    margin: 0 auto;
  }

  .service-love-copy {
    max-width: 620px;
    margin: 0 auto;
  }

  .service-love-copy p:first-child {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .service-packages-section {
    width: calc(100% - 40px);
    padding-bottom: 78px;
  }

  .service-packages-heading {
    margin-bottom: 44px;
  }

  .service-packages-heading h2 {
    font-size: clamp(2.45rem, 10.5vw, 3.35rem);
  }

  .package {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .package-action {
    justify-items: start;
  }

  .service-testimonial {
    min-height: 620px;
  }

  .service-testimonial-card {
    padding: 42px 28px;
  }

  .service-testimonial-card blockquote {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }

  .service-link-section {
    padding: 64px 20px 88px;
  }

  .portfolio-menu {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .portfolio-hero {
    min-height: 340px;
  }

  .portfolio-content h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    letter-spacing: 0.035em;
  }

  .experience-photo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: calc(100% - 40px);
    padding: 22px 0 70px;
  }

  .experience-photo {
    height: auto;
    aspect-ratio: auto;
  }

  .experience-photo-row .experience-photo {
    aspect-ratio: 3 / 4.2;
  }

  .experience-intro {
    padding-bottom: 78px;
  }

  .experience-intro h1 {
    font-size: clamp(2.65rem, 12vw, 3.9rem);
  }

  .experience-intro .kicker,
  .experience-process-heading .kicker,
  .experience-editorial-copy .kicker,
  .experience-faq-heading .kicker {
    font-size: 0.68rem;
    letter-spacing: 0.5em;
  }

  .experience-intro .lead:first-of-type {
    margin-top: 42px;
  }

  .experience-process,
  .experience-editorial,
  .experience-faq-section {
    width: calc(100% - 40px);
  }

  .experience-process {
    padding-bottom: 84px;
  }

  .experience-process-heading,
  .experience-faq-heading {
    margin-bottom: 46px;
  }

  .experience-process-heading h2,
  .experience-editorial-copy h2,
  .experience-faq-heading h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.25rem);
  }

  .experience-step-row,
  .experience-faq {
    grid-template-columns: 1fr;
  }

  .experience-step + .experience-step,
  .experience-faq div:nth-child(odd) {
    border-left: 0;
    border-right: 0;
  }

  .experience-step {
    border-bottom: 1px solid var(--line);
  }

  .experience-step-row .experience-step:last-child {
    border-bottom: 0;
  }

  .experience-editorial {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-bottom: 90px;
  }

  .experience-editorial-images {
    gap: 10px;
  }

  .experience-faq-section {
    padding-bottom: 82px;
  }

  .gallery-hero {
    padding: 22px 0 53px;
  }

  .gallery-hero-frame {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 10px;
    width: calc(100% - 40px);
  }

  .gallery-hero-image {
    aspect-ratio: 170 / 264;
  }

  .gallery-hero-image:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-hero-image:last-child {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-title-card {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: center;
    padding: 27px 0 0;
  }

  .gallery-title-card h1 {
    font-size: clamp(2.05rem, 8.45vw, 2.35rem);
    letter-spacing: 0.04em;
  }

  .gallery-grid-section {
    padding-bottom: 76px;
  }

  .gallery-grid {
    width: calc(100% - 40px);
    gap: 0 10px;
  }

  .contact-collage {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 66px;
  }

  .contact-hero {
    padding: 22px 0 76px;
  }

  .contact-photo-row {
    grid-template-columns: repeat(8, 1fr);
    width: calc(100% - 40px);
  }

  .contact-photo {
    height: clamp(176px, 48vw, 230px);
    aspect-ratio: auto;
  }

  .contact-photo:nth-child(1),
  .contact-photo:nth-child(4) {
    grid-column: span 3;
  }

  .contact-photo:nth-child(2),
  .contact-photo:nth-child(3) {
    grid-column: span 5;
  }

  .contact-intro {
    margin-top: 31px;
  }

  .contact-intro .flower-mark {
    width: 112px;
    height: 112px;
    margin-bottom: 32px;
    background-size: auto 205%;
  }

  .contact-intro h1 {
    font-size: clamp(2.05rem, 8.5vw, 2.35rem);
  }

  .contact-intro .lead {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.9;
  }

  .contact-page .honeybook-shell {
    width: calc(100% - 40px);
    min-height: 520px;
    margin-top: 48px;
  }

  .footer-nav {
    display: grid;
    gap: 18px;
  }
}
