/* ============================================
   Events by Steph — Design Tokens
   Coastal North Shore palette: sea-fog paper,
   harbor-pine ink, dusty hydrangea accent,
   one warm brass note for calls to action.
   ============================================ */

:root {
  --ink: #2F2A2E;
  --ink-soft: #6E6670;
  --paper: #FFFBF6;
  --paper-deep: #FBEEE8;
  --white: #FFFFFF;
  --accent: #C97D89;
  --accent-deep: #AD5F6E;
  --brass: #C7995E;
  --brass-deep: #A87B45;
  --line: #EFDDD4;

  --font-display: 'Fraunces', serif;
  --font-body: 'Outfit', sans-serif;

  --container: 1120px;
  --radius: 10px;
  --transition: 220ms ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

img, svg {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ----------- Typography ----------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

h1 { font-size: 2.125rem; }
h2 { font-size: 2.125rem; }
h3 { font-size: 1.4rem; font-weight: 500; }

em {
  font-style: italic;
  color: var(--accent-deep);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--brass);
}

.lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 540px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ----------- Buttons ----------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--brass-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--brass);
  color: var(--brass-deep);
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.section.dark .section-head {
  margin-bottom: 0;
}

.section.dark .btn-primary {
  background: var(--brass-deep);
  color: var(--paper);
}

.section.dark .btn-primary:hover {
  background: var(--brass);
}

/* ----------- Header / Nav ----------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 246, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo-accent {
  font-style: italic;
  color: var(--brass-deep);
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--brass);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}

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

/* ----------- Hero ----------- */

.hero {
  padding: 0;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.hero-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px;
  padding-left: max(28px, calc((100vw - 1120px) / 2 + 28px));
}

.hero-split-text > * {
  max-width: 480px;
}

.hero-split-image {
  position: relative;
  overflow: hidden;
}

.hero-split-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.hero-split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    var(--paper) 0%,
    rgba(255, 251, 246, 0.85) 6%,
    rgba(255, 251, 246, 0) 26%
  );
}

/* Simple hero variant for text-only intro pages (services/about/contact) */

.hero-simple {
  padding: 72px 0 48px;
}

/* ----------- Sections ----------- */

.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--paper-deep);
}

.section.dark {
  background: var(--ink);
  color: var(--paper);
}

.section.dark h2,
.section.dark h3 {
  color: var(--paper);
}

.section.dark .lede {
  color: rgba(255, 251, 246, 0.78);
}

/* ----------- Service area pills ----------- */

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--white);
}

.area-pill.state {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  font-weight: 500;
}

/* ----------- Cards grid ----------- */

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

.card-grid.cards-2up {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--brass);
}

.card-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 14px;
  display: block;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brass-deep);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
}

/* ----------- Process steps ----------- */

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-step {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.process-index {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brass);
  display: block;
  margin-bottom: 14px;
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.service-photo {
  aspect-ratio: 16 / 6;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}

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

@media (max-width: 720px) {
  .service-photo {
    aspect-ratio: 16 / 10;
  }

  h1, h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

/* ----------- Service detail blocks (services.html) ----------- */

.service-block {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-block h2 {
  margin-bottom: 14px;
}

.included-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.included-list li:first-child {
  border-top: none;
}

.included-list li::before {
  content: '—';
  color: var(--brass);
  flex-shrink: 0;
}

/* ----------- Process checklist (what a coordinator does) ----------- */

.checklist-phase {
  margin-bottom: 36px;
}

.checklist-phase-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent-deep);
  margin-bottom: 14px;
}

.process-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

.process-checklist li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.process-checklist li::before {
  content: '—';
  color: var(--brass);
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .process-checklist {
    grid-template-columns: 1fr;
  }
}

/* ----------- About page ----------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.value-list {
  display: grid;
  gap: 24px;
  margin-top: 16px;
}

.value-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ----------- Contact page ----------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brass);
}

.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-direct {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.contact-direct a {
  color: var(--brass-deep);
  font-weight: 500;
}

.form-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 14px;
}

.required-mark {
  color: #B3445A;
}

.form-error {
  display: none;
  font-size: 0.86rem;
  font-weight: 500;
  color: #B3445A;
  margin-top: 14px;
}

.form-error.visible {
  display: block;
}

.form-field.field-invalid input,
.form-field.field-invalid select,
.form-field.field-invalid textarea {
  border-color: #B3445A;
}

/* ----------- Footer ----------- */

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 28px;
}

.footer-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-logo {
  color: var(--paper);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 251, 246, 0.7);
  max-width: 320px;
}

.footer-meta {
  text-align: right;
}

.footer-area {
  font-size: 0.85rem;
  color: rgba(255, 251, 246, 0.7);
  margin-bottom: 8px;
}

.footer-email {
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-location {
  font-size: 0.85rem;
  color: rgba(255, 251, 246, 0.7);
  margin-top: 10px;
}

.footer-link-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  margin-top: 10px;
}

.footer-link-row svg {
  flex-shrink: 0;
  color: var(--brass);
}

.footer-copy {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 28px 0;
  border-top: 1px solid rgba(255, 251, 246, 0.15);
  font-size: 0.78rem;
  color: rgba(255, 251, 246, 0.5);
}

.footer-copy a {
  color: rgba(255, 251, 246, 0.7);
}

