/*
  B&B: Bar & Boujee (mobile bartending) and Boujee & Brim (hat and patch bar)
  Plain CSS, mobile first. Black and antique gold with cream sections,
  blush pink used sparingly as an accent.
*/

@font-face {
  font-family: "Pinyon Script";
  src: url("../fonts/pinyon-script-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-500-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-700-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #0e0d0b;
  --black-2: #16140f;
  --black-3: #221f18;
  --gold: #c9a45c;
  --gold-light: #e3c98a;
  --gold-deep: #9c7a3c;
  --gold-ink: #7a5c2a;      /* gold tone dark enough for small text on cream */
  --cream: #f4ece0;
  --cream-2: #faf5ec;
  --ink: #1c1a16;
  --muted-dark: #cfc6b8;    /* body copy on black */
  --muted-light: #4d463b;   /* body copy on cream */
  --blush: #e8b4b8;
  --blush-ink: #864850;     /* readable accent on cream */
  --line-dark: rgba(201, 164, 92, 0.38);
  --line-light: rgba(156, 122, 60, 0.45);

  --font-caps: var(--font-body);
  --font-serif: "Playfair Display", Didot, "Bodoni 72", Georgia, serif;
  --font-script: "Pinyon Script", "Great Vibes", "Snell Roundhand", cursive;
  --font-body: "Helvetica Neue", Arial, sans-serif;

  --container: 72rem;
  --radius: 2px;
  --media-radius: 0.75rem;
  --ease: 160ms ease;
  --focus: var(--gold-light);
}

/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  overflow-wrap: break-word;
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.6em;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.65rem, 5vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--gold);
}

h3 {
  font-size: 1.1rem;
}

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

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  display: block;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.skip-link {
  position: absolute;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1.1rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-caps);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container--narrow {
  max-width: 46rem;
}

/* Type helpers */

.eyebrow {
  margin: 0 0 0.9rem;
  font-family: var(--font-caps);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.script {
  margin: 0 0 1rem;
  font-family: var(--font-script);
  font-size: clamp(1.9rem, 6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
  text-wrap: balance;
  color: var(--gold-light);
}

.script--sm {
  font-size: clamp(1.6rem, 4.5vw, 2.1rem);
}

.lead {
  font-size: clamp(1.1rem, 2.6vw, 1.3rem);
  line-height: 1.6;
}

.muted {
  color: var(--muted-dark);
}

.placeholder {
  color: var(--blush-ink);
}

.section--dark .placeholder,
.section--dark-alt .placeholder,
.page-hero .placeholder {
  color: var(--blush);
}

.text-link {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(227, 201, 138, 0.5);
  text-underline-offset: 0.25em;
  transition: color var(--ease), text-decoration-color var(--ease);
}

.text-link:hover {
  color: var(--cream);
  text-decoration-color: currentColor;
}

/* Gold rule with a small diamond, like the Boujee & Brim sign */

.rule {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 15rem;
  margin: 1.1rem auto;
}

.rule::before,
.rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep) 20%, var(--gold-light));
}

.rule::after {
  background: linear-gradient(90deg, var(--gold-light), var(--gold-deep) 80%, transparent);
}

.rule span {
  width: 7px;
  height: 7px;
  flex: none;
  background: var(--gold);
  transform: rotate(45deg);
}

.rule--left {
  margin-left: 0;
}

.rule--left::before {
  flex: 0 0 1.5rem;
  background: var(--gold);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  max-width: 100%;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-caps);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease);
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--outline {
  background: transparent;
  color: var(--gold-light);
}

.btn--outline:hover {
  background: rgba(201, 164, 92, 0.14);
}

.btn--dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--gold-light);
}

