:root {
  --ink: #12100e;
  --charcoal: #151311;
  --charcoal-2: #211c18;
  --ivory: #fffaf2;
  --cream: #f4ecdf;
  --champagne: #b89462;
  --champagne-dark: #8a683d;
  --sage: #65705f;
  --rose: #a5756d;
  --taupe: #74695e;
  --line: rgba(18, 16, 14, 0.14);
  --line-light: rgba(255, 250, 242, 0.18);
  --shadow: 0 22px 60px rgba(18, 16, 14, 0.16);
  --max: 1180px;
  --header-h: 84px;
}

.analytics-consent {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px;
  color: #f7f3ec;
  background: rgba(20, 18, 16, 0.97);
  border: 1px solid rgba(216, 180, 106, 0.5);
  border-radius: 14px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
}

.analytics-consent p {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 243, 236, 0.82);
  font-size: 0.92rem;
}

.analytics-consent .analytics-consent-title {
  margin-bottom: 6px;
  color: #f7f3ec;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.analytics-consent a {
  color: var(--champagne);
}

.analytics-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.analytics-consent-actions .button {
  min-width: 142px;
}

.privacy-choices-button {
  position: fixed;
  z-index: 900;
  bottom: 10px;
  left: 10px;
  padding: 7px 10px;
  color: rgba(247, 243, 236, 0.75);
  background: rgba(20, 18, 16, 0.88);
  border: 1px solid rgba(247, 243, 236, 0.22);
  border-radius: 999px;
  font: inherit;
  font-size: 0.72rem;
  cursor: pointer;
}

.privacy-choices-button:hover,
.privacy-choices-button:focus-visible {
  color: #f7f3ec;
  border-color: var(--champagne);
}

@media (max-width: 760px) {
  .analytics-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    padding: 18px;
  }

  .analytics-consent-actions {
    margin-top: 16px;
  }

  .analytics-consent-actions .button {
    flex: 1;
    min-width: 0;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Aptos, "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--champagne);
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
blockquote p {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.02;
}

h1 {
  font-size: 5.2rem;
  max-width: 780px;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--ivory);
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--champagne);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: 110px;
}

.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: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 14px 5vw;
  color: var(--ivory);
  background: rgba(18, 16, 14, 0);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled,
.site-header.solid {
  background: rgba(18, 16, 14, 0.96);
  border-bottom-color: var(--line-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.brand-copy {
  display: grid;
  gap: 1px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1;
}

.brand-copy span {
  font-family: Aptos, "Segoe UI", system-ui, sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav a,
.mobile-menu a {
  position: relative;
}

.desktop-nav a::after,
.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after,
.mobile-menu a:hover::after,
.mobile-menu a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta,
.button-gold {
  background: var(--champagne);
  color: var(--ink);
  border-color: var(--champagne);
}

.header-cta:hover,
.button-gold:hover {
  background: var(--ivory);
  color: var(--ink);
  transform: translateY(-1px);
}

.button-ghost,
.button-outline {
  color: var(--ivory);
  border-color: rgba(255, 250, 242, 0.62);
  background: rgba(18, 16, 14, 0.18);
}

.button-ghost:hover,
.button-outline:hover {
  background: var(--ivory);
  color: var(--ink);
}

.button-outline-dark {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.button-outline-dark:hover {
  background: var(--ink);
  color: var(--ivory);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-light);
  background: rgba(255, 250, 242, 0.08);
  color: var(--ivory);
  border-radius: 2px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(18, 16, 14, 0.98);
  color: var(--ivory);
  padding: 120px 8vw 40px;
}

.mobile-menu nav {
  display: grid;
  gap: 26px;
  max-width: 480px;
}

.mobile-menu a {
  width: fit-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.mobile-menu .button {
  margin-top: 20px;
  font-family: Aptos, "Segoe UI", system-ui, sans-serif;
  font-size: 0.84rem;
}

.hero,
.page-hero,
.cta-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
}

.page-hero {
  min-height: 68svh;
  padding-top: var(--header-h);
}

.hero-media,
.page-hero-media,
.cta-media,
.hero-media img,
.page-hero-media img,
.cta-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img,
.page-hero-media img,
.cta-media img {
  object-fit: cover;
}

.hero-media img {
  object-position: 56% 42%;
}

.page-hero-media img {
  object-position: center;
}

.wedding-resource-hero .page-hero-media img {
  object-position: center 44%;
}

.wedding-resource-hero {
  min-height: 760px;
}

.wedding-resource-hero .page-hero-copy {
  padding-top: calc(var(--header-h) + 18px);
}

.about-founder-hero {
  align-items: end;
}

.about-founder-hero .page-hero-media img {
  object-position: center 38%;
}

.about-founder-hero .page-hero-shade {
  background: linear-gradient(180deg, rgba(18, 16, 14, 0.08) 20%, rgba(18, 16, 14, 0.88) 100%);
}

.about-founder-hero .page-hero-copy {
  max-width: 780px;
  padding-bottom: clamp(56px, 8vw, 104px);
  text-align: center;
}

.about-founder-hero .page-hero-copy p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.hero-shade,
.page-hero-shade,
.cta-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 16, 14, 0.86), rgba(18, 16, 14, 0.42) 48%, rgba(18, 16, 14, 0.26));
}