.footer-copy a:hover {
  color: var(--paper);
}

.policy-content a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-content a:hover {
  color: var(--accent);
}

.policy-content h3 {
  margin-top: 36px;
  margin-bottom: 10px;
}

.policy-content h3:first-of-type {
  margin-top: 0;
}

.policy-content p {
  line-height: 1.7;
  margin-bottom: 4px;
}

.policy-content ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-content ul li {
  line-height: 1.7;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}

.policy-content ul li::before {
  content: '—';
  color: var(--brass);
  position: absolute;
  left: 0;
}

.policy-content ul li strong {
  color: var(--ink);
}

/* ----------- Reveal on scroll ----------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

/* ----------- Photo / media components ----------- */

.section-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.section-media.media-right .media-text {
  order: 1;
}

.section-media.media-right .media-photo {
  order: 2;
}

.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(47, 42, 46, 0.4);
}

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

.photo-frame.ratio-tall {
  aspect-ratio: 3 / 4;
}

.photo-frame.ratio-wide {
  aspect-ratio: 5 / 4;
}

/* ---- TEST: Collage styles for homepage 'Stress Less' section ---- */

.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 5 / 4;
}

.collage-grid .photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(47, 42, 46, 0.4);
  aspect-ratio: auto;
}

.collage-offset {
  position: relative;
  aspect-ratio: 5 / 4;
}

.collage-offset .photo-frame-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 78%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(47, 42, 46, 0.4);
  z-index: 1;
}

.collage-offset .photo-frame-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 42%;
  height: 42%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(47, 42, 46, 0.5);
  z-index: 2;
  border: 4px solid var(--paper);
}

.collage-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  aspect-ratio: 5 / 4;
}

.collage-strip .photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(47, 42, 46, 0.4);
  aspect-ratio: auto;
}

.card-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.card:hover .card-photo img {
  transform: scale(1.04);
}

.accent-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(47, 42, 46, 0.4);
}

.accent-photo img {
  width: 100%;
  display: block;
}

/* ----------- Responsive ----------- */

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.section-media.compact-photo {
  grid-template-columns: 300px 1fr;
}

@media (max-width: 900px) {
  .section-media,
  .section-media.compact-photo {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-media.media-right .media-text,
  .section-media.media-right .media-photo {
    order: initial;
  }

  .photo-frame.ratio-tall,
  .photo-frame.ratio-wide {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-split-text {
    padding: 56px 28px 32px;
    max-width: none;
  }

  .hero-split-text > * {
    max-width: none;
  }

  .hero-split-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-split-image img {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .hero-split-image a {
    position: static !important;
    display: block;
    width: 100%;
  }

  .hero-split-image::before {
    content: none;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .service-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 24px 28px 28px;
  }

  .site-header.nav-open .nav-cta {
    display: inline-flex;
    margin-top: 4px;
  }

  .card-grid,
  .card-grid.cards-2up,
  .process-list {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }

  .footer-link-row {
    justify-content: flex-start;
  }

  .form-row-double {
    grid-template-columns: 1fr;
  }
}

/* ----------- FAQ Accordion ----------- */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(47, 42, 46, 0.12);
  margin-bottom: 6px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 32px 28px 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 28px;
  font-size: 1.3rem;
  color: var(--brass-deep);
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  color: var(--ink-soft);
  padding-bottom: 24px;
  padding-right: 32px;
  max-width: 640px;
}

/* ----------- Bio Collage (About page) ----------- */

.bio-collage {
  position: relative;
  min-height: 480px;
}

.bio-collage .photo-frame {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  border: 6px solid var(--paper);
  box-shadow: 0 20px 40px -20px rgba(47, 42, 46, 0.45);
}

.bio-collage .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bio-collage-photo-1 {
  top: 0;
  left: 0;
  width: 62%;
  height: 90%;
  transform: rotate(-2deg);
  z-index: 1;
}

.bio-collage-photo-2 {
  top: 4%;
  right: 0;
  width: 46%;
  height: 46%;
  transform: rotate(3deg);
  z-index: 2;
}

.bio-collage-photo-3 {
  bottom: 0;
  right: 6%;
  width: 40%;
  height: 42%;
  transform: rotate(-4deg);
  z-index: 3;
}

@media (max-width: 720px) {
  .bio-collage {
    min-height: 340px;
  }

  .bio-collage-photo-1 {
    width: 58%;
    height: 100%;
  }

  .bio-collage-photo-2 {
    width: 50%;
    height: 38%;
  }

  .bio-collage-photo-3 {
    width: 44%;
    height: 34%;
  }
}

/* ----------- Cookie consent banner ----------- */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  max-width: 640px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 20px 40px -12px rgba(47, 42, 46, 0.45);
}

.cookie-banner-text {
  font-size: 0.9rem;
  color: rgba(255, 251, 246, 0.85);
  margin: 0;
  flex: 1 1 260px;
}

.cookie-banner-text a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.cookie-banner .btn-ghost {
  border-color: rgba(255, 251, 246, 0.35);
  color: var(--paper);
}

.cookie-banner .btn-ghost:hover {
  border-color: var(--paper);
  color: var(--paper);
}

@media (max-width: 560px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-banner-text {
    flex: none;
  }

  .cookie-banner-actions {
    justify-content: center;
  }
}