.btn--dark:hover {
  background: var(--black-3);
  border-color: var(--gold-deep);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.btn-row--left {
  justify-content: flex-start;
}

@media (max-width: 479.98px) {
  .btn-row {
    gap: 0.75rem;
  }

  .btn-row .btn,
  .brand-card .btn {
    width: 100%;
  }
}

/* Sections */

.section {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
}

.section--dark {
  background: var(--black);
  color: var(--cream);
}

.section--dark-alt {
  background: var(--black-2);
  color: var(--cream);
}

.section--cream {
  --focus: var(--black);
  background: var(--cream);
  color: var(--ink);
}

.section--cream h2,
.section--cream h3 {
  color: var(--ink);
}

.section--cream .eyebrow {
  color: var(--gold-ink);
}

.section--cream .script {
  color: var(--blush-ink);
}

.section--cream .muted,
.section--cream p {
  color: var(--muted-light);
}

.section--cream .btn--outline {
  color: var(--ink);
  border-color: var(--gold-deep);
}

.section--cream .btn--outline:hover {
  background: rgba(156, 122, 60, 0.12);
}

.section--cream .text-link {
  color: var(--gold-ink);
  text-decoration-color: rgba(122, 92, 42, 0.5);
}

.section--cream .text-link:hover {
  color: var(--ink);
}

section[id] {
  scroll-margin-top: 6rem;
}

.section-head {
  max-width: 44rem;
  margin: 0 auto clamp(2rem, 5vw, 3.25rem);
  text-align: center;
}

.section-head p:last-child {
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 0;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split > * {
  min-width: 0;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
  }

  .split--reverse > :first-child {
    order: 2;
  }
}

.split.split--text-only {
  grid-template-columns: minmax(0, 1fr);
  max-width: 44rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  padding: 0.7rem 0;
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: clamp(0.4rem, 1.2vw, 0.75rem);
  min-height: 2.75rem;
  color: var(--gold);
  text-decoration: none;
}

.brand-mark {
  flex: none;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-mark .amp {
  font-size: 0.8em;
  color: var(--gold-light);
}

.amp {
  margin: 0 0.02em;
  font-style: italic;
  font-weight: 500;
}

.brand-sub {
  display: flex;
  flex-direction: column;
  padding-left: clamp(0.4rem, 1.2vw, 0.75rem);
  border-left: 1px solid var(--line-dark);
  font-family: var(--font-caps);
  font-size: clamp(0.625rem, 1.4vw, 0.75rem);
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--cream);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.6rem;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font-family: var(--font-caps);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}

.js .nav-toggle {
  display: inline-flex;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--ease), background-color var(--ease);
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -5px;
}

.nav-toggle-bars::after {
  top: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  transform: translateY(-5px) rotate(-45deg);
}

.site-nav {
  width: 100%;
}

.js .site-nav {
  display: none;
}

.js .site-header.is-open .site-nav {
  display: block;
  max-height: calc(100vh - 5.5rem);
  max-height: calc(100svh - 5.5rem);
  overflow-y: auto;
}

.nav-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0.4rem 0 0.8rem;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 0.8rem 0.25rem;
  border-top: 1px solid rgba(201, 164, 92, 0.18);
  font-family: var(--font-caps);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  color: var(--cream);
  transition: color var(--ease), background-color var(--ease), box-shadow var(--ease);
}

.nav-list a:hover {
  color: var(--gold-light);
}

.nav-list a[aria-current="page"] {
  color: var(--gold);
}

/* Keep six readable tabs on one row; match this breakpoint in main.js. */
@media (min-width: 1200px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .nav-toggle,
  .js .nav-toggle {
    display: none;
  }

  .site-nav,
  .js .site-nav {
    display: block;
    flex: 0 1 auto;
    min-width: 0;
    width: auto;
  }

  .nav-list {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem 1rem;
    padding: 0;
  }

  .nav-list a {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.6rem 0;
    border-top: 0;
    white-space: nowrap;
  }

  .nav-list a[aria-current="page"] {
    box-shadow: inset 0 -1px 0 var(--gold);
  }

  .nav-list a.nav-cta {
    padding: 0.55rem 1rem;
    border: 1px solid var(--gold);
    color: var(--gold-light);
  }

  .nav-list a.nav-cta:hover {
    background: rgba(201, 164, 92, 0.14);
  }

  .nav-list a.nav-cta[aria-current="page"] {
    background: var(--gold);
    color: var(--black);
    box-shadow: none;
  }
}

/* Home hero and the B&B brand lockup */

.hero {
  padding: clamp(2.5rem, 8vw, 5.5rem) 0;
  background: var(--black);
  text-align: center;
}

.hero-frame {
  display: grid;
  align-items: center;
  gap: 2rem;
}

.lockup {
  margin: 0;
  font-weight: 400;
  letter-spacing: normal;
}

