@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg: #f4f7fc;
  --panel: #ffffff;
  --panel-soft: #eef3fb;
  --ink: #0d1b2d;
  --muted: #57657a;
  --line: #d8e2f0;
  --brand: #0f766e;
  --brand-strong: #0d5f59;
  --brand-soft: #dbf2ef;
  --accent: #f59e0b;
  --header-shadow: 0 16px 34px rgba(7, 17, 32, 0.08);
  --card-shadow: 0 18px 40px rgba(12, 28, 49, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-shell {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 680px at 95% -8%, rgba(15, 118, 110, 0.15), transparent 55%),
    radial-gradient(980px 560px at 2% 12%, rgba(245, 158, 11, 0.12), transparent 60%),
    var(--bg);
  line-height: 1.6;
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: #091424;
  font-family: "Sora", "Manrope", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

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

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

.container {
  width: min(1160px, 100% - 2.4rem);
  margin: 0 auto;
}

.announcement-bar {
  background: #081427;
  color: #d9e7fa;
  border-bottom: 1px solid rgba(217, 231, 250, 0.15);
}

.announcement-row {
  min-height: 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.announcement-row span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(217, 231, 250, 0.56);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(244, 247, 252, 0.84);
  border-bottom: 1px solid rgba(216, 226, 240, 0.9);
  box-shadow: var(--header-shadow);
}

.nav-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.brand-wordmark {
  letter-spacing: 0.01em;
  font-size: clamp(1.35rem, 2.25vw, 1.8rem);
  color: #121f2e;
}

.top-links {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.top-links a {
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  color: #34455c;
  transition: all 0.22s ease;
}

.top-links a:hover {
  color: #0d1d31;
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(15, 118, 110, 0.26);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-actions a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: #1c3049;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.nav-actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.45);
}

.section {
  padding: 4.9rem 0;
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.7s cubic-bezier(0.2, 1, 0.22, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head {
  margin-bottom: 1.9rem;
  max-width: 680px;
}

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

.section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.hero {
  padding-top: 5.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
}

.hero-content h1 {
  font-size: clamp(2.15rem, 4.9vw, 4rem);
  max-width: 16ch;
}

.hero-copy {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.45rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.78rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #effdfb;
  background: linear-gradient(145deg, var(--brand), #129183);
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.24);
}

.btn-secondary {
  color: #1a2d45;
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(15, 118, 110, 0.28);
}

.tag-row {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag-row span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 0.32rem 0.68rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #2f425b;
}

.hero-metrics {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-metrics article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.75rem;
}

.hero-metrics strong {
  display: block;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.06rem;
}

.hero-metrics span {
  display: block;
  margin-top: 0.2rem;
  color: #4f6078;
  font-size: 0.76rem;
  font-weight: 700;
}

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

.hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--card-shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main {
  width: 72%;
  height: 490px;
}

.hero-side {
  position: absolute;
  width: 44%;
  height: 218px;
  right: 0;
}

.hero-side.top {
  top: 6px;
}

.hero-side.bottom {
  bottom: 44px;
}

.floating-note {
  position: absolute;
  left: 22px;
  bottom: -10px;
  max-width: 270px;
  border: 1px solid rgba(15, 118, 110, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 28px rgba(9, 23, 41, 0.1);
  padding: 0.85rem 0.9rem;
}

.floating-note p {
  margin-bottom: 0.35rem;
  color: #4a5e76;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.floating-note strong {
  font-size: 0.92rem;
  line-height: 1.35;
}

.principles {
  padding-top: 3.6rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.principle-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f1f6fd 100%);
  border-radius: 18px;
  padding: 1.15rem;
}

.principle-index {
  display: inline-flex;
  margin-bottom: 0.6rem;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--brand-strong);
}

.principle-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.principle-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.logo-section {
  padding-top: 3.2rem;
}

.logo-panel {
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 26%, rgba(164, 209, 255, 0.3), transparent 46%),
    radial-gradient(circle at 12% 14%, rgba(240, 211, 255, 0.24), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #edf4fb 100%);
  padding: 1.35rem 1.35rem 1.55rem;
  box-shadow: 0 16px 36px rgba(11, 26, 45, 0.08);
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0.2rem 0;
}

.trusted-card {
  min-height: 86px;
  border-radius: 16px;
  border: 1px solid rgba(159, 175, 198, 0.32);
  background: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem;
  box-shadow: 0 8px 20px rgba(7, 17, 31, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.trusted-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.4);
  box-shadow: 0 16px 26px rgba(10, 25, 46, 0.14);
}

.trusted-card img {
  width: 100%;
  max-height: 34px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.22s ease, opacity 0.22s ease;
}

.trusted-card:hover img {
  filter: grayscale(10%);
  opacity: 1;
}

.press-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.press-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  border: 1px solid rgba(159, 175, 198, 0.4);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.press-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(7, 17, 31, 0.14);
}

.press-image {
  margin: 0;
  height: 100%;
  border-right: 1px solid rgba(159, 175, 198, 0.35);
  background: #e7eff9;
}

.press-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-copy {
  padding: 0.9rem 1rem;
}

.press-copy h3 {
  font-size: 1rem;
  margin-bottom: 0.36rem;
}

.press-copy p {
  color: var(--muted);
  font-size: 0.86rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 1rem;
}

.about-press-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-press-card {
  display: block;
}

.about-press-image {
  margin: 0;
}

.impact-story,
.impact-stats article {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
}

.impact-story {
  padding: 1.4rem;
}

.impact-story h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
}

.impact-story p {
  margin-top: 0.85rem;
  color: var(--muted);
  max-width: 56ch;
}

.inline-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--brand-strong);
  border-bottom: 1px solid rgba(13, 95, 89, 0.36);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.impact-stats article {
  padding: 1.1rem;
}

