:root {
  --paper: #f3ebdd;
  --paper-light: #fbf7ef;
  --ink: #25211f;
  --muted: #6d625c;
  --terracotta: #b95638;
  --terracotta-dark: #8f3f28;
  --wine: #6e1821;
  --line: rgba(72, 55, 45, 0.18);
  --shadow: 0 24px 70px rgba(62, 38, 27, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --page-width: 1240px;
  --page-gutter: 44px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  z-index: 20;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  color: white;
  background: var(--wine);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 42px;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 18px var(--page-gutter);
  background: rgba(243, 235, 221, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: grayscale(1) contrast(0.75);
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0.18em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.site-header .desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-group {
  position: relative;
}

.nav-group-control {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-main-link,
.nav-toggle {
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-main-link {
  padding: 14px 4px 14px 12px;
}

.nav-toggle {
  display: grid;
  min-width: 32px;
  min-height: 44px;
  padding: 0 11px 0 3px;
  place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  color: var(--terracotta);
  font-size: 16px;
  line-height: 1;
  transition: transform 180ms ease;
}

.nav-group.is-open .nav-toggle span {
  transform: rotate(180deg);
}

.nav-group.is-current .nav-group-control::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  background: var(--terracotta);
  content: "";
}

.nav-main-link:hover,
.nav-main-link:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-group.is-open .nav-group-control {
  color: var(--terracotta-dark);
}

.nav-main-link:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 1px;
}

.nav-popover[hidden] {
  display: none;
}

.nav-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 90;
  width: 310px;
  padding: 20px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-top: 3px solid var(--terracotta);
  box-shadow: 0 22px 55px rgba(55, 35, 25, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  visibility: hidden;
  transition:
    opacity 220ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 240ms;
}

.nav-group.is-open .nav-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.nav-group:last-child .nav-popover {
  right: 0;
  left: auto;
  transform: translateY(-8px);
}

.nav-group:last-child.is-open .nav-popover {
  transform: translateY(0);
}

.nav-popover > p {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.nav-popover > a {
  display: grid;
  gap: 3px;
  padding: 12px 10px;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.nav-popover > a strong {
  font-size: 14px;
  font-weight: 700;
}

.nav-popover > a small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.nav-popover > a:hover,
.nav-popover > a:focus-visible,
.nav-topic-links a:hover,
.nav-topic-links a:focus-visible {
  color: var(--terracotta);
  background: rgba(185, 86, 56, 0.07);
}

.nav-popover-blog {
  width: 430px;
}

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

.nav-topic-links a {
  padding: 11px 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav-topic-links a:nth-child(even) {
  border-right: 0;
}

.mobile-navigation {
  position: relative;
  display: none;
}

.mobile-navigation > summary {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.mobile-navigation > summary::-webkit-details-marker {
  display: none;
}

.mobile-navigation > summary span,
.mobile-navigation > summary span::before,
.mobile-navigation > summary span::after {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  content: "";
}

.mobile-navigation > summary span {
  position: relative;
}

.mobile-navigation > summary span::before {
  position: absolute;
  top: -5px;
}

.mobile-navigation > summary span::after {
  position: absolute;
  top: 5px;
}

.mobile-navigation[open] > summary {
  color: white;
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.mobile-navigation > nav {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(720px, calc(100vw - 48px));
  max-height: calc(100vh - 105px);
  overflow-y: auto;
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-top: 3px solid var(--terracotta);
  box-shadow: 0 22px 55px rgba(55, 35, 25, 0.18);
}

.mobile-navigation section {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.mobile-navigation section:last-child {
  border-right: 0;
}

.mobile-navigation section > .mobile-section-link {
  margin-bottom: 10px;
  padding: 0 0 10px;
  color: var(--terracotta);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.1;
}

.mobile-navigation nav a {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-navigation nav .mobile-menu-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  color: white;
  background: var(--terracotta);
  border-bottom: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.mobile-menu-cta span {
  font-size: 1.15rem;
}

.mobile-navigation nav a:hover,
.mobile-navigation nav a:focus-visible,
.mobile-navigation nav a[aria-current="page"] {
  color: var(--terracotta);
}

.header-cta {
  padding: 13px 20px;
  color: var(--terracotta-dark);
  border: 1px solid var(--terracotta);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: white;
  background: var(--terracotta);
}

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--terracotta);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.62fr);
  gap: clamp(56px, 6vw, 88px);
  align-items: center;
  max-width: var(--page-width);
  min-height: calc(100svh - 112px);
  margin: 0 auto;
  padding: clamp(38px, 5vh, 58px) var(--page-gutter) clamp(44px, 6vh, 68px);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  text-underline-offset: 4px;
}

.eyebrow,
.category {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 4.85vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.97;
}

.hero h1 em {
  color: var(--terracotta);
  font-weight: 400;
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: #514841;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  padding: 15px 20px;
  color: white;
  background: var(--terracotta);
  border: 1px solid var(--terracotta);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-decoration: none;
}

.hero-scroll span {
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease;
}

.hero-scroll:hover,
.hero-scroll:focus-visible {
  color: var(--terracotta-dark);
  background: transparent;
}

.hero-scroll:hover span,
.hero-scroll:focus-visible span {
  transform: translateY(3px);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.article-meta span:not(:last-child)::after {
  content: "•";
  margin-left: 22px;
  color: var(--terracotta);
}

.hero-media {
  position: relative;
  margin: 0;
  transform: rotate(1.5deg);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--terracotta);
  z-index: -1;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.article {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--page-gutter) 120px;
}

.answer-box {
  margin-bottom: 90px;
  padding: clamp(32px, 5vw, 58px);
  background: var(--paper-light);
  border-top: 4px solid var(--terracotta);
  box-shadow: 0 18px 55px rgba(55, 35, 25, 0.08);
}

.answer-box h2,
.context-cta h2,
.guide-offer h2,
.faq > h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.answer-box h2 {
  font-size: clamp(2.35rem, 3.2vw, 3.35rem);
}

.context-cta h2 {
  font-size: clamp(1.9rem, 2.2vw, 2.5rem);
}

.guide-offer h2 {
  font-size: clamp(2.4rem, 3vw, 3.35rem);
}

.faq > h2 {
  font-size: clamp(2.2rem, 2.7vw, 3rem);
}

.answer-box > p:not(.eyebrow) {
  max-width: 830px;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.quick-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: quick;
  border-top: 1px solid var(--line);
}

.quick-list li {
  counter-increment: quick;
  border-bottom: 1px solid var(--line);
}

.quick-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.quick-list a {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  font-weight: 700;
  text-decoration: none;
}

.quick-list a::before {
  content: counter(quick, decimal-leading-zero);
  color: var(--terracotta);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.quick-list a:hover,
.quick-list a:focus-visible {
  background: rgba(185, 86, 56, 0.08);
}

.article-intro {
  max-width: none;
  margin: 0 0 96px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  line-height: 1.45;
  text-align: left;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: clamp(56px, 6vw, 76px);
  align-items: start;
  min-height: 0;
  margin: 0 0 120px;
}

.experience.reverse .experience-media {
  order: 0;
}

.experience-media {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 4 / 5;
  background: #191716;
  box-shadow: var(--shadow);
}

.experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.experience-media.carousel-art {
  aspect-ratio: 3 / 4;
  background: var(--wine);
}

.experience-media.carousel-art img,
.hero-media.carousel-cover img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
}

.experience-media :is(img, video) {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #191716;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 600ms ease;
}

.experience:hover .experience-media :is(img, video) {
  transform: scale(1.025);
}

.partner-embed-media {
  background: #efe6d7;
}

.partner-embed-media.wide-embed {
  align-self: center;
  aspect-ratio: 16 / 9;
}

.partner-embed {
  display: none;
  width: 100%;
  height: 100%;
  border: 0;
  background: #191716;
}

.embed-facade {
  position: absolute;
  inset: 0;
}

.embed-facade.is-loaded .partner-embed {
  display: block;
}

.embed-facade.is-loaded > img,
.embed-facade.is-loaded > button {
  display: none;
}

.embed-facade > button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 13px 18px;
  color: white;
  background: rgba(18, 16, 15, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font: 800 0.78rem/1 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.embed-facade > button:hover,
.embed-facade > button:focus-visible {
  color: var(--ink);
  background: var(--paper-light);
  outline: 2px solid white;
  outline-offset: 2px;
}

.embed-external {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  padding: 7px 10px;
  color: white;
  background: rgba(18, 16, 15, 0.78);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.embed-external:hover,
.embed-external:focus-visible {
  color: var(--ink);
  background: var(--paper-light);
}

.food-focus :is(img, video) { object-position: center 62%; }
.train-focus :is(img, video) { object-position: center 18%; }
.landscape-focus :is(img, video) { object-position: center 30%; }
.couple-focus :is(img, video) { object-position: center 38%; }
.dinner-focus :is(img, video) { object-position: center 46%; }
.editorial-focus :is(img, video) { object-position: center center; }

.video-controls {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.video-controls button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 11px;
  color: white;
  background: rgba(18, 16, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  font: 700 12px/1 var(--sans);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.video-controls button:hover,
.video-controls button:focus-visible {
  color: var(--ink);
  background: var(--paper-light);
  outline: 2px solid white;
  outline-offset: 2px;
}

.image-credit {
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 2;
  padding: 4px 9px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.45);
  font-size: 11px;
  line-height: 1.3;
}

.experience-copy {
  position: relative;
  padding-top: 20px;
}

.number {
  display: block;
  margin-bottom: 38px;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 5.8rem;
  line-height: 0.8;
  opacity: 0.22;
}

.experience h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 3.5vw, 3.65rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

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

.experience-copy .answer {
  color: #3d3530;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.55;
}

.tip {
  margin-top: 28px !important;
  padding: 20px 0 0 22px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--terracotta);
  color: var(--muted);
  font-size: 0.95rem;
}

.partner-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 4px;
  color: var(--terracotta-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration-thickness: 1px;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.partner-link:hover,
.partner-link:focus-visible {
  color: var(--wine);
}

#cta-gate {
  height: 1px;
}

.context-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin: 0 0 120px;
  padding: clamp(34px, 5vw, 58px);
  color: #fdf6ea;
  background: var(--wine);
  box-shadow: var(--shadow);
}

.context-cta .eyebrow {
  color: #e6b1a4;
}

.context-cta p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.context-cta a {
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.context-cta a:hover,
.context-cta a:focus-visible {
  color: var(--wine);
  background: white;
}

.inline-cta {
  max-width: none;
  margin: -50px 0 120px;
  padding: 24px 28px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.45);
  border-left: 4px solid var(--terracotta);
  text-align: left;
}

.inline-cta a {
  color: var(--terracotta-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.quote-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin: -30px 0 120px;
  padding: 36px 40px;
  border-top: 1px solid var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
}

.quote-cta p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}

.quote-cta a {
  color: var(--terracotta-dark);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.guide-offer {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  padding: clamp(48px, 8vw, 90px);
  color: white;
  background: var(--terracotta-dark);
}

.guide-offer::after {
  content: "47";
  position: absolute;
  right: -10px;
  bottom: -70px;
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--serif);
  font-size: 18rem;
  line-height: 1;
}

.guide-offer .eyebrow {
  color: #f2c4b7;
}

.guide-offer h2,
.guide-offer > p,
.guide-offer ul,
.guide-offer a,
.guide-offer small {
  position: relative;
  z-index: 1;
}

.guide-offer > p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.guide-offer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.guide-offer li {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 14px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 18px 24px;
  color: var(--terracotta-dark);
  background: white;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  color: white;
  background: var(--wine);
}

.guide-offer small {
  display: block;
  max-width: 780px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  line-height: 1.5;
}

.faq {
  max-width: none;
  margin: 120px 0 0;
}

.faq > h2 {
  margin-bottom: 40px;
}

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

.faq details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding: 24px 44px 24px 0;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
}

.faq details p {
  max-width: 900px;
  margin: 0 0 26px;
  color: var(--muted);
}

.article-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 90px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.article-footer-note {
  padding: 24px 26px 25px;
  background: var(--paper-light);
  border-top: 3px solid var(--terracotta);
  box-shadow: 0 12px 34px rgba(55, 35, 25, 0.055);
}

.article-footer-label {
  display: block;
  margin-bottom: 10px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.article-footer p {
  margin: 0;
  line-height: 1.65;
}

.floating-guide-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 80;
  width: min(960px, calc(100vw - 48px));
  transform: translate(-50%, calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
  transition: transform 300ms ease, opacity 300ms ease;
}

.floating-guide-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.floating-guide-cta.is-dismissed {
  display: none;
}

.floating-guide-link {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 88px;
  padding: 8px 10px 8px 0;
  color: #fffaf1;
  background:
    radial-gradient(circle at 8% 50%, rgba(216, 165, 95, 0.1), transparent 26%),
    linear-gradient(110deg, #28221e, #171412);
  border: 1px solid rgba(226, 186, 123, 0.38);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(35, 22, 17, 0.38), 0 0 0 4px rgba(246, 234, 215, 0.54);
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.floating-guide-link::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), #d7a55f 55%, transparent);
}

.floating-guide-link:hover,
.floating-guide-link:focus-visible {
  box-shadow: 0 24px 58px rgba(35, 22, 17, 0.48), 0 0 0 4px rgba(246, 234, 215, 0.72);
  transform: translateY(-2px);
}

.floating-brand {
  display: grid;
  align-content: center;
  align-self: stretch;
  padding: 0 24px;
  border-right: 1px solid rgba(246, 234, 215, 0.18);
}

.floating-offer {
  display: block;
  padding: 0 26px;
}

.floating-kicker {
  display: block;
  margin-bottom: 3px;
  color: #e4b86f;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.2em;
}

.floating-brand strong {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.floating-offer strong {
  display: block;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.08;
}

.floating-detail {
  display: block;
  margin-top: 5px;
  color: rgba(255, 250, 241, 0.7);
  font-size: 12px;
  line-height: 1.35;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 206px;
  min-height: 52px;
  padding: 0 22px;
  color: #fffaf1;
  background: var(--terracotta);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  transition: background-color 180ms ease;
}

.floating-action i {
  font-size: 19px;
  font-style: normal;
  transition: transform 180ms ease;
}

.floating-guide-link:hover .floating-action,
.floating-guide-link:focus-visible .floating-action {
  background: #d06442;
}

.floating-guide-link:hover .floating-action i,
.floating-guide-link:focus-visible .floating-action i {
  transform: translateX(3px);
}

.floating-guide-close {
  position: absolute;
  top: -13px;
  right: -10px;
  z-index: 2;
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  color: var(--wine);
  background: var(--paper-light);
  border: 1px solid rgba(110, 24, 33, 0.35);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(58, 17, 21, 0.2);
  font: 400 22px/1 var(--sans);
  cursor: pointer;
}

.floating-guide-close:hover,
.floating-guide-close:focus-visible {
  color: white;
  background: var(--terracotta);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 34px var(--page-gutter) 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.brand-footer strong {
  font-size: 12px;
}

/* Página principal e entrada do Blog */
.home-hero,
.home-blog-teaser,
.home-guide-band,
.blog-shell {
  width: 100%;
  max-width: var(--page-width);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
  gap: clamp(58px, 7vw, 94px);
  align-items: center;
  min-height: calc(100svh - 90px);
  padding-block: clamp(54px, 7vh, 90px);
}

.home-hero-copy h1,
.blog-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5.4vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.home-hero-copy h1 em,
.blog-hero h1 em {
  color: var(--terracotta);
  font-weight: 400;
}

.blog-hero h1 {
  font-size: clamp(3.5rem, 4.35vw, 4.65rem);
}

.blog-hero h1 > span,
.blog-hero h1 > em {
  display: block;
}

.home-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 30px 0 0;
  color: #514841;
  font-size: 1.2rem;
  line-height: 1.6;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
}

.primary-home-action,
.home-guide-band > a,
.blog-guide-cta > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 22px;
  color: white;
  background: var(--terracotta);
  border: 1px solid var(--terracotta);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.primary-home-action:hover,
.primary-home-action:focus-visible,
.home-guide-band > a:hover,
.home-guide-band > a:focus-visible {
  color: var(--terracotta-dark);
  background: transparent;
}

.secondary-home-action,
.section-heading > a,
.story-link,
.footer-blog-link {
  color: var(--terracotta-dark);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.home-hero-media {
  position: relative;
  margin: 0;
}

.home-hero-media::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: -1;
  border: 1px solid var(--terracotta);
}

.home-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.home-blog-teaser {
  padding-block: clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--line);
}

.section-heading,
.library-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2,
.library-heading h2,
.home-guide-band h2,
.blog-topics h2,
.blog-guide-cta h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.section-heading h2,
.library-heading h2 {
  font-size: clamp(2.8rem, 3.8vw, 3.8rem);
}

.home-guide-band h2 {
  font-size: clamp(2.6rem, 3.4vw, 3.5rem);
}

.blog-topics h2 {
  font-size: clamp(2.25rem, 2.9vw, 2.9rem);
}

.blog-guide-cta h2 {
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
}

.blog-guide-cta .cta-line {
  white-space: nowrap;
}

.featured-story {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  min-height: 560px;
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.featured-story-media {
  display: block;
  overflow: hidden;
}

.featured-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.featured-story-media:hover img,
.featured-story-media:focus-visible img {
  transform: scale(1.025);
}

.featured-story-copy {
  align-self: center;
  padding: clamp(42px, 7vw, 88px);
}

.featured-story-copy h3,
.blog-card-copy h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.featured-story-copy h3 {
  font-size: clamp(2.4rem, 3.4vw, 3.45rem);
}

.blog-card-copy h3 {
  font-size: clamp(2.35rem, 3.2vw, 3.25rem);
}

.featured-story-copy h3 a,
.blog-card-copy h3 a {
  text-decoration: none;
}

.featured-story-copy > p:not(.category) {
  max-width: 650px;
  color: var(--muted);
}

.topic-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.topic-strip a {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 22px 18px;
  font-weight: 800;
  text-decoration: none;
}

.topic-strip a:not(:last-child) {
  border-right: 1px solid var(--line);
}

.topic-strip span {
  color: var(--terracotta);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.topic-strip a:hover,
.topic-strip a:focus-visible {
  background: rgba(185, 86, 56, 0.08);
}

.home-guide-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: end;
  margin-bottom: 100px;
  padding-block: clamp(48px, 7vw, 82px);
  color: white;
  background: var(--wine);
}

.home-guide-band .eyebrow,
.blog-guide-cta .eyebrow {
  color: #e6b1a4;
}

.home-guide-band p:not(.eyebrow),
.blog-guide-cta p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.home-guide-band > a,
.blog-guide-cta > a {
  color: var(--wine);
  background: white;
  border-color: white;
}

.home-guide-band > a:hover,
.home-guide-band > a:focus-visible,
.blog-guide-cta > a:hover,
.blog-guide-cta > a:focus-visible {
  color: white;
  background: transparent;
}

.blog-shell {
  padding-bottom: 120px;
}

.blog-hero {
  padding-block: clamp(20px, 2vw, 28px) clamp(48px, 4vw, 58px);
  position: relative;
}

.blog-hero .breadcrumb {
  margin-bottom: 18px;
}

.blog-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.78fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.blog-hero-copy {
  max-width: 760px;
}

.blog-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.blog-hero-jump {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  margin-top: 22px;
  padding: 14px 18px;
  color: white;
  background: var(--terracotta);
  border: 1px solid var(--terracotta);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
}

.blog-hero-jump:hover,
.blog-hero-jump:focus-visible {
  color: var(--terracotta-dark);
  background: transparent;
}

.blog-hero-search-panel {
  position: relative;
  padding: clamp(30px, 3vw, 42px);
  color: #fff7eb;
  background: var(--wine);
  box-shadow: 0 24px 60px rgba(55, 15, 20, 0.18);
}

.blog-hero-search-panel::before {
  content: "";
  position: absolute;
  inset: -12px 12px 12px -12px;
  z-index: -1;
  border: 1px solid var(--terracotta);
  pointer-events: none;
}

.blog-hero-search-panel .eyebrow {
  margin-bottom: 10px;
  color: #e7b568;
}

.blog-hero-search-panel h2 {
  max-width: 440px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.65vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.blog-hero-search-panel > p:not(.eyebrow) {
  max-width: 470px;
  margin: 14px 0 24px;
  color: rgba(255, 247, 235, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.blog-hero-search-form {
  margin: 0;
}

.blog-hero-search-form > label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 247, 235, 0.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-hero-search-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  min-height: 54px;
  background: var(--paper-light);
  border: 1px solid rgba(255, 247, 235, 0.62);
}

.blog-hero-search-form input {
  min-width: 0;
  padding: 13px 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font: 400 15px/1.2 var(--sans);
}

.blog-hero-search-form input:focus {
  outline: 2px solid #e7b568;
  outline-offset: -3px;
}

.blog-hero-search-form button {
  display: grid;
  place-items: center;
  color: var(--wine);
  background: #e7b568;
  border: 0;
  font: 400 22px/1 var(--sans);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.blog-hero-search-form button:hover,
.blog-hero-search-form button:focus-visible {
  color: white;
  background: var(--terracotta);
  outline: none;
}

.blog-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
  font-size: 11px;
}

.blog-search-suggestions > span {
  margin-right: 2px;
  color: rgba(255, 247, 235, 0.66);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-search-suggestions button {
  padding: 7px 9px;
  color: #fff7eb;
  background: transparent;
  border: 1px solid rgba(255, 247, 235, 0.28);
  font: 700 11px/1 var(--sans);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.blog-search-suggestions button:hover,
.blog-search-suggestions button:focus-visible {
  color: var(--wine);
  background: #e7b568;
  border-color: #e7b568;
  outline: none;
}

.blog-hero-feature {
  position: relative;
  display: block;
  justify-self: end;
  width: min(100%, 440px);
  min-height: 0;
  aspect-ratio: 5 / 4;
  color: white;
  background: var(--wine);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.blog-hero-feature::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid var(--terracotta);
  pointer-events: none;
  z-index: -1;
}

.blog-hero-feature-media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background: var(--paper-light);
}

.blog-hero-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 350ms ease;
}

.blog-hero-feature:hover .blog-hero-feature-media img,
.blog-hero-feature:focus-visible .blog-hero-feature-media img {
  transform: scale(1.025);
}

.blog-hero-feature-label {
  position: absolute;
  top: 18px;
  left: -12px;
  padding: 11px 15px;
  color: #e7b568;
  background: var(--wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  box-shadow: 8px 8px 22px rgba(55, 15, 20, 0.18);
}

.blog-hero-feature-action {
  position: absolute;
  right: -16px;
  bottom: 18px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  min-width: 244px;
  padding: 16px 18px;
  color: #fff7eb;
  background: var(--wine);
  box-shadow: 10px 12px 28px rgba(55, 15, 20, 0.24);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero-feature-action strong {
  font-weight: 800;
}

.blog-hero-feature-action i {
  color: #e7b568;
  font-size: 20px;
  font-style: normal;
}

.blog-tools {
  display: block;
  margin-top: 0;
  padding: 18px 0;
  position: relative;
  z-index: 2;
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.blog-tools .blog-search-mobile {
  display: none;
}

.blog-search {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.blog-search input {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
  font-size: 16px;
}

.blog-search input:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.blog-filters button {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  font: 800 13px/1 var(--sans);
  cursor: pointer;
}

.blog-filters button:hover,
.blog-filters button:focus-visible,
.blog-filters button.is-active {
  color: white;
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.blog-library {
  padding-block: clamp(42px, 4vw, 58px) clamp(44px, 4vw, 58px);
}

.library-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--paper-light);
  box-shadow: 0 16px 45px rgba(55, 35, 25, 0.08);
}

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

.blog-card-featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
}

.blog-card-media {
  display: block;
  overflow: hidden;
  min-height: 520px;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-media img {
  object-position: center top;
}

.blog-card-copy {
  align-self: center;
  padding: clamp(40px, 7vw, 86px);
}

.blog-card-copy > p:not(.category) {
  max-width: 650px;
  color: var(--muted);
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 28px 0 22px;
  color: var(--muted);
  font-size: 12px;
}

.blog-card-meta span:not(:last-child)::after {
  content: "•";
  margin-left: 24px;
  color: var(--terracotta);
}

.blog-empty {
  margin: 0;
  padding: 40px;
  background: var(--paper-light);
  border-top: 3px solid var(--terracotta);
}

.blog-topics {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
  padding-block: clamp(48px, 5vw, 64px) clamp(64px, 7vw, 86px);
  border-top: 1px solid var(--line);
}

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

.topic-cards button {
  display: grid;
  gap: 5px;
  min-height: 150px;
  padding: 24px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
}

.topic-cards button:hover,
.topic-cards button:focus-visible {
  background: rgba(185, 86, 56, 0.08);
}

.topic-cards span {
  color: var(--terracotta);
  font-size: 11px;
}

.topic-cards strong {
  font-family: var(--serif);
  font-size: 1.65rem;
}

.topic-cards small {
  color: var(--muted);
  font-size: 13px;
}

.blog-guide-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
  padding: clamp(52px, 7vw, 86px);
  color: white;
  background:
    radial-gradient(circle at 8% 110%, rgba(231, 181, 104, 0.12) 0 120px, transparent 121px),
    linear-gradient(135deg, #771b27 0%, #5a1119 100%);
  border-top: 3px solid #d7a55f;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.blog-guide-cta::before {
  content: "";
  position: absolute;
  top: -115px;
  right: -75px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(231, 181, 104, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.blog-guide-copy {
  position: relative;
  z-index: 1;
}

.blog-guide-cta .blog-guide-copy h2 {
  max-width: 700px;
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  line-height: 1;
  text-wrap: balance;
}

.blog-guide-cta .blog-guide-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.blog-guide-proof {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px 20px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.blog-guide-proof li {
  position: relative;
  padding-left: 15px;
  color: #efcf9f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.blog-guide-proof li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  background: #d7a55f;
  border-radius: 50%;
}

.blog-guide-cta > .blog-guide-ticket {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  padding: clamp(34px, 4vw, 48px);
  color: var(--wine);
  background: #f7e9d2;
  border: 1px solid rgba(231, 181, 104, 0.7);
  box-shadow: 18px 20px 0 rgba(61, 10, 17, 0.26);
  text-decoration: none;
  transform: rotate(1.1deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-guide-cta > .blog-guide-ticket::before,
.blog-guide-cta > .blog-guide-ticket::after {
  content: "";
  position: absolute;
  left: -11px;
  width: 20px;
  height: 20px;
  background: #64141e;
  border-radius: 50%;
}

.blog-guide-cta > .blog-guide-ticket::before {
  top: 26%;
}

.blog-guide-cta > .blog-guide-ticket::after {
  bottom: 26%;
}

.blog-guide-ticket > span {
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.blog-guide-ticket > strong {
  max-width: 330px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.5vw, 2.45rem);
  font-weight: 400;
  line-height: 1;
}

.blog-guide-ticket > small {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(110, 24, 33, 0.22);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-guide-ticket i {
  font-size: 24px;
  font-style: normal;
  transition: transform 180ms ease;
}

.blog-guide-cta > .blog-guide-ticket:hover,
.blog-guide-cta > .blog-guide-ticket:focus-visible {
  color: var(--wine);
  background: #fff5e4;
  box-shadow: 12px 14px 0 rgba(61, 10, 17, 0.32);
  transform: rotate(0deg) translateY(-3px);
}

.blog-guide-ticket:hover i,
.blog-guide-ticket:focus-visible i {
  transform: translateX(4px);
}

.article-navigation {
  margin-top: 22px;
}

.article-navigation a {
  display: flex;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 22px 26px;
  color: var(--wine);
  background: rgba(255, 250, 241, 0.58);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.article-navigation a:hover,
.article-navigation a:focus-visible {
  background: var(--paper-light);
  border-color: var(--terracotta);
  transform: translateY(-2px);
}

.article-navigation-arrow {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  background: var(--terracotta);
  border-radius: 50%;
  font-size: 22px;
}

.article-navigation-copy {
  display: grid;
  gap: 3px;
}

.article-navigation-copy small {
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.article-navigation-copy strong {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.15;
}

.event-hero .hero-copy {
  align-self: center;
}

.event-hero h1 {
  font-size: clamp(3.15rem, 4.45vw, 4.65rem);
}

.event-poster img {
  object-position: center top;
}

.christmas-hero-media img {
  aspect-ratio: 4 / 5;
  max-height: 620px;
  object-position: center 58%;
}

.christmas-hero-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

.new-year-hero-media img {
  aspect-ratio: 4 / 5;
  max-height: 540px;
  object-position: center;
}

.new-year-hero-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

.event-poster figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-facts div {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.event-facts div:last-child {
  border-right: 0;
}

.event-facts dt,
.service-grid span {
  margin-bottom: 7px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
}

.answer-box .fact-caveat {
  color: var(--muted);
  font-size: 0.95rem;
}

.editorial-section {
  position: relative;
  max-width: 980px;
  margin: 0 auto 110px;
  padding-left: clamp(24px, 4vw, 54px);
  border-left: 3px solid var(--terracotta);
}

.editorial-section .section-number {
  margin: 0 0 28px;
  color: rgba(185, 86, 56, 0.28);
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7vw, 7rem);
  line-height: 0.75;
}

.editorial-section h2,
.event-service h2,
.article-sources h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.editorial-section h2 {
  max-width: 850px;
  font-size: clamp(2.5rem, 3.55vw, 3.7rem);
}

.editorial-section > p:not(.category, .section-number, .answer, .inline-cta) {
  max-width: 830px;
  margin: 22px 0 0;
  color: #514841;
  font-size: 1.08rem;
  line-height: 1.75;
}

.editorial-section .answer {
  max-width: 850px;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.45;
}

.song-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.event-video-feature {
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  margin: 42px 0 0;
  background: #15100f;
}

.event-video-feature .partner-video {
  object-fit: contain;
  object-position: center;
}

.christmas-video-feature {
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
  margin: 34px 0 0;
}

.christmas-video-feature .partner-video {
  object-position: center;
}

.christmas-video-feature .image-credit {
  max-width: calc(100% - 28px);
  font-size: 10px;
}

@media (min-width: 781px) {
  #natal-nos-trilhos {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
    column-gap: clamp(48px, 5vw, 76px);
    align-items: start;
  }

  #natal-nos-trilhos > :not(.christmas-video-feature) {
    grid-column: 1;
  }

  #natal-nos-trilhos > .christmas-video-feature {
    grid-column: 2;
    grid-row: 1 / span 6;
    align-self: start;
    justify-self: end;
    width: 100%;
    margin: 8px 16px 24px 0;
    box-shadow:
      18px 18px 0 rgba(185, 86, 56, 0.14),
      0 20px 46px rgba(63, 35, 24, 0.18);
  }
}

.editorial-section > p.event-video-caption {
  max-width: 520px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.song-list li {
  padding: 10px 14px;
  color: var(--wine);
  background: var(--paper-light);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.city-section {
  padding-block: 8px;
}

.city-section .inline-cta {
  max-width: 830px;
  margin: 32px 0 0;
}

.event-service {
  margin: 0 0 120px;
  padding: clamp(34px, 5vw, 58px);
  background: var(--paper-light);
  border-top: 4px solid var(--terracotta);
  box-shadow: 0 18px 55px rgba(55, 35, 25, 0.08);
}

.event-service h2 {
  max-width: 1050px;
  font-size: clamp(2.2rem, 2.75vw, 3rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid div {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 124px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-date,
.service-attractions,
.service-location {
  grid-column: span 4;
}

.service-event {
  grid-column: span 5;
}

.service-sales {
  grid-column: span 7;
}

.service-grid strong {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.35vw, 1.4rem);
  line-height: 1.25;
}

.service-update {
  max-width: none;
  margin: 0;
  padding: 18px 22px;
  color: var(--muted);
  background: rgba(185, 86, 56, 0.045);
  border: 1px solid var(--line);
  border-top: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.article-sources {
  width: 100%;
  margin: 88px 0 0;
  padding: clamp(28px, 3.2vw, 40px);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--line);
}

.article-sources h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
  letter-spacing: -0.025em;
}

.sources-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
}

.sources-heading > p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-sources > p:not(.eyebrow) {
  max-width: 920px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.article-sources ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.article-sources li {
  border-bottom: 1px solid var(--line);
}

.article-sources li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.article-sources a {
  display: block;
  padding: 15px 16px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.citation-link {
  display: inline-block;
  margin-left: 3px;
  color: var(--terracotta);
  font-family: var(--sans);
  font-size: 0.72em;
  font-weight: 800;
  text-decoration: none;
  vertical-align: super;
}

.article-sources .sources-list {
  display: grid;
  grid-template-columns: 1fr;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  counter-reset: article-source;
}

.article-sources .sources-list li {
  position: relative;
  min-height: 78px;
  padding: 15px 18px 17px 54px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  counter-increment: article-source;
}

.article-sources .sources-list li:nth-child(odd) {
  border-right: 0;
}

.article-sources .sources-list li::before {
  position: absolute;
  top: 17px;
  left: 16px;
  color: var(--terracotta);
  content: counter(article-source, decimal-leading-zero);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.article-sources .sources-list a {
  display: inline;
  padding: 0;
}

.footer-blog-link {
  margin-left: auto;
}

@media (max-width: 1050px) {
  :root {
    --page-gutter: 32px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 16px;
  }

  .site-header .desktop-nav {
    display: none;
  }

  .mobile-navigation {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr minmax(300px, 0.65fr);
    min-height: auto;
  }

  .experience {
    grid-template-columns: minmax(0, 410px) minmax(0, 1fr);
    gap: 42px;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
    min-height: auto;
  }

  .blog-hero-grid,
  .blog-hero-layout,
  .blog-topics {
    gap: 46px;
  }
}

@media (max-width: 780px) {
  :root {
    --page-gutter: 24px;
  }

  body {
    font-size: 17px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px 16px;
  }

  .site-header > .header-cta {
    display: none;
  }

  .mobile-navigation > summary {
    padding: 11px 14px;
  }

  .mobile-navigation > nav {
    right: -2px;
    grid-template-columns: 1fr;
    width: min(360px, calc(100vw - 32px));
    max-height: calc(100vh - 86px);
  }

  .mobile-navigation section {
    padding: 16px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mobile-navigation section:last-child {
    border-bottom: 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 11px;
  }

  .brand small {
    font-size: 10px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 48px var(--page-gutter) 80px;
  }

  .breadcrumb {
    margin-bottom: 28px;
  }

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

  .hero-scroll {
    width: 100%;
    justify-content: space-between;
  }

  .article-meta {
    display: grid;
    gap: 3px;
  }

  .article-meta span::after {
    display: none;
  }

  .hero-media {
    width: 88%;
    margin: 0 auto;
  }

  .article {
    padding: 0 var(--page-gutter) 90px;
  }

  .answer-box {
    margin-bottom: 70px;
    padding: 28px 24px;
  }

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

  .quick-list li:nth-child(odd) {
    border-right: 0;
  }

  .article-intro {
    margin-bottom: 70px;
    text-align: left;
  }

  .experience,
  .experience.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0;
    margin-bottom: 90px;
  }

  .experience.reverse .experience-media {
    order: 0;
  }

  .experience-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .experience-media :is(img, video) {
    height: 100%;
  }

  .video-controls {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .video-controls button {
    flex: 1;
    justify-content: center;
  }

  .number {
    margin-bottom: 28px;
    font-size: 4.7rem;
  }

  .experience h2 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .context-cta,
  .quote-cta {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 90px;
  }

  .context-cta a {
    white-space: normal;
  }

  .inline-cta {
    margin: -30px auto 90px;
  }

  .guide-offer {
    margin-inline: calc(var(--page-gutter) * -1);
  }

  .guide-offer ul {
    display: grid;
  }

  .faq {
    margin-top: 90px;
  }

  .article-footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .floating-guide-cta {
    bottom: 14px;
    left: 14px;
    width: auto;
    transform: translateY(calc(100% + 40px));
  }

  .floating-guide-cta.is-visible {
    transform: translateY(0);
  }

  .floating-guide-link {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 78px;
    padding: 10px;
    border-radius: 14px;
  }

  .floating-brand {
    display: none;
  }

  .floating-offer {
    padding: 0 12px 0 5px;
  }

  .floating-offer strong {
    font-size: 17px;
    line-height: 1.08;
  }

  .floating-detail {
    max-width: 190px;
    margin-top: 4px;
    font-size: 10px;
  }

  .floating-action {
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    font-size: 0;
  }

  .floating-action i {
    font-size: 21px;
  }

  .floating-guide-close {
    top: -10px;
    right: -4px;
    width: 30px;
    height: 30px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px var(--page-gutter) 95px;
  }

  .home-hero,
  .featured-story,
  .home-guide-band,
  .blog-hero-grid,
  .blog-hero-layout,
  .blog-tools,
  .blog-card-featured,
  .blog-topics,
  .blog-guide-cta {
    grid-template-columns: 1fr;
  }

  .blog-guide-cta {
    gap: 42px;
    padding: 42px 24px 48px;
  }

  .blog-guide-cta .blog-guide-copy h2 {
    font-size: clamp(2.4rem, 10vw, 3rem);
  }

  .blog-guide-proof {
    display: grid;
    gap: 8px;
    margin-top: 24px;
  }

  .blog-guide-proof li {
    white-space: normal;
  }

  .blog-guide-cta > .blog-guide-ticket {
    padding: 32px 26px;
    box-shadow: 10px 12px 0 rgba(61, 10, 17, 0.26);
    transform: none;
  }

  .home-hero {
    gap: 54px;
    padding-block: 54px 82px;
  }

  .home-hero-copy h1,
  .blog-hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .blog-hero h1 > span,
  .blog-hero h1 > em {
    display: inline;
  }

  .home-actions {
    display: grid;
  }

  .primary-home-action {
    width: 100%;
  }

  .home-hero-media {
    width: 88%;
    margin-inline: auto;
  }

  .section-heading,
  .library-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .featured-story {
    min-height: 0;
  }

  .featured-story-media,
  .blog-card-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .featured-story-copy,
  .blog-card-copy {
    padding: 32px 24px 38px;
  }

  .topic-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-strip a:nth-child(2) {
    border-right: 0;
  }

  .topic-strip a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .home-guide-band {
    margin-bottom: 72px;
  }

  .blog-hero {
    padding-block: 30px 68px;
  }

  .blog-hero .breadcrumb {
    margin-bottom: 24px;
  }

  .blog-hero-layout {
    display: block;
  }

  .blog-hero-copy {
    max-width: none;
  }

  .blog-hero-search-panel {
    display: none;
  }

  .blog-hero-feature {
    justify-self: center;
    width: min(100%, 470px);
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .blog-tools {
    display: grid;
    gap: 24px;
    margin-top: -28px;
    padding: 24px;
    background: var(--paper-light);
    border-top: 3px solid var(--terracotta);
    border-bottom: 0;
    box-shadow: 0 18px 50px rgba(55, 35, 25, 0.09);
  }

  .blog-tools .blog-search-mobile {
    display: grid;
  }

  .blog-filters {
    justify-content: flex-start;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .blog-topics {
    padding-block: 48px 64px;
  }

  .topic-cards button {
    padding: 18px;
  }

  .article-navigation {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-hero h1 {
    font-size: clamp(2.85rem, 12vw, 4.1rem);
  }

  .event-facts,
  .service-grid,
  .article-sources ul,
  .article-sources .sources-list {
    grid-template-columns: 1fr;
  }

  .service-grid > div {
    grid-column: 1;
  }

  .event-facts div,
  .article-sources li:nth-child(odd) {
    border-right: 0;
  }

  .event-facts div:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .editorial-section {
    margin-bottom: 82px;
    padding-left: 22px;
  }

  .editorial-section .section-number {
    margin-bottom: 24px;
  }

  .editorial-section h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.2rem);
  }

  .song-list {
    gap: 8px;
  }

  .song-list li {
    width: 100%;
  }

  .event-service {
    margin-bottom: 90px;
    padding: 30px 24px;
  }

  .service-grid div {
    min-height: 0;
  }

  .service-grid div:last-child {
    grid-column: auto;
  }

  .article-sources {
    margin-top: 72px;
    padding: 28px 22px;
  }

  .sources-heading {
    display: block;
  }

  .sources-heading > p {
    margin-top: 8px;
  }

  .footer-blog-link {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .blog-hero-feature {
    width: 100%;
  }

  .blog-hero-feature-label {
    top: 14px;
    left: 14px;
  }

  .blog-hero-feature-action {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
  }
}

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

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

.article-engagement {
  margin: 92px 0 76px;
  border-top: 3px solid var(--terracotta);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.72);
}

.engagement-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 28px 56px;
  align-items: end;
  padding: 42px 44px 36px;
}

.engagement-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.engagement-heading h2 {
  margin: 0;
  font: 400 clamp(2.45rem, 5vw, 4.7rem) / 0.98 var(--serif);
  letter-spacing: -0.045em;
}

.engagement-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.engagement-rating {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(190px, auto);
  grid-template-areas:
    "question stars summary"
    "question choice summary";
  gap: 8px 38px;
  align-items: center;
  padding: 28px 44px;
  color: var(--paper-light);
  background: var(--wine);
}

.rating-question { grid-area: question; }

.rating-question h3,
.comments-form-column h3,
.comments-list-heading h3 {
  margin: 0;
  font: 400 1.65rem / 1.08 var(--serif);
}

.rating-question p {
  margin: 6px 0 0;
  color: rgba(251, 247, 239, 0.75);
  font-size: 14px;
}

.rating-stars {
  grid-area: stars;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.rating-stars button {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 223, 159, 0.44);
  border-radius: 50%;
  color: rgba(255, 223, 159, 0.54);
  background: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.rating-stars button > span {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(-1px);
}

.rating-stars button:hover,
.rating-stars button:focus-visible {
  color: #ffe0a0;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.04);
}

.rating-stars button.is-active {
  border-color: #ffe0a0;
  color: var(--wine);
  background: #ffe0a0;
  box-shadow: 0 4px 14px rgba(19, 4, 7, 0.2);
}

.rating-stars button.is-selected {
  outline: 2px solid #fff8e9;
  outline-offset: 3px;
  transform: none;
}

.rating-stars button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.rating-summary {
  grid-area: summary;
  margin: 0;
  color: rgba(251, 247, 239, 0.85);
  font-size: 14px;
  text-align: right;
}

.rating-choice {
  grid-area: choice;
  justify-self: stretch;
  margin: 4px 0 0;
  color: #ffe0a0;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.engagement-comments {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(380px, 1.22fr);
}

.comments-form-column,
.comments-list-column {
  padding: 42px 44px 46px;
}

.comments-form-column {
  border-right: 1px solid var(--line);
}

.comments-form-column > p {
  margin: 10px 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.comment-field {
  position: relative;
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.comment-field label {
  font-size: 14px;
  font-weight: 800;
}

.comment-field input,
.comment-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper-light);
  font: 16px / 1.5 var(--sans);
}

.comment-field input {
  min-height: 48px;
  padding: 10px 13px;
}

.comment-field textarea {
  min-height: 146px;
  padding: 12px 13px 28px;
  resize: vertical;
}

.comment-field input:focus,
.comment-field textarea:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.comment-field small {
  position: absolute;
  right: 10px;
  bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.comment-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 4px 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.comment-consent input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--terracotta);
}

.comment-submit {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 13px 17px;
  color: white;
  background: var(--terracotta);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.comment-submit:hover,
.comment-submit:focus-visible {
  background: var(--terracotta-dark);
}

.comment-submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.comment-form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.comment-form-status.is-success {
  color: #486343;
}

.comment-form-status.is-error {
  color: #943523;
}

.comment-trap {
  position: fixed;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.comments-list-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.comments-list-heading span {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

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

.comments-list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.comments-list article header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.comments-list article strong {
  font-size: 15px;
}

.comments-list article time {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.comments-list article p {
  margin: 11px 0 0;
  font-size: 16px;
  line-height: 1.62;
  white-space: pre-wrap;
}

.comments-empty {
  margin: 0;
  padding: 24px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 920px) {
  .engagement-heading,
  .engagement-rating,
  .engagement-comments {
    grid-template-columns: 1fr;
  }

  .engagement-rating {
    grid-template-areas:
      "question"
      "stars"
      "choice"
      "summary";
    justify-items: start;
  }

  .rating-summary {
    text-align: left;
  }

  .comments-form-column {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .article-engagement {
    margin: 70px calc(var(--page-gutter) * -1) 62px;
  }

  .engagement-heading,
  .engagement-rating,
  .comments-form-column,
  .comments-list-column {
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }

  .engagement-heading {
    padding-block: 34px 30px;
  }

  .engagement-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .engagement-rating {
    gap: 20px;
    padding-block: 26px 30px;
  }

  .rating-stars {
    width: 100%;
    justify-content: space-between;
  }

  .rating-stars button {
    width: 48px;
    height: 48px;
  }

  .comments-form-column,
  .comments-list-column {
    padding-block: 34px 38px;
  }

  .comments-list article header {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}