.lockup-logo {
  width: min(100%, 29rem, 465px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.hero--home .lockup-logo-frame {
  display: inline-block;
  width: min(100%, 320px);
  padding: 0;
  background: transparent;
  border: 0;
  line-height: 0;
  vertical-align: top;
}

.hero--home .lockup-logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
}

/* The original combined artwork needs no added border or decorative frame. */
.hero--home .hero-frame,
.hero--home .lockup,
.hero--home .lockup-logo-frame,
.hero--home .lockup-logo {
  background: transparent;
  border: 0;
  outline: 0;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  clip-path: none;
  -webkit-mask: none;
  mask: none;
}

.hero--home .lockup-logo-frame,
.hero--home .lockup-logo {
  aspect-ratio: 1;
  border-radius: var(--media-radius);
}

.hero--home .hero-frame::before,
.hero--home .hero-frame::after,
.hero--home .lockup::before,
.hero--home .lockup::after,
.hero--home .lockup-logo-frame::before,
.hero--home .lockup-logo-frame::after {
  content: none;
}

.hero--home .hero-copy {
  max-width: 42rem;
  margin-inline: auto;
  min-width: 0;
}

.home-title {
  font-size: clamp(2rem, 5vw, 3.35rem);
  color: var(--cream);
}

.service-shortcuts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.service-shortcuts a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-weight: 600;
}

@media (min-width: 900px) {
  .hero--home .hero-frame {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.9fr);
    gap: 3rem;
    text-align: left;
  }

  .hero--home .lockup-logo-frame {
    width: min(100%, 380px);
  }

  .hero--home .btn-row,
  .hero--home .service-shortcuts {
    justify-content: flex-start;
  }

  .hero--home .hero-lead {
    margin-left: 0;
  }
}

.hero--home .hero-tagline span {
  display: inline-block;
}

.lockup-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2.5vw, 1.25rem);
  color: var(--gold);
}

.lockup-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(4.25rem, 19vw, 9.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--gold);
}

.lockup-mark .amp {
  font-size: 0.82em;
  color: var(--gold-light);
}

.lockup-martini {
  width: clamp(2.2rem, 9vw, 4.25rem);
  height: clamp(2.93rem, 12vw, 5.67rem);
}

.lockup-cap {
  --cap-fill: var(--cream);
  width: clamp(3rem, 12vw, 5.75rem);
  height: clamp(2.25rem, 9vw, 4.31rem);
  stroke-width: 1.8;
}

.lockup-laurel {
  display: none;
  width: clamp(1.75rem, 4vw, 2.6rem);
  height: clamp(4rem, 9.2vw, 6rem);
  color: var(--gold-deep);
  stroke-width: 1.4;
}

.lockup-laurel--right {
  transform: scaleX(-1);
}

@media (min-width: 560px) {
  .lockup-laurel {
    display: block;
  }
}

.lockup-names {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 0.6rem;
  max-width: 36rem;
  margin: 1.4rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--gold-deep), var(--gold-light), var(--gold-deep), transparent) 1;
}

@media (min-width: 420px) {
  .lockup-names {
    grid-template-columns: 1fr auto 1fr;
    gap: 0.5rem clamp(0.6rem, 3vw, 1.5rem);
  }
}

.lockup-name {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lockup-name-main {
  font-family: var(--font-caps);
  font-size: clamp(0.85rem, 2.9vw, 1.2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.lockup-name-sub {
  margin-top: 0.3rem;
  font-family: var(--font-body);
  font-size: clamp(0.58rem, 1.8vw, 0.7rem);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.lockup-heart {
  display: block;
  width: 0.9rem;
  height: 0.85rem;
  fill: var(--blush);
}

.hero-tagline {
  margin: 1.9rem 0 0.75rem;
  font-size: clamp(2.1rem, 6.5vw, 3.1rem);
}

.hero-lead {
  max-width: 48ch;
  margin: 0 auto;
  text-wrap: pretty;
  color: var(--muted-dark);
}

/* Inner page hero */

.page-hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  background: var(--black);
  border-bottom: 1px solid rgba(201, 164, 92, 0.22);
}

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

.page-hero--center > .container {
  max-width: 52rem;
}

.page-hero--center .lead {
  max-width: 38rem;
  margin-inline: auto;
  text-wrap: pretty;
}

.page-hero--full {
  display: grid;
  align-items: center;
  min-height: 62vh;
  min-height: 62svh;
}

.page--message {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}

.page--message main {
  display: grid;
  flex: 1;
}

.page-hero--full > .container {
  max-width: 46rem;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3rem);
  border: 1px solid var(--line-dark);
  outline: 1px solid rgba(201, 164, 92, 0.18);
  outline-offset: -7px;
}

.page-title {
  margin: 0;
  font-size: clamp(2.1rem, 8vw, 3.8rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--gold);
}

.page-hero .lead {
  color: var(--muted-dark);
}

.page-hero-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.page-hero-grid > * {
  min-width: 0;
}

.page-hero-copy {
  width: 100%;
  max-width: 38rem;
  margin-inline: auto;
}

.page-hero-grid > .photo-slot {
  width: min(100%, 18rem);
  align-self: center;
  margin-inline: auto;
}

.page-hero-grid > * {
  min-width: 0;
}

@media (min-width: 900px) {
  .page-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }
}

/* Client originals: hide only the combined card's bottom promotional strip; retain the hat viewport. */

.sign {
  margin-bottom: 1.75rem;
  padding: 0;
  background: var(--black);
  text-align: center;
}

.service-logo-panel {
  position: relative;
  width: min(100%, clamp(14rem, 26vw, 17rem));
  margin: 0 auto 1.5rem;
  overflow: hidden;
  line-height: 0;
  background: transparent;
  border: 0;
  border-radius: var(--media-radius);
  outline: 0;
  box-shadow: none;
}

.service-logo-panel:not(.service-logo-panel--brim) {
  aspect-ratio: 1056 / 856;
}

.service-logo-panel--brim {
  aspect-ratio: 1;
  border-radius: 50%;
}

.service-logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  margin: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  filter: none;
  clip-path: none;
  -webkit-mask: none;
  mask: none;
}