.hero-inner,
.page-hero-copy,
.cta-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), 90vw);
  margin: 0 auto;
}

.hero-inner {
  padding-top: 60px;
}

.hero-inner p:not(.eyebrow),
.page-hero-copy p:not(.eyebrow),
.cta-copy p {
  max-width: 520px;
  margin: 22px 0 32px;
  color: rgba(255, 250, 242, 0.9);
  font-size: 1.08rem;
}

.eyebrow {
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-proof {
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: 30px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 242, 0.26);
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.section {
  padding: 100px 5vw;
}

.section-light {
  background: var(--ivory);
}

.section-dark {
  background: var(--charcoal);
  color: var(--ivory);
}

.section-heading,
.split-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 48px;
}

.section-heading {
  text-align: center;
  max-width: 820px;
}

.section-heading h2,
.split-heading h2 {
  margin-top: 10px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.service-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  min-height: 246px;
  padding: 30px 18px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: start;
  gap: 16px;
}

.service-card:last-child {
  border-right: 0;
}

.wedding-service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card-marker {
  color: var(--champagne-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.service-card p,
.resource-card p,
.service-detail p,
.comparison-card p,
.faq-item p,
.process-step p,
.value-card p,
.story-copy p,
.feature-copy p,
.contact-panel p {
  color: var(--taupe);
}

.section-dark .service-card p,
.section-dark .resource-card p,
.section-dark .process-step p,
.section-dark .value-card p,
.section-dark .testimonial-copy blockquote p {
  color: rgba(255, 250, 242, 0.78);
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--champagne-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-dark .text-link {
  color: var(--champagne);
}

.text-link::after {
  content: ">";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.featured-portfolio {
  padding-top: 92px;
}

.portfolio-strip {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr;
  gap: 18px;
}

.portfolio-tile {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 6px;
  color: var(--ivory);
  background: var(--charcoal-2);
}

.portfolio-tile.large {
  min-height: 470px;
}

.portfolio-tile.tall {
  min-height: 470px;
}

.portfolio-tile picture,
.portfolio-tile img,
.portfolio-card picture,
.portfolio-card img,
.story-media picture,
.feature-image picture,
.testimonial-image picture,
.resource-card img,
.feature-image img,
.story-media img,
.testimonial-image img,
.about-collage img {
  width: 100%;
  height: 100%;
}

.portfolio-tile picture,
.portfolio-card picture,
.story-media picture,
.feature-image picture,
.testimonial-image picture {
  display: block;
}

.portfolio-tile img,
.portfolio-card img,
.resource-card img,
.feature-image img,
.story-media img,
.testimonial-image img,
.about-collage img {
  object-fit: cover;
  transition: transform 600ms ease;
}

.story-media img[src*="founders-bruna-karla"] {
  object-position: center top;
}

.portfolio-tile::after,
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 16, 14, 0.08), rgba(18, 16, 14, 0.82));
}

.portfolio-tile:hover img,
.portfolio-card:hover img,
.resource-card:hover img {
  transform: scale(1.035);
}

.portfolio-tile span,
.portfolio-tile h3,
.portfolio-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  z-index: 1;
}

