@font-face {
  font-family: "Baloo 2";
  src: url("../fonts/baloo-2-latin-ext.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600 800;
}

@font-face {
  font-family: "Caveat";
  src: url("../fonts/caveat-latin-ext.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600 700;
}

@font-face {
  font-family: "Kalam";
  src: url("../fonts/kalam-400.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #66615d;
  --paper: #fffdf9;
  --white: #ffffff;
  --pink: #ff4f7b;
  --pink-soft: #fff0f3;
  --yellow: #f7b718;
  --yellow-soft: #fff7db;
  --teal: #2da79c;
  --teal-soft: #e8f7f5;
  --line: #e9e5df;
  --shadow: 0 14px 45px rgba(31, 27, 24, 0.08);
  --radius: 22px;
  --display: "Baloo 2", "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.breadcrumbs {
  min-width: 0;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs ol {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  color: #aaa39c;
  font-size: 16px;
  line-height: 1;
}

.breadcrumbs a {
  font-weight: 700;
  transition: color 160ms ease;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.breadcrumbs [aria-current="page"] {
  overflow: hidden;
  max-width: min(420px, 48vw);
  color: #827b75;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 99px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(45, 167, 156, 0.4);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 253, 249, 0.93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  border-color: rgba(17, 17, 17, 0.05);
  box-shadow: 0 8px 30px rgba(24, 20, 17, 0.06);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.05;
}

.brand-mark {
  position: relative;
  width: 58px;
  height: 55px;
  display: inline-flex;
  align-items: flex-end;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -20px;
  line-height: 1;
}

.brand-w {
  transform: rotate(-8deg);
}

.brand-u {
  color: var(--yellow);
  transform: rotate(4deg);
}

.brand-bow {
  position: absolute;
  top: -13px;
  right: 0;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  transform: rotate(-13deg);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(19px, 2.3vw, 34px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 750;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -10px;
  left: 50%;
  height: 3px;
  border-radius: 50%;
  background: var(--pink);
  transition: right 180ms ease, left 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.search-button,
.menu-toggle {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.search-button:hover {
  background: var(--pink-soft);
}

.search-button > span {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-button > span::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
  gap: 4px;
}

.menu-toggle > span:not(.sr-only) {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  padding: 56px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(520px, 1.18fr);
  min-height: 560px;
  align-items: center;
  gap: clamp(10px, 2.5vw, 34px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 3px;
  border-radius: 50%;
  background: var(--teal);
  transform: rotate(-4deg);
}

.eyebrow.coral,
.eyebrow.teal,
.eyebrow.yellow {
  position: relative;
  display: inline-flex;
}

.eyebrow.coral::after,
.eyebrow.teal::after,
.eyebrow.yellow::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 3px;
  border-radius: 50%;
  background: var(--pink);
  transform: rotate(-2deg);
}

.eyebrow.teal::after {
  background: var(--teal);
}

.eyebrow.yellow::after {
  background: var(--yellow);
}

.hero h1,
.section-heading h2,
.occasion-copy h2,
.trust-heading h2,
.search-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 570px;
  font-size: clamp(52px, 5.25vw, 72px);
  line-height: 0.95;
}

.hero-line {
  display: block;
  width: max-content;
  max-width: 100%;
}

.hero-highlight-line {
  display: flex;
  align-items: center;
  gap: 0.05em;
  white-space: nowrap;
}

.marker {
  position: relative;
  z-index: 0;
  display: inline-block;
  margin: -0.05em -0.1em -0.04em;
  padding: 0.02em 0.18em 0.09em;
  color: var(--ink);
  font-family: "Kalam", "Segoe Print", cursive;
  font-size: 0.98em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.92;
  transform: rotate(-1.2deg);
  white-space: nowrap;
}

.marker::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 54%;
  right: -0.09em;
  left: -0.09em;
  height: 0.88em;
  background: url("../images/marker-pink.svg") 50% 50% / 100% 100% no-repeat;
  transform: translateY(-50%) rotate(-0.8deg);
}

.hero-lead {
  max-width: 500px;
  margin: 30px 0 0;
  color: #3f3b38;
  font-size: clamp(16px, 1.35vw, 19px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}

.hero-actions .button {
  width: auto;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 0 rgba(247, 183, 24, 0);
}

.button-dark:hover {
  box-shadow: 0 8px 0 var(--yellow);
}

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

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

.arrow-link {
  border-bottom: 2px solid var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-visual img {
  position: absolute;
  top: 50%;
  left: -6%;
  width: 112%;
  height: 112%;
  max-width: none;
  object-fit: contain;
  transform: translateY(-50%);
}

.audience-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 38px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.audience-strip a {
  display: flex;
  min-width: 0;
  min-height: 96px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.audience-strip a:last-child {
  border-right: 0;
}

.audience-strip a:hover {
  border-radius: 12px;
  color: #166f68;
  background: var(--teal-soft);
  transform: translateY(-2px);
}

.audience-strip a .audience-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  transition: transform 180ms ease;
}

.audience-strip a .audience-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.audience-strip a:hover .audience-icon {
  transform: rotate(-4deg) scale(1.08);
}

.section {
  padding: 110px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.section-heading h2,
.occasion-copy h2,
.trust-heading h2,
.search-dialog h2 {
  font-size: clamp(36px, 4vw, 52px);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 3px;
  border-color: var(--pink);
}

.article-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -12px 0 28px;
}

.article-filters button {
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  background: var(--white);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.article-filters button:hover,
.article-filters button.active {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

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

.article-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 9px 25px rgba(31, 27, 24, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.article-card.is-hidden {
  display: none;
}

.card-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f3f1ed;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.article-card:hover .card-image img {
  transform: scale(1.035);
}

.card-image.image-shift img {
  transform: scale(1.09) translateX(2%);
}

.article-card:hover .card-image.image-shift img {
  transform: scale(1.13) translateX(-1%);
}

.tag {
  position: absolute;
  bottom: 0;
  left: 22px;
  padding: 7px 12px 6px;
  border-radius: 9px 9px 0 0;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-teal {
  color: var(--white);
  background: var(--teal);
}

.tag-pink,
.tag-coral {
  background: var(--pink);
}

.tag-yellow {
  background: var(--yellow);
}

.card-body {
  padding: 22px 23px 24px;
}

.card-kicker {
  margin: 0 0 9px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 25px);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.card-body > p:not(.card-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  color: #7d7771;
  font-size: 12px;
}

.card-meta span::before {
  content: "•";
  margin-right: 10px;
}

.occasion-section {
  position: relative;
  overflow: hidden;
  padding-block: 90px;
  background: linear-gradient(115deg, #fff8e5 0%, #fff7f4 56%, #effaf8 100%);
}

.occasion-section::before,
.occasion-section::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 120px;
  border-radius: 65% 35% 55% 45% / 52% 64% 36% 48%;
}

.occasion-section::before {
  top: -50px;
  left: -80px;
  background: var(--yellow);
  transform: rotate(-20deg);
}

.occasion-section::after {
  right: -80px;
  bottom: -55px;
  background: var(--teal);
  transform: rotate(24deg);
}

.occasion-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 80px;
}

.occasion-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin: 22px 0 28px;
  color: var(--muted);
}

.occasion-list {
  display: grid;
  gap: 12px;
}

.occasion-list a {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 100px;
  padding: 12px 24px 12px 12px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  transition: transform 180ms ease, background 180ms ease;
}

.occasion-list a:hover {
  background: var(--white);
  transform: translateX(7px);
}

.occasion-list time {
  display: grid;
  height: 76px;
  place-items: center;
  align-content: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--pink);
  line-height: 1;
}

.occasion-list a:nth-child(2) time {
  color: var(--ink);
  background: var(--yellow);
}

.occasion-list a:nth-child(3) time {
  background: var(--teal);
}

.occasion-list time strong {
  font-family: var(--display);
  font-size: 30px;
}

.occasion-list time span,
.occasion-list div span {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.occasion-list div {
  display: grid;
}

.occasion-list div span {
  color: var(--muted);
}

.occasion-list div strong {
  margin-top: 2px;
  font-family: var(--display);
  font-size: 20px;
}

.occasion-list i {
  font-style: normal;
  font-size: 23px;
}

.trust-heading {
  align-items: end;
}

.trust-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}

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

.trust-grid article {
  position: relative;
  min-height: 230px;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pink-soft);
}

.trust-grid article:nth-child(2) {
  background: var(--yellow-soft);
}

.trust-grid article:nth-child(3) {
  background: var(--teal-soft);
}

.trust-grid article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 44% 56% 51% 49% / 61% 45% 55% 39%;
  font-family: var(--display);
  font-weight: 900;
  transform: rotate(-4deg);
}

.trust-grid h3 {
  margin: 35px 0 8px;
  font-family: var(--display);
  font-size: 23px;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding-top: 68px;
  color: rgba(255, 255, 255, 0.9);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 58px;
  padding-bottom: 60px;
}

.footer-brand {
  color: var(--white);
}

.footer-top > div:first-child > p,
.footer-note p {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
}

.footer-top nav,
.footer-note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.footer-top nav strong,
.footer-note strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 14px;
}

.footer-top nav a {
  color: rgba(255, 255, 255, 0.62);
}

.footer-top nav a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.search-dialog {
  width: min(720px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 35px 100px rgba(17, 17, 17, 0.24);
}

.search-dialog::backdrop {
  background: rgba(17, 17, 17, 0.48);
  backdrop-filter: blur(6px);
}

.search-dialog-inner {
  position: relative;
  padding: clamp(28px, 6vw, 58px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.search-dialog label {
  display: block;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 800;
}

.search-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 10px;
}

.search-field input {
  min-width: 0;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

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

.search-suggestions button {
  padding: 6px 10px;
  border: 1px solid var(--teal);
  border-radius: 99px;
  color: #176e67;
  background: transparent;
  cursor: pointer;
}

.search-result {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  max-width: min(380px, calc(100% - 40px));
  padding: 13px 18px;
  border-radius: 12px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .header-inner {
    min-height: 82px;
  }

  .main-nav {
    position: fixed;
    z-index: 110;
    top: 82px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 20px;
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.09);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

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

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

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

  .hero {
    padding-top: 34px;
  }

  .hero-grid {
    grid-template-columns: minmax(360px, 0.85fr) minmax(430px, 1.15fr);
    min-height: 500px;
  }

  .hero h1 {
    font-size: clamp(50px, 6vw, 66px);
  }

  .hero-visual {
    min-height: 455px;
  }

  .audience-strip {
    overflow-x: auto;
    grid-template-columns: repeat(7, 140px);
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
  }

  .audience-strip a {
    scroll-snap-align: start;
  }

  .footer-top {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

  .footer-note {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-note p {
    margin: 0;
  }
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
  }

  .hero h1 {
    max-width: 680px;
  }

  .hero-visual {
    min-height: 430px;
    margin-top: 10px;
  }

  .hero-visual img {
    width: 112%;
    height: 112%;
    left: -6%;
    transform: translateY(-50%);
  }

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

  .occasion-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .trust-heading {
    align-items: flex-start;
  }

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

  .trust-grid article {
    min-height: 0;
  }

}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    gap: 6px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-mark {
    width: 48px;
    height: 47px;
    font-size: 44px;
  }

  .brand-bow {
    top: -11px;
    font-size: 29px;
  }

  .hero {
    padding-top: 26px;
  }

  .hero h1 {
    font-size: clamp(42px, 11.8vw, 54px);
    line-height: 0.95;
  }

  .hero-highlight-line {
    gap: 0.06em;
  }

  .marker {
    margin-inline: -0.07em;
    padding-inline: 0.14em;
    font-size: 1.02em;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 330px;
    margin-top: 28px;
  }

  .hero-visual img {
    width: 112%;
    height: 112%;
    left: -6%;
    object-fit: contain;
    transform: translateY(-50%);
  }

  .doodle-heart {
    font-size: 54px;
  }

  .audience-strip {
    width: calc(100% - 14px);
    margin-left: 14px;
    border-radius: 16px 0 0 16px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .section-heading h2,
  .occasion-copy h2,
  .trust-heading h2,
  .search-dialog h2 {
    font-size: 38px;
  }

  .article-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .article-filters button {
    flex: 0 0 auto;
  }

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

  .card-body h3 {
    font-size: 23px;
  }

  .occasion-section {
    padding-block: 72px;
  }

  .occasion-list a {
    grid-template-columns: 66px 1fr auto;
    gap: 14px;
    min-height: 88px;
    padding-right: 16px;
  }

  .occasion-list time {
    height: 64px;
  }

  .occasion-list time strong {
    font-size: 25px;
  }

  .occasion-list div strong {
    font-size: 17px;
  }

  .trust-heading > p {
    margin-top: -10px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-top > div:first-child,
  .footer-note {
    grid-column: 1 / -1;
  }

  .footer-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .search-field {
    grid-template-columns: 1fr;
  }
}

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