/* 800px source window at (260, 90), excluding the screenshot surround and pencil UI. */
.service-logo-panel--brim .service-logo {
  position: absolute;
  width: 155.375%;
  max-width: none;
  height: auto;
  left: -32.5%;
  top: -11.25%;
}

.service-logo-panel::before,
.service-logo-panel::after {
  content: none;
}

.service-logo-panel + .rule {
  display: none;
}

.sign .rule {
  margin: 0.9rem auto;
}

.sign-sub {
  margin: 0;
  font-family: var(--font-caps);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream);
}

.sign-script {
  margin: 0.8rem 0 0;
  font-size: clamp(1.7rem, 4vw, 2.25rem);
}

.page-hero-copy .lead {
  margin-bottom: 0.6rem;
  font-family: var(--font-body);
  color: var(--gold-light);
}

/* Responsive caps scale whole photos without cropping portrait subjects. */

.photo-slot {
  width: min(100%, 28rem);
  min-width: 0;
  align-self: center;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: var(--media-radius);
}

.photo-slot::before,
.photo-slot::after {
  content: none;
}

.photo-slot img {
  width: 100%;
  height: auto;
  max-width: 100%;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
  border-radius: var(--media-radius);
}

.photo-slot--portrait {
  width: min(100%, 21rem);
}

.photo-slot figcaption {
  padding-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  color: inherit;
}

/* Brand cards on the home page */

.brand-cards {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 66rem;
  margin-inline: auto;
}

@media (min-width: 760px) {
  .brand-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.brand-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--black);
  color: var(--cream);
  border: 1px solid var(--line-dark);
  border-radius: var(--media-radius);
}

.brand-card .photo-slot::before {
  display: none;
}

.brand-card .photo-slot {
  width: min(100%, 13.5rem);
}

.coordinator-summary {
  display: grid;
  gap: 1.25rem;
  max-width: 66rem;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line-light);
}

.coordinator-summary p {
  max-width: 60ch;
}

.coordinator-summary .btn {
  align-self: center;
  justify-self: start;
}

@media (min-width: 760px) {
  .coordinator-summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
  }
}

.brand-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(0.5rem, 2vw, 1.25rem) 1.25rem;
  text-align: center;
}