.portfolio-tile span {
  bottom: 74px;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-tile h3 {
  bottom: 24px;
  font-size: 1.35rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 2.2rem;
}

.trust-item span {
  color: var(--taupe);
  font-size: 0.92rem;
}

.founder-story,
.about-story,
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
  background: var(--cream);
}

.story-media,
.feature-image,
.testimonial-image {
  height: 620px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.story-copy {
  display: grid;
  gap: 20px;
  max-width: 560px;
}

.story-copy .button,
.feature-copy .button {
  width: fit-content;
  margin-top: 10px;
}

.trust-story {
  grid-template-columns: 0.85fr 1fr 0.72fr;
  gap: 42px;
}

.trust-story .story-media {
  height: 520px;
}

.trust-story .story-copy {
  max-width: none;
}

.proof-micro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 6px 0;
}

.proof-micro-grid article {
  padding: 16px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.32);
}

.proof-micro-grid strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.proof-micro-grid span {
  display: block;
  margin-top: 6px;
  color: var(--taupe);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

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

.value-list article {
  padding: 26px 0 26px 30px;
  border-bottom: 1px solid var(--line);
}

.value-list article:last-child {
  border-bottom: 0;
}

.value-list h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.value-list p {
  color: var(--taupe);
}

.testimonials {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 54px;
  align-items: center;
}

.testimonial-copy {
  max-width: 540px;
  justify-self: end;
}

.testimonial-copy h2 {
  margin: 10px 0 34px;
}

blockquote {
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid var(--champagne);
}

blockquote p {
  font-size: 2rem;
}

cite {
  display: block;
  margin-top: 20px;
  color: var(--champagne);
  font-style: normal;
  font-weight: 700;
}

.resource-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-grid.large {
  grid-template-columns: repeat(4, 1fr);
}

.resource-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.36);
}

.section-dark .resource-card {
  border-color: var(--line-light);
  background: rgba(255, 250, 242, 0.06);
}

.resource-card img {
  height: 260px;
  aspect-ratio: 4 / 3;
}

.resource-card .eyebrow,
.resource-card h3,
.resource-card h2,
.resource-card p:not(.eyebrow),
.resource-card .text-link {
  margin-left: 22px;
  margin-right: 22px;
}

.resource-card .eyebrow {
  margin-top: 22px;
}

.resource-card h3,
.resource-card h2 {
  margin-top: 8px;
  margin-bottom: 14px;
}

.resource-card .text-link {
  margin-top: 18px;
  margin-bottom: 24px;
}

.guide-path {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-step {
  min-height: 270px;
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.guide-step:last-child {
  border-right: 0;
}

.guide-step span {
  color: var(--champagne-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.05rem;
}

.guide-step h3 {
  font-size: 1.32rem;
}

.guide-step p,
.checklist-panel p,
.checklist-list,
.secondary-resource-band .section-heading p:not(.eyebrow) {
  color: var(--taupe);
}

.guide-grid {
  grid-template-columns: repeat(3, 1fr);
}

.checklist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 58px;
  align-items: center;
  background: var(--cream);
}

.checklist-panel {
  display: grid;
  gap: 20px;
  max-width: 720px;
}

.checklist-panel .button {
  width: fit-content;
  margin-top: 8px;
}

.checklist-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 8px 0 2px;
  padding: 0;
  list-style: none;
}

.checklist-list li {
  position: relative;
  padding-left: 22px;
}

.checklist-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
}

.checklist-image {
  min-height: 620px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.checklist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-faq {
  border-top: 1px solid var(--line);
}

.secondary-resource-band .section-heading p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.76);
}

.section-dark .service-pill-grid a {
  border-color: var(--line-light);
  color: rgba(255, 250, 242, 0.82);
  background: rgba(255, 250, 242, 0.06);
}

.section-dark .service-pill-grid a:hover {
  color: var(--ink);
  border-color: var(--champagne);
  background: var(--champagne);
}

.consultation-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.wedding-focus-note {
  padding-top: 0;
}

.consultation-copy {
  max-width: 760px;
}

.consultation-copy h2 {
  margin: 8px 0 16px;
}

