@keyframes hero-zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background: #f2ebe3;
}

.hero__min {
  min-height: 100dvh;
  width: 100%;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  z-index: 0;
  inset: -12%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.hero__bg-inner {
  position: absolute;
  inset: 0;
  /*background: #f2ebe3 url("../images/hero-bakery.jpg") center / cover no-repeat;*/
  background: #f2ebe3;
  transform-origin: 50% 50%;
  will-change: transform;
  animation: hero-zoom-in 10s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg {
    inset: 0;
    transform: none;
  }

  .hero__bg-inner {
    animation: none;
  }
}

.hero__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(255, 255, 255, 0.52);
  pointer-events: none;
}

.hero-slider {
  position: absolute;
  z-index: 2;
  left: var(--edge);
  right: var(--edge);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 2vw, 1.25rem);
  max-width: min(72rem, 100%);
  margin-inline: auto;
  width: auto;
}

.hero-slider__tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: clamp(0.65rem, 1.4vw, 1.1rem);
  background: #ebe9e6;
}

.hero-slider__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0;
  transition:
    opacity 0.85s ease,
    filter 0.55s ease;
  pointer-events: none;
}

.hero-slider__img.is-active {
  opacity: 1;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .hero-slider__tile:hover .hero-slider__img.is-active {
    filter: grayscale(0);
  }
}

@media (hover: none) {
  .hero-slider__img.is-active {
    filter: grayscale(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__img {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 36rem) {
  .hero-slider {
    grid-template-columns: 1fr;
    max-width: min(20rem, 100%);
    gap: 0.65rem;
  }

  .hero-slider__tile {
    aspect-ratio: 16 / 10;
  }
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: var(--edge);
  bottom: var(--edge);
  max-width: min(94vw, 38rem);
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: clamp(0.72rem, 1.35vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}

.title {
  margin: 0;
  font-family: Roboto, system-ui, sans-serif;
  font-size: clamp(3.35rem, 12.5vw, 7.25rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: capitalize;
}

.story {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 12vw, 8rem) var(--edge);
  background: #f0eeeb;
}

.story__inner {
  max-width: min(72rem, 100%);
  margin: 0 auto;
  text-align: center;
}

.story__text {
  margin: 0 auto;
  max-width: 42rem;
  font-family: Roboto, system-ui, sans-serif;
  font-size: clamp(0.72rem, 1.45vw, 0.95rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.story__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1rem);
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.story__cta {
  margin: 0;
  display: inline-block;
  padding: 0.85rem 1.35rem;
  border: 2px solid #1a1a1a;
  border-radius: 0;
  background: transparent;
  font-family: Roboto, system-ui, sans-serif;
  font-size: clamp(0.68rem, 1.2vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.story__cta:hover {
  background: #1a1a1a;
  color: #fff;
}

.story__cta:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 4px;
}

.story-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 2.2vw, 1.35rem);
  width: 100%;
  max-width: 100%;
  margin: clamp(1.75rem, 4.5vw, 2.75rem) auto 0;
  text-align: left;
}

.story-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: clamp(0.2rem, 0.5vw, 0.35rem);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.story-pillar:hover {
  background: #dcd0c4;
  border-color: rgba(26, 26, 26, 0.08);
}

.story-pillar__media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ebe9e6;
}

.story-pillar__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition:
    filter 0.32s ease,
    transform 0.32s ease;
}

@media (hover: hover) and (pointer: fine) {
  .story-pillar:hover .story-pillar__img,
  .story-pillar:focus-visible .story-pillar__img {
    filter: grayscale(0);
    transform: scale(1.03);
  }
}

@media (hover: none) {
  .story-pillar__img {
    filter: grayscale(0);
  }
}

.story-pillar:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 3px;
}

.story-pillar__title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(3.5rem, 8vw, 4.75rem);
  width: 100%;
  padding: clamp(0.85rem, 2vw, 1.15rem) clamp(0.75rem, 1.8vw, 1.1rem);
  font-family: Roboto, system-ui, sans-serif;
  font-size: clamp(0.68rem, 1.35vw, 0.82rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 26rem) {
  .story-pillars {
    grid-template-columns: 1fr;
  }
}

.founder {
  padding: clamp(3.5rem, 9vw, 6.5rem) var(--edge) clamp(4rem, 10vw, 7rem);
  background: #f2efe9;
}

.founder__inner {
  max-width: min(72rem, 100%);
  margin: 0 auto;
}

.founder__shell {
  display: grid;
  /* 1/3 imagen · 2/3 texto */
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.founder__media-link {
  display: block;
  grid-column: 1;
  grid-row: 1;
  justify-self: stretch;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: clamp(0.35rem, 0.8vw, 0.5rem);
  text-decoration: none;
  color: inherit;
}

.founder__media-link:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 4px;
}

.founder__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.55s ease;
}