@media (min-width: 1120px) {
  .brand-card {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .brand-card .photo-slot {
    width: 100%;
  }

  .brand-card-body {
    min-width: 0;
    align-self: stretch;
    align-items: flex-start;
    padding: 0;
    text-align: left;
  }
}

.section--cream .brand-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.brand-card-sub {
  margin: 0.5rem 0 0;
  font-family: var(--font-caps);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.section--cream .brand-card-sub {
  color: var(--cream);
}

.section--cream .brand-card .script {
  margin: 0.9rem 0 0.6rem;
  font-size: clamp(1.7rem, 4.5vw, 2.2rem);
  color: var(--gold-light);
}

.section--cream .brand-card p {
  max-width: 42ch;
  color: var(--muted-dark);
}

.brand-card .btn {
  margin-top: auto;
}

.section--cream .brand-card {
  --focus: var(--gold-light);
}

.section--cream .brand-card .btn--outline {
  color: var(--gold-light);
  border-color: var(--gold);
}

.section--cream .brand-card .btn--outline:hover {
  background: rgba(201, 164, 92, 0.14);
}

/* Four step band */

.leopard-strip {
  height: 8px;
  background-color: #b48a52;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='40' viewBox='0 0 60 40'%3E%3Crect width='60' height='40' fill='%23b48a52'/%3E%3Cg fill='%237a5530'%3E%3Cellipse cx='11' cy='11' rx='3' ry='2.2'/%3E%3Cellipse cx='35' cy='25' rx='3.2' ry='2.4'/%3E%3Cellipse cx='50' cy='8' rx='2.4' ry='1.8'/%3E%3C/g%3E%3Cg fill='none' stroke='%23231a11' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 7c3-4 9-3 10 1'/%3E%3Cpath d='M5 13c1 3 5 5 8 3'/%3E%3Cpath d='M30 21c4-3 10-1 10 4'/%3E%3Cpath d='M29 28c2 3 7 4 10 1'/%3E%3Cpath d='M46 5c3-2 7 0 7 3'/%3E%3Cpath d='M45 11c1 3 5 4 8 2'/%3E%3Cpath d='M14 31c3-2 7 0 7 3'/%3E%3C/g%3E%3Cg fill='%23231a11'%3E%3Ccircle cx='24' cy='6' r='1.8'/%3E%3Ccircle cx='52' cy='30' r='2'/%3E%3Ccircle cx='21' cy='18' r='1.4'/%3E%3Ccircle cx='5' cy='34' r='1.6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 48px 32px;
}

.steps {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 560px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  min-width: 0;
  padding: 1.9rem 1.25rem 1.75rem;
  background: var(--black-2);
  border: 1px solid var(--line-dark);
  text-align: center;
}

.step-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold);
}

.step-icon {
  width: 3rem;
  height: 3rem;
  margin: 0.7rem auto 1rem;
  color: var(--gold);
}

.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream);
}

.step p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--muted-dark);
}

.step--finale {
  border-color: var(--gold);
}

.step--finale h3 {
  font-family: var(--font-script);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--gold-light);
}

.section--cream .step {
  background: var(--cream-2);
  border-color: var(--line-light);
}

.section--cream .step--finale {
  border-color: var(--gold-deep);
}

.section--cream .step-num,
.section--cream .step-icon {
  color: var(--gold-deep);
}

.section--cream .step h3 {
  color: var(--ink);
}

.section--cream .step p {
  color: var(--muted-light);
}

.section--cream .step--finale h3 {
  color: var(--gold-ink);
}

.band-foot {
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  text-align: center;
}

/* Event list */

.event-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  max-width: 54rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.event-list li {
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--gold-deep);
  background: var(--cream-2);
  font-family: var(--font-caps);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.event-list li.event-more {
  padding: 0 0.5rem;
  border: 0;
  background: none;
  font-family: var(--font-script);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--blush-ink);
}

.section--dark .event-list li,
.section--dark-alt .event-list li {
  background: transparent;
  border-color: var(--line-dark);
  color: var(--cream);
}

.section--dark .event-list li.event-more,
.section--dark-alt .event-list li.event-more {
  color: var(--blush);
}

/* Feature and card grids */

.features {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 640px) {
  .features--cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  min-width: 0;
  padding: 1.75rem 0.5rem 0.5rem;
  border-top: 1px solid var(--line-light);
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.1rem;
  color: var(--gold-deep);
}