.consultation-copy p:not(.eyebrow) {
  color: var(--taupe);
}

.cta-section {
  min-height: 480px;
}

.cta-section.compact {
  min-height: 420px;
}

.cta-copy {
  text-align: center;
  display: grid;
  justify-items: center;
}

.cta-copy h2 {
  max-width: 840px;
}

.cta-copy p {
  margin: 18px 0 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 34px;
  padding: 58px 5vw 24px;
  background: var(--charcoal);
  color: var(--ivory);
}

.site-footer h2 {
  margin-bottom: 16px;
  font-family: Aptos, "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer nav,
.footer-contact,
.footer-brand {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-brand p,
.footer-contact p,
.footer-bottom {
  color: rgba(255, 250, 242, 0.72);
}

.footer-contact .button {
  width: fit-content;
  margin-top: 10px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  font-size: 0.85rem;
}

.subpage {
  background: var(--ivory);
}

.filter-bar {
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  background: var(--ink);
  color: var(--ivory);
}

.portfolio-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
}

.portfolio-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--charcoal-2);
  color: var(--ivory);
}

.portfolio-card.wide {
  grid-column: span 2;
}

.portfolio-card.tall {
  grid-row: span 2;
  min-height: 878px;
}

.portfolio-card[hidden] {
  display: none;
}

.portfolio-card div {
  bottom: 22px;
}

.portfolio-card p {
  margin-bottom: 6px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-card h2 {
  font-size: 1.55rem;
}

.service-detail-list {
  display: grid;
  gap: 0;
}

.service-detail {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:first-child {
  border-top: 1px solid var(--line);
}

.service-detail h2 {
  margin-top: 8px;
  font-size: 2.2rem;
}

.service-detail ul {
  margin: 0;
  padding-left: 20px;
  color: var(--taupe);
}

.service-comparison {
  padding-top: 24px;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--taupe);
}

.comparison-grid,
.proof-strip,
.event-gallery-grid,
.area-grid,
.service-pill-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

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

.comparison-card {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.44);
}

.comparison-card.featured {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
  box-shadow: var(--shadow);
}

.comparison-card.featured p,
.comparison-card.featured li {
  color: rgba(255, 250, 242, 0.78);
}

.comparison-card h3 {
  font-size: 2rem;
}

.comparison-card h4 {
  margin: 0 0 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.comparison-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--taupe);
}

.service-proof {
  padding-top: 92px;
}

.proof-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.proof-card {
  display: grid;
  grid-template-rows: 360px auto auto;
  gap: 10px;
  color: var(--ivory);
}

.proof-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 6px;
}

.proof-card span {
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-card h3 {
  font-size: 1.35rem;
}

.service-areas {
  border-top: 1px solid var(--line);
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.area-grid span,
.area-grid a,
.service-pill-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--taupe);
  background: rgba(255, 255, 255, 0.38);
}

.area-grid a:hover {
  color: var(--ink);
  border-color: var(--champagne);
  background: rgba(184, 148, 98, 0.18);
}

.event-page .page-hero-media img {
  object-position: center;
}

.event-overview {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 58px;
  align-items: center;
}

.event-meta {
  display: grid;
  gap: 10px;
}

.event-meta span {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--champagne-dark);
  font-weight: 800;
  text-transform: uppercase;
}

.event-copy h2 {
  margin: 8px 0 18px;
}

.event-copy p:not(.eyebrow) {
  color: var(--taupe);
}

.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
}

.event-gallery-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
}

.event-gallery-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 858px;
}

.related-services {
  border-top: 1px solid var(--line);
}

.service-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-pill-grid a:hover {
  color: var(--ink);
  border-color: var(--champagne);
  background: rgba(184, 148, 98, 0.18);
}

.process-grid,
.value-grid,
.faq-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-step,
.value-card,
.faq-item {
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
}

.faq-item {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.36);
}

.process-step span {
  display: block;
  margin-bottom: 52px;
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.process-step h3,
.value-card h3,
.faq-item h3 {
  margin-bottom: 12px;
}

.feature-copy {
  max-width: 580px;
}

.feature-copy h2 {
  margin: 10px 0 18px;
}

.about-collage {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: clamp(360px, 38vw, 560px);
  gap: 16px;
}

.about-collage img {
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 34px;
  align-items: start;
}

.inquiry-form,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.48);
}