@media (hover: hover) and (pointer: fine) {
  .founder__media-link:hover .founder__photo,
  .founder__media-link:focus-visible .founder__photo {
    filter: grayscale(0);
  }
}

@media (hover: none) {
  .founder__photo {
    filter: grayscale(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .founder__photo {
    transition: none;
  }
}

.founder__card {
  grid-column: 2;
  grid-row: 1;
  margin-left: clamp(-3rem, -6vw, -1.5rem);
  align-self: center;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 3.5vw, 2.75rem);
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 18px 48px rgba(26, 26, 26, 0.06);
  z-index: 1;
}

.founder__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.1rem;
}

.founder__eyebrow {
  margin: 0;
  flex-shrink: 0;
  font-size: clamp(0.62rem, 1.1vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}

.founder__eyebrow-line {
  flex: 1;
  min-width: 2rem;
  height: 1px;
  background: rgba(26, 26, 26, 0.2);
}

.founder__name {
  margin: 0 0 clamp(1rem, 2.5vw, 1.35rem);
  font-family: Roboto, system-ui, sans-serif;
  font-size: clamp(1.65rem, 3.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.founder__bio {
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  max-width: none;
  font-family: Roboto, system-ui, sans-serif;
  font-size: clamp(0.9rem, 0.35vw + 0.82rem, 1.04rem);
  font-weight: 400;
  line-height: 1.72;
  color: var(--text);
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

.founder__cta-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.founder__cta {
  font-size: clamp(0.65rem, 1vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.founder__cta:hover {
  color: var(--muted);
  border-color: transparent;
}

.founder__cta:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 4px;
}

.founder__cta-arrow {
  flex-shrink: 0;
  color: var(--text);
  opacity: 0.85;
}

@media (max-width: 52rem) {
  .founder__shell {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .founder__media-link {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    width: min(100%, 22rem);
    margin-bottom: 0;
  }

  .founder__card {
    grid-column: 1;
    grid-row: 2;
    margin-left: 0;
    margin-top: clamp(1.25rem, 3vw, 1.75rem);
  }
}

/* —— Locations (full bleed, intro bar + grid) —— */
.locations {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: clip;
}

.locations__intro {
  width: 100%;
  background: #fff;
  padding: clamp(1.75rem, 4.5vw, 3.25rem) var(--edge);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.locations__title {
  margin: 0;
  font-family: Roboto, system-ui, sans-serif;
  font-size: clamp(2.85rem, 11vw, 6.25rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--text);
  text-transform: capitalize;
}

/* Mosaic: tight gutters (reference), image tiles + one text CTA */
.locations-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
}

.location-tile {
  --tile-pad: clamp(1rem, 2.2vw, 1.35rem);
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  outline: none;
}

.location-tile:focus-visible {
  z-index: 2;
}

.location-tile__flip {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  perspective: 1400px;
}

.location-tile__inner {
  position: relative;
  width: 100%;
  min-height: clamp(10rem, 22vw, 16rem);
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 4 / 3;
}

.location-tile__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.location-tile__face--front {
  background: #e8e6e3;
}

.location-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}

.location-tile__face--back {
  padding: var(--tile-pad);
  background: #1a1a1a;
  color: #f5f5f3;
  transform: rotateY(180deg);
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}

.location-tile__heading {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(3.5rem, 8vw, 4.75rem);
  width: 100%;
  padding: clamp(0.85rem, 2vw, 1.15rem) clamp(0.75rem, 1.8vw, 1.1rem);
  font-family: Roboto, system-ui, sans-serif;
  font-size: clamp(0.68rem, 1.35vw, 0.82rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
  color: var(--text);
  background: #fff;
}

.location-tile__back-heading {
  margin: 0;
  max-width: 100%;
  font-family: Roboto, system-ui, sans-serif;
  font-size: clamp(0.68rem, 1.35vw, 0.82rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5f5f3;
}

.location-tile__address {
  margin: 0;
  font-family: Roboto, system-ui, sans-serif;
  font-size: clamp(0.68rem, 1.15vw, 0.8rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(245, 245, 243, 0.88);
  max-width: 28ch;
}

.location-tile__phone {
  margin: 0;
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
}

.location-tile__phone a {
  color: #f0b534;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.location-tile__phone a:hover {
  text-decoration: underline;
}

.location-tile__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  font-size: clamp(0.58rem, 0.95vw, 0.65rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, color 0.2s ease;
}

.location-tile__cta:hover {
  background: #f0b534;
  color: #1a1a1a;
}

.location-tile__cta:focus-visible {
  outline: 2px solid #f0b534;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .location-tile:hover .location-tile__inner,
  .location-tile:focus-within .location-tile__inner {
    transform: rotateY(180deg);
  }

  .location-tile:hover,
  .location-tile:focus-within {
    z-index: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-tile__inner {
    transition-duration: 0.01ms;
  }

  @media (hover: hover) and (pointer: fine) {
    .location-tile:hover .location-tile__inner,
    .location-tile:focus-within .location-tile__inner {
      transform: none;
    }
  }

  .location-tile__face--back {
    opacity: 0;
    transform: none;
    transition: opacity 0.2s ease;
    z-index: 0;
    pointer-events: none;
  }

  .location-tile:hover .location-tile__face--back,
  .location-tile:focus-within .location-tile__face--back {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
  }

  .location-tile:hover .location-tile__face--front,
  .location-tile:focus-within .location-tile__face--front {
    opacity: 0;
    z-index: 0;
    pointer-events: none;
  }

  .location-tile__face--front {
    transition: opacity 0.2s ease;
    z-index: 1;
  }
}

/* Touch / coarse pointer: stack photo, title, details (no flip) */
@media (hover: none), (pointer: coarse) {
  .location-tile {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "title"
      "detail";
  }

  .location-tile__flip {
    display: contents;
  }

  .location-tile__inner {
    display: contents;
    transform: none !important;
    aspect-ratio: auto;
    min-height: 0;
  }

  .location-tile__face {
    position: relative;
    inset: auto;
    transform: none !important;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
  }

  .location-tile__face--front {
    grid-area: media;
    aspect-ratio: 4 / 3;
  }

  .location-tile__heading {
    grid-area: title;
  }

  .location-tile__face--back {
    grid-area: detail;
    min-height: 10rem;
  }

  .location-tile__back-heading {
    display: none;
  }
}

/* Static text tile (8th cell), reference-style */
.location-tile--static {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  min-height: clamp(10rem, 22vw, 16rem);
  aspect-ratio: 4 / 3;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  background: #e4e2df;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.location-tile--static:hover {
  background: #dcd9d5;
}

.location-tile--static:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 3px;
  z-index: 2;
}

.location-tile--static__text {
  margin: 0;
  font-family: Roboto, system-ui, sans-serif;
  font-size: clamp(0.78rem, 1.25vw, 0.95rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 36ch;
}

.location-tile--static__cta {
  font-size: clamp(0.58rem, 0.95vw, 0.65rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: inherit;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
}

@media (hover: none), (pointer: coarse) {
  .location-tile--static {
    aspect-ratio: auto;
    min-height: 0;
  }
}

@media (max-width: 60rem) {
  .locations-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 32rem) {
  .locations-mosaic {
    grid-template-columns: 1fr;
  }
}

/* —— Experiences (two wide cards → events-installations & workshops) —— */
.experiences {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: clip;
  --exp-ink: var(--text);
  --exp-muted: var(--muted);
  --exp-surface: #fff;
  --exp-accent: #bd3f2d;
  --exp-accent-alt: #f0b534;
}

.experiences__intro {
  width: 100%;
  background: #fff;
  padding: clamp(1.75rem, 4.5vw, 3.25rem) var(--edge);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.experiences__title {
  margin: 0 0 clamp(0.85rem, 2vw, 1.25rem);
  font-family: Roboto, system-ui, sans-serif;
  font-size: clamp(2.85rem, 11vw, 6.25rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--text);
  text-transform: capitalize;
}

.experiences__lede {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(0.88rem, 1.65vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--exp-muted);
}

.experiences__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
  max-width: min(60rem, 100%);
  margin-inline: auto;
  padding: clamp(1.25rem, 3vw, 2rem) var(--edge) clamp(2.5rem, 6vw, 4rem);
  background: #f5f5f3;
}

.experience-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: clamp(1rem, 2.5vw, 1.5rem);
  background: var(--exp-surface);
  color: var(--exp-ink);
  text-align: left;
  text-decoration: none;
  box-shadow:
    0 1px 0 rgba(26, 26, 26, 0.06),
    0 12px 40px rgba(26, 26, 26, 0.06);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.experience-card:hover {
  box-shadow:
    0 1px 0 rgba(26, 26, 26, 0.08),
    0 18px 48px rgba(26, 26, 26, 0.1);
  transform: translateY(-2px);
}

.experience-card:focus-visible {
  outline: 2px solid var(--exp-accent);
  outline-offset: 4px;
}

.experience-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ebe9e6;
}

.experience-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition:
    filter 0.32s ease,
    transform 0.32s ease;
}

@media (hover: hover) and (pointer: fine) {
  .experience-card:hover .experience-card__media img,
  .experience-card:focus-visible .experience-card__media img {
    filter: grayscale(0);
    transform: scale(1.03);
  }
}

@media (hover: none) {
  .experience-card__media img {
    filter: grayscale(0);
  }
}

.experience-card__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(1.15rem, 2.5vw, 2rem) clamp(1.1rem, 2.4vw, 1.85rem);
}

.experience-card__eyebrow {
  margin: 0 0 0.4rem;
  font-size: clamp(0.58rem, 1vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--exp-muted);
}

.experience-card__title {
  margin: 0 0 0.65rem;
  font-family: Roboto, system-ui, sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--exp-ink);
}

.experience-card__desc {
  margin: 0 0 clamp(1rem, 2.2vw, 1.35rem);
  max-width: none;
  font-size: clamp(0.78rem, 1.25vw, 0.9rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--exp-muted);
}

.experience-card__cta {
  margin-top: auto;
  align-self: flex-start;
  font-size: clamp(0.6rem, 1vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--exp-accent);
  transition: color 0.2s ease;
}

.experience-card:hover .experience-card__cta {
  color: var(--exp-accent-alt);
}

.experience-card__cta-arrow {
  margin-left: 0.35em;
}

@media (max-width: 56rem) {
  .experiences__grid {
    grid-template-columns: 1fr;
    max-width: min(32rem, 100%);
  }
}

/* —— Home newsletter (Mailchimp embed) —— */
.home-newsletter {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #1a1a1a;
  color: #f5f5f3;
}

.home-newsletter__inner {
  max-width: min(36rem, 100%);
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 4.5rem) var(--edge);
  text-align: center;
}

.home-newsletter__title {
  margin: 0 0 0.85rem;
  font-family: Roboto, system-ui, sans-serif;
  font-size: clamp(1.85rem, 5.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}

.home-newsletter__lede {
  margin: 0 0 clamp(1.35rem, 3vw, 2rem);
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  line-height: 1.6;
  color: rgba(245, 245, 243, 0.78);
}

.home-newsletter__form {
  margin: 0 auto;
  justify-content: center;
  max-width: 26rem;
}

.home-newsletter__input {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.home-newsletter .site-footer__newsletter-btn {
  background: #fff;
  color: #1a1a1a;
}

.home-newsletter .site-footer__newsletter-btn:hover {
  opacity: 0.9;
}

.home-newsletter__fallback {
  color: rgba(245, 245, 243, 0.88);
}

.home-newsletter__fallback a {
  color: #fff;
}