.feature h3 {
  margin-bottom: 0.55rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.feature p {
  margin: 0;
}

/* Gallery */

.gallery {
  display: grid;
  align-items: start;
  gap: clamp(0.75rem, 1.7vw, 1.25rem);
  max-width: 22rem;
  margin-inline: auto;
}

.gallery .photo-slot {
  width: 100%;
  align-self: start;
}

.gallery-row {
  display: contents;
}

@media (max-width: 479.98px) {
  .page-hero-grid > .photo-slot {
    width: min(100%, 16rem);
  }
}

@media (min-width: 560px) {
  .gallery--brim {
    max-width: 42rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .gallery--bar {
    max-width: 58rem;
  }

  .gallery-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: inherit;
    align-items: start;
  }

  /* Natural 4:3 and 3:4 photos share a height without cropping or letterboxing. */
  .gallery-row--mixed {
    grid-template-columns: minmax(0, 16fr) minmax(0, 9fr) minmax(0, 9fr);
  }
}

@media (min-width: 1000px) {
  .gallery--brim {
    max-width: 64rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Coordinator profile and services */

.profile {
  display: grid;
  gap: 2.75rem;
  align-items: center;
  max-width: 60rem;
}

.profile > * {
  min-width: 0;
}

.profile-photo {
  width: min(100%, 17rem);
  margin-inline: auto;
}

/* Original coordinator portraits retain their full natural proportions. */
.coordinator-photo {
  margin-block: 0;
  padding: 0;
}

.coordinator-photo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
  border-radius: var(--media-radius);
}

.coordinator-photo--outdoor {
  width: min(100%, 21rem);
}

.split--coordinator {
  max-width: 60rem;
}

.coordinator-email {
  overflow-wrap: anywhere;
}

@media (min-width: 860px) {
  .profile {
    grid-template-columns: minmax(0, 17rem) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .split--coordinator {
    grid-template-columns: minmax(0, 1fr) minmax(0, 21rem);
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.profile--text-only {
  grid-template-columns: minmax(0, 1fr);
  max-width: 46rem;
  margin-inline: auto;
}

.profile-name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 500;
  letter-spacing: 0;
}

.profile-role {
  margin: 0.4rem 0 0;
  font-family: var(--font-caps);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.section--cream .profile-role {
  color: var(--gold-ink);
}

.service-list {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 760px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-list li {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--black-2);
  border: 1px solid var(--line-dark);
}

.service-list h3 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.service-list h3::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: none;
  align-self: flex-start;
  margin-top: 0.35em;
  background: var(--gold);
  transform: rotate(45deg);
}

.service-list p {
  margin: 0;
  color: var(--muted-dark);
}

/* The Small Stuff: compact discovery and text-led service groups. */

.small-stuff-discovery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  max-width: 66rem;
  margin: 2rem auto 0;
  padding: 1.5rem;
  border: 1px solid var(--line-light);
  background: var(--cream-2);
}

.small-stuff-discovery > div {
  flex: 1 1 28rem;
  min-width: 0;
}

.small-stuff-discovery h3 {
  font-size: 1.5rem;
}

.small-stuff-discovery p {
  max-width: 65ch;
  margin: 0;
}

.small-stuff-discovery > a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-weight: 600;
}

.small-stuff-group + .small-stuff-group {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-light);
}

.small-stuff-group h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.5rem;
}

.small-stuff-list {
  display: grid;
  gap: 1.5rem 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.small-stuff-list li {
  min-width: 0;
  padding-left: 1rem;
  border-left: 2px solid var(--gold-deep);
}

.small-stuff-list h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.small-stuff-list p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted-light);
}

@media (min-width: 760px) {
  .small-stuff-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Closing call to action */

.cta {
  text-align: center;
}

.cta h2 {
  font-size: clamp(1.8rem, 5vw, 2.7rem);
}

.cta p {
  max-width: 36rem;
  margin-inline: auto;
}

.section--cream.cta .script {
  color: var(--gold-ink);
}

.cta-phone {
  margin: 1.4rem 0 0;
  font-size: 0.97rem;
}

.cta-phone a {
  white-space: nowrap;
}

/* Inquiry form */

.inquire-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.inquire-grid > * {
  min-width: 0;
}

@media (min-width: 960px) {
  .inquire-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.9fr);
    grid-template-areas: "aside form";
    gap: 3rem;
  }

  .inquire-aside {
    grid-area: aside;
  }

  .inquire-grid > .form-card {
    grid-area: form;
  }
}

.inquire-aside {
  --focus: var(--gold-light);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--black);
  color: var(--cream);
  border: 1px solid var(--gold-deep);
  outline: 1px solid rgba(201, 164, 92, 0.18);
  outline-offset: -7px;
}

.inquire-aside > :last-child {
  margin-bottom: 0;
}

.section--cream .inquire-aside h2 {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: var(--gold);
}

.section--cream .inquire-aside p {
  color: var(--muted-dark);
}

.section--cream .inquire-aside .script {
  color: var(--gold-light);
}

.section--cream .inquire-aside .text-link {
  color: var(--gold-light);
  text-decoration-color: rgba(227, 201, 138, 0.5);
}