.impact-stats strong {
  display: block;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.02rem;
}

.impact-stats span {
  display: block;
  margin-top: 0.42rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #51637c;
}

.track-grid,
.event-grid,
.dinner-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

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

.track-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fc 100%);
  padding: 1.35rem;
}

.track-image {
  margin: -1.35rem -1.35rem 1rem;
  height: 210px;
  overflow: hidden;
  border-radius: 20px 20px 14px 14px;
}

.track-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-card h3 {
  font-size: 1.28rem;
  margin-bottom: 0.5rem;
}

.track-card p {
  color: var(--muted);
}

.track-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
}

.track-card li {
  margin-bottom: 0.4rem;
  color: #33475f;
}

.events-shell {
  margin-top: 1.1rem;
}

.events-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
  margin-bottom: 1.2rem;
}

.events-tab {
  width: 100%;
  min-height: 62px;
  border-radius: 14px;
  border: 2px solid rgba(159, 175, 198, 0.45);
  background: rgba(255, 255, 255, 0.86);
  color: #314760;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.events-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.42);
}

.events-tab.is-active,
.events-tab[aria-selected="true"] {
  color: #f0fbf9;
  border-color: rgba(9, 66, 61, 0.88);
  background: linear-gradient(150deg, #0b3e3a, #0f6760 58%, #159886);
  box-shadow: 0 14px 26px rgba(10, 59, 54, 0.25);
}

.events-panel {
  display: none;
}

.events-panel.is-active {
  display: block;
}

.events-empty {
  margin-top: 1rem;
  color: #51637c;
  font-size: 0.95rem;
  font-weight: 700;
}

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

.event-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  padding: 1.35rem;
  box-shadow: 0 14px 30px rgba(7, 17, 31, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(7, 17, 31, 0.14);
}

.event-image {
  margin: -1.35rem -1.35rem 1rem;
  height: 212px;
  overflow: hidden;
  border-radius: 22px 22px 14px 14px;
}

.event-image-link {
  display: block;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.event-image-link:hover .event-image img {
  transform: scale(1.02);
}

.event-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.72rem;
}

.event-date {
  background: rgba(245, 158, 11, 0.16);
  color: #965e00;
  border-radius: 10px;
  padding: 0.34rem 0.56rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.event-city {
  font-size: 0.77rem;
  font-weight: 800;
  color: #4e6178;
  letter-spacing: 0.08em;
}

.event-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.42rem;
}

.event-card p {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.event-meta span {
  border-radius: 999px;
  background: var(--panel-soft);
  color: #364b64;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.33rem 0.6rem;
}

.event-card.highlight {
  color: #f0fbf9;
  border-color: rgba(9, 66, 61, 0.66);
  background: linear-gradient(160deg, #0b3e3a, #0f6760 54%, #149889 100%);
}

.event-card.highlight h3,
.event-card.highlight p,
.event-card.highlight .event-city {
  color: #f0fbf9;
}

.event-card.highlight .event-date {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.event-card.highlight .event-meta span {
  background: rgba(255, 255, 255, 0.16);
  color: #f0fbf9;
}

.events-pagination {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
  margin-top: 1.1rem;
}

.events-page-btn {
  min-height: 56px;
  width: min(44%, 360px);
  border-radius: 12px;
  border: 1px solid rgba(13, 95, 89, 0.35);
  background: #ffffff;
  color: #14324a;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.events-page-btn[data-events-prev] {
  margin-right: auto;
}

.events-page-btn[data-events-next] {
  margin-left: auto;
}

.events-page-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.55);
  box-shadow: 0 12px 24px rgba(10, 25, 46, 0.12);
}

.events-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.products {
  padding-top: 3.1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(7, 17, 31, 0.08);
}

.product-image {
  margin: 0;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #d8e3f2;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.product-image-link:hover .product-image img {
  transform: scale(1.02);
}

.product-copy {
  padding: 1rem 1rem 1.15rem;
}

.product-eyebrow {
  display: inline-block;
  margin-bottom: 0.38rem;
  color: var(--brand-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-copy h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.product-copy p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

.event-gallery {
  padding-top: 3.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 168px;
  gap: 0.86rem;
}

.gallery-item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #d7e5f3;
  box-shadow: 0 10px 22px rgba(7, 17, 31, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

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

.dinner-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  padding: 1.5rem;
}

.dinner-card h3 {
  font-size: 1.34rem;
  margin-bottom: 0.52rem;
}

.dinner-card p {
  color: var(--muted);
}

.dinner-card.accent {
  border-color: rgba(10, 47, 43, 0.68);
  background: linear-gradient(145deg, #0b2f2c, #0f4f49);
}

.dinner-card.accent,
.dinner-card.accent h3,
.dinner-card.accent p,
.dinner-card.accent .eyebrow {
  color: #f0fbf9;
}

.contact-cta {
  padding-top: 3.2rem;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  border-radius: 22px;
  border: 1px solid rgba(13, 95, 89, 0.3);
  background:
    linear-gradient(145deg, rgba(15, 118, 110, 0.95), rgba(12, 80, 73, 0.95)),
    #0f766e;
  color: #eefdfa;
  padding: 1.5rem;
  box-shadow: 0 22px 44px rgba(10, 59, 54, 0.26);
}

.contact-grid h2 {
  color: #eefdfa;
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
}

.contact-grid p {
  color: rgba(238, 253, 250, 0.88);
  margin-top: 0.65rem;
}

.contact-actions {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 0.66rem;
}

.contact-actions .btn-primary {
  border-color: rgba(239, 253, 251, 0.3);
  background: #f1fffd;
  color: #0d5f59;
  box-shadow: none;
}

.contact-actions .btn-secondary {
  color: #edfdfa;
  border-color: rgba(239, 253, 251, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(216, 226, 240, 0.35);
  background: #091428;
  color: #d7e4f8;
  padding: 1.35rem 0;
}

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

.footer-row p {
  color: #a8bdd8;
  font-size: 0.9rem;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  color: #eef5ff;
  font-size: 0.88rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(238, 245, 255, 0.36);
}

@media (max-width: 1060px) {
  .hero-grid,
  .impact-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 470px;
    margin-top: 0.6rem;
  }

  .hero-main {
    width: 76%;
    height: 440px;
  }

  .hero-side {
    width: 42%;
    height: 196px;
  }

  .floating-note {
    left: 14px;
  }

  .contact-actions {
    justify-self: start;
    margin-top: 0.6rem;
  }
}

@media (max-width: 940px) {
  .nav-row {
    --mobile-header-align-inset: 0.78rem;
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 0.55rem 0;
    gap: 0.6rem;
  }

  .brand,
  .nav-actions {
    margin-left: var(--mobile-header-align-inset);
  }

  .top-links {
    justify-self: start;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 0.2rem;
  }

  .hero {
    padding-top: 4.7rem;
  }

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

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

  .hero-metrics,
  .principles-grid,
  .track-grid,
  .products-grid,
  .event-grid,
  .about-press-grid,
  .dinner-grid {
    grid-template-columns: 1fr;
  }

  .events-tabs {
    gap: 0.65rem;
  }

  .events-tab {
    min-height: 56px;
    font-size: 0.94rem;
  }

  .events-page-btn {
    width: min(48%, 320px);
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(1160px, 100% - 1.35rem);
  }

  .announcement-bar {
    display: none;
  }

  .announcement-row {
    justify-content: flex-start;
    min-height: 46px;
    letter-spacing: 0.06em;
    font-size: 0.71rem;
  }

  .announcement-row span:not(:last-child)::after {
    display: none;
  }

  .brand-wordmark {
    font-size: clamp(1.15rem, 5.4vw, 1.42rem);
  }

  .events-tabs {
    grid-template-columns: 1fr;
  }

  .events-page-btn {
    width: calc(50% - 0.5rem);
    min-height: 52px;
    font-size: 0.9rem;
  }

  .hero-main {
    width: 100%;
    height: 360px;
  }

  .hero-side,
  .floating-note {
    display: none;
  }

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

  .press-card {
    grid-template-columns: 1fr;
  }

  .press-image {
    height: 180px;
    border-right: 0;
    border-bottom: 1px solid rgba(159, 175, 198, 0.35);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

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