.inquiry-form {
  padding: 34px;
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading h2 {
  margin: 8px 0 12px;
}

.form-heading p:not(.eyebrow) {
  color: var(--taupe);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

label.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--ivory);
  color: var(--ink);
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 2px;
  color: var(--champagne-dark);
  font-weight: 700;
}

button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.contact-panel {
  padding: 30px;
  display: grid;
  gap: 24px;
  position: sticky;
  top: 110px;
}

.contact-panel h2 {
  font-size: 2rem;
}

.contact-panel a {
  font-weight: 800;
}

.legal-content {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.legal-content article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.legal-content article:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.legal-content p,
.legal-content li {
  color: var(--taupe);
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-note {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.64);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

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

@media (max-width: 1180px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .desktop-nav {
    gap: 16px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card:nth-child(3n) {
    border-right: 0;
  }

  .service-card:last-child {
    grid-column: span 3;
    min-height: auto;
  }

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

  .wedding-service-grid .service-card:nth-child(2n),
  .wedding-service-grid .service-card:last-child {
    grid-column: auto;
    border-right: 0;
  }

  .portfolio-strip,
  .resource-grid.large {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-tile.large,
  .portfolio-tile.tall {
    min-height: 390px;
  }
}

@media (max-width: 940px) {
  :root {
    --header-h: 74px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 5vw;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .brand {
    min-width: 0;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero,
  .page-hero {
    min-height: 760px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-shade,
  .page-hero-shade,
  .cta-shade {
    background: linear-gradient(180deg, rgba(18, 16, 14, 0.52), rgba(18, 16, 14, 0.84));
  }

  .hero-proof {
    bottom: 20px;
  }

  .section {
    padding: 72px 5vw;
  }

  .split-heading,
  .consultation-band {
    align-items: start;
    flex-direction: column;
  }

  .founder-story,
  .about-story,
  .trust-story,
  .split-feature,
  .testimonials,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .story-media,
  .feature-image,
  .testimonial-image {
    height: 460px;
  }

  .trust-story .story-media {
    height: 420px;
  }

  .resource-card img {
    height: 240px;
  }

  .value-list {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .trust-item:nth-child(2n) {
    border-right: 0;
  }

  .portfolio-grid,
  .guide-path,
  .process-grid,
  .value-grid,
  .faq-grid,
  .resource-grid,
  .checklist-section,
  .comparison-grid,
  .proof-strip,
  .event-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-step:nth-child(2n) {
    border-right: 0;
  }

  .guide-step:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .checklist-section {
    grid-template-columns: 1fr;
  }

  .checklist-image {
    min-height: 460px;
  }

  .event-overview {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .event-gallery-grid img:first-child {
    grid-column: auto;
    grid-row: auto;
    height: 420px;
  }

  .portfolio-card.wide,
  .portfolio-card.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 430px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-panel {
    position: static;
  }

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

@media (max-width: 680px) {
  .brand-copy {
    font-size: 0.9rem;
  }

  .brand-copy span {
    font-size: 0.62rem;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero,
  .page-hero {
    min-height: 700px;
  }

  .hero-inner {
    padding-top: 90px;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .service-grid,
  .portfolio-strip,
  .portfolio-grid,
  .guide-path,
  .process-grid,
  .value-grid,
  .faq-grid,
  .resource-grid,
  .resource-grid.large,
  .guide-grid,
  .checklist-section,
  .comparison-grid,
  .proof-strip,
  .event-gallery-grid,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .guide-step,
  .guide-step:nth-child(2n),
  .guide-step:nth-child(n + 3) {
    min-height: auto;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .checklist-list {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .proof-card img,
  .event-gallery-grid img,
  .event-gallery-grid img:first-child {
    height: 340px;
  }

  .service-card,
  .service-card:nth-child(3n),
  .service-card:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .about-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  blockquote p {
    font-size: 1.6rem;
  }

  .resource-card img {
    height: 220px;
  }

  .proof-micro-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    padding: 24px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