.section--cream .inquire-aside .text-link:hover {
  color: var(--cream);
}

.aside-phone {
  display: inline-block;
  margin: 0.2rem 0 1.4rem;
  font-family: var(--font-caps);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.aside-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.aside-list li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.35rem 0;
}

.aside-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: none;
  background: var(--gold);
  transform: translateY(-2px) rotate(45deg);
}

.form-card {
  padding: clamp(1.25rem, 3.5vw, 2.5rem);
  background: var(--cream-2);
  border: 1px solid var(--line-light);
  border-top-color: var(--gold-deep);
}

.form-intro {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 1.5rem 1.25rem;
}

.form-grid > * {
  min-width: 0;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

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

.field {
  margin: 0;
}

.field-label {
  display: block;
  margin: 0 0 0.45rem;
  padding: 0;
  font-family: var(--font-caps);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink);
}

.req {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--blush-ink);
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  background: #fff;
  color: var(--ink);
  border: 1px solid #b6a585;
  border-radius: var(--radius);
  font: inherit;
  font-size: 1rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--gold-deep);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 1px;
  border-color: var(--gold-deep);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field textarea::placeholder {
  color: var(--muted-light);
  opacity: 0.8;
}

fieldset.field {
  min-width: 0;
  padding: 0;
  border: 0;
}

.checks {
  display: grid;
  gap: 0.6rem;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 0.95rem;
  background: #fff;
  border: 1px solid #d9ccb4;
  border-radius: var(--radius);
  cursor: pointer;
  line-height: 1.45;
  transition: border-color var(--ease), background-color var(--ease);
}

.check:hover {
  border-color: var(--gold-deep);
}

.check:has(input:checked) {
  background: #fff8ea;
  border-color: var(--gold-deep);
}

.field .check input {
  width: 1.2rem;
  height: 1.2rem;
  min-height: 0;
  flex: none;
  margin: 0.12rem 0 0;
  padding: 0;
  accent-color: var(--gold-deep);
}

.check strong {
  font-weight: 600;
}

.form-actions {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.form-actions .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .form-actions .btn {
    width: auto;
    min-width: 14rem;
  }
}

.form-note {
  margin: 0.9rem 0 0;
  font-size: 0.88rem;
}

/* Footer */

.site-footer {
  background: var(--black);
  color: var(--muted-dark);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: 2.25rem 2rem;
  padding: 3.5rem 0 2.5rem;
}

.footer-grid > * {
  min-width: 0;
}

@media (min-width: 560px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.9fr);
  }
}

.footer-mark {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.footer-lockup .script {
  margin: 0.6rem 0 0;
  max-width: 14rem;
  font-size: 1.75rem;
}

.footer-heading {
  margin: 0 0 1rem;
  font-family: var(--font-caps);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-brand-name {
  margin: 0 0 1rem;
  font-family: var(--font-caps);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream);
}

.footer-brand-name span {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  padding: 0;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  text-decoration: none;
  transition: color var(--ease);
}

.business-email {
  overflow-wrap: anywhere;
}

.footer-links .business-email {
  max-width: 100%;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

@media (max-width: 559.98px) {
  .footer-grid > nav .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
  }
}

.footer-bottom {
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid rgba(201, 164, 92, 0.2);
  font-size: 0.82rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

/* Essential information uses readable sentence-case sans serif throughout. */
.skip-link,
.eyebrow,
.btn,
.brand-sub,
.nav-toggle,
.nav-list a,
.sign-sub,
.brand-card-sub,
.profile-role,
.field-label,
.footer-heading,
.footer-brand-name,
.footer-brand-name span,
.event-list li {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.brand-sub {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
}

.eyebrow,
.footer-brand-name span {
  font-size: 0.9375rem;
}

.nav-list a {
  font-weight: 600;
}

.nav-list a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.nav-list a.nav-cta {
  padding: 0.7rem 1rem;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}

.nav-list a.nav-cta:hover {
  background: var(--gold-light);
  color: var(--black);
}

.sign-sub {
  font-size: 1.25rem;
}

.service-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--cream);
}

.brand-card-sub {
  margin-bottom: 1rem;
}

.coordinator-summary h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.step h3,
.step--finale h3,
.service-list h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

.section--cream .brand-card h3 {
  letter-spacing: 0;
}

.footer-brand-name span {
  font-weight: 400;
}

.steps--planning {
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 760px) {
  .steps--planning {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
