/* Hotel Indigo Raleigh Downtown - Slide Deck Design System */

:root {
  --bg-primary: #F4F3EE;
  --bg-surface: #FAF9F5;
  --bg-white: #FFFFFF;
  
  /* Primary Navy Color #002e52 */
  --color-primary: #002e52;
  --color-primary-dark: #002e52;
  --text-navy: #002e52;
  --text-navy-muted: #22425c;
  --text-cream: #F4F3EE;
  --text-white: #FFFFFF;
  
  /* Color #C2CDD4 applied to Coming Soon, Status, Location, Architecture accents */
  --text-sky-slate: #C2CDD4;
  --text-gold: #C2CDD4;
  
  --accent-bronze: #9C7C49;
  --border-rule: #A5B8C5;
  --border-light: rgba(0, 46, 82, 0.18);
  
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* High Ground Lounge Brand Palette & Type */
  --hg-burgundy: #4A1424;
  --hg-cream: #F3EDDE;
  --hg-olive: #55522A;
  --hg-tan: #B49B74;
  --hg-font-script: 'Pinyon Script', 'Cormorant Garamond', cursive;
  --hg-font-wide: 'Archivo', 'Plus Jakarta Sans', sans-serif;
  --hg-font-serif: 'EB Garamond', 'Cormorant Garamond', Georgia, serif;
  
  --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

/* STRICT NO BORDER RADIUS GLOBALLY */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-navy);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--bg-primary);
}

/* Typography - ALL HEADINGS UPPERCASE */
h1, h2, h3, h4, .serif-heading, .heading-uppercase {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase !important;
}

p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-navy-muted);
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgb(0 0 0) 0%, rgba(0, 0, 0, 0) 100%);
  transition: all 0.35s ease;
}

.navbar.scrolled {
  background: var(--color-primary) !important;
  padding: 0.3rem 4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Logo Image Styling & White Filter When Scrolled / Over Header BG */
.brand-logo-img {
  height: 100px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: height 0.35s ease, filter 0.35s ease;
}

.navbar.scrolled .brand-logo-img {
  height: 80px;
  filter: brightness(0) invert(1) !important;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase !important;
  color: #FFFFFF;
}

.brand-subtitle {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-sky-slate);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background-color: var(--text-sky-slate);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Header CTA Default State (Outline Border) */
.btn-nav {
  display: inline-block;
  padding: 0.6rem 1.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-nav:hover {
  background-color: var(--text-sky-slate);
  color: var(--color-primary);
  border-color: var(--text-sky-slate);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  margin: 5px 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: #000000;
  overflow: hidden;
  padding-bottom: 4.5rem;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 55%, rgb(0 0 0 / 51%) 75%, rgb(0 0 0 / 69%) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  color: var(--text-white);
  margin-top: 0;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
  background: transparent;
  border: none !important;
  box-shadow: none !important;
  margin-bottom: 1rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--text-sky-slate);
  box-shadow: 0 0 10px var(--text-sky-slate);
  display: inline-block;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-sky-slate);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.8vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase !important;
  color: #FFFFFF;
  text-shadow: none !important;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgb(255 255 255);
  max-width: 900px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
  text-shadow: none !important;
}

/* General Section Layout */
.section {
  padding: 7rem 5rem;
  max-width: 1650px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border-light);
}

.section-eyebrow-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-bronze);
  margin-bottom: 0.75rem;
  display: block;
}

/* Section 1: About Hotel & Roots in Raleigh */
.about-section {
  background-color: var(--bg-primary);
}

.about-grid-layout {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 5rem;
  align-items: center;
  max-width: 1650px;
  margin: 0 auto;
}

.about-img-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-rect-image-wrapper {
  width: 100%;
  height: 520px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 46, 82, 0.1);
  border: 1px solid var(--border-rule);
}

.about-rect-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-main-text-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 550px;
}

.about-heading-title {
  font-size: 1.8rem;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 0.25rem;
  text-transform: uppercase !important;
}

.about-paragraph {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-navy-muted);
}

.about-signature-tag {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent-bronze);
  border-left: 2px solid var(--accent-bronze);
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}

/* Section 2: High Level Overview of Rooms */
.full-bleed-block-section {
  width: 100%;
  display: grid;
  grid-template-columns: 2.5fr 1.5fr;
  background-color: var(--color-primary);
  color: var(--text-white);
  border-top: 1px solid var(--border-rule);
  border-bottom: 1px solid var(--border-rule);
}

.block-left-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  align-self: center;
}

.block-right-content {
  padding: 6rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  background-color: var(--color-primary);
  max-width: 680px;
}

.block-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-sky-slate);
}

.block-title {
  font-size: 1.8rem;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 0.25rem;
  text-transform: uppercase !important;
}

.block-desc {
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(244, 243, 238, 0.88);
  max-width: 680px;
}

/* Form & Section CTA Button */
.btn-gold {
  display: inline-block;
  align-self: flex-start;
  padding: 0.85rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: var(--text-sky-slate);
  border: 1px solid var(--text-sky-slate);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  text-align: center;
}

.btn-gold:hover {
  background-color: transparent !important;
  border: 1px solid var(--text-sky-slate) !important;
  color: var(--text-sky-slate) !important;
  transform: translateY(-2px);
}

.full-bleed-block-section .btn-gold:hover,
.footer-simple .btn-gold:hover {
  background-color: transparent !important;
  border: 1px solid #FFFFFF !important;
  color: #FFFFFF !important;
}

.modal-card .btn-gold:hover {
  background-color: transparent !important;
  border: 1px solid var(--color-primary) !important;
  color: var(--color-primary) !important;
}

/* Local Highlights Section */
.editorial-column-section {
  background-color: var(--bg-surface);
  padding: 7rem 4rem 8.5rem;
  position: relative;
  border-bottom: 1px solid var(--border-rule);
}

.editorial-header-center {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 5rem;
}

.editorial-title-large {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase !important;
}

/* High Ground Lounge Section */
.highground-section {
  background-color: var(--hg-burgundy);
  border-top: 1px solid rgba(243, 237, 222, 0.2);
  border-bottom: 1px solid rgba(243, 237, 222, 0.2);
}

.hg-pattern-strip {
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Crect width='48' height='48' fill='%23E9DFC7'/%3E%3Cpath d='M0 12L12 0L12 12L0 24Z' fill='%234A4518'/%3E%3Cpath d='M12 0L24 12L24 24L12 12Z' fill='%235C5524'/%3E%3Cpath d='M0 36L12 24L12 36L0 48Z' fill='%234A4518'/%3E%3Cpath d='M12 24L24 36L24 48L12 36Z' fill='%235C5524'/%3E%3Cpath d='M24 0L36 -12L36 0L24 12Z' fill='%236B6526'/%3E%3Cpath d='M36 -12L48 0L48 12L36 0Z' fill='%237C7432'/%3E%3Cpath d='M24 24L36 12L36 24L24 36Z' fill='%236B6526'/%3E%3Cpath d='M36 12L48 24L48 36L36 24Z' fill='%237C7432'/%3E%3Cpath d='M24 48L36 36L36 48L24 60Z' fill='%236B6526'/%3E%3Cpath d='M36 36L48 48L48 60L36 48Z' fill='%237C7432'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: auto 30px;
}

.hg-layout {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr;
  align-items: stretch;
}

.hg-media {
  position: relative;
  overflow: hidden;
  order: 2;
  align-self: center;
}

.hg-content {
  order: 1;
}

.hg-media img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}

.hg-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2.5rem;
  max-width: 720px;
  justify-self: center;
}

.hg-eyebrow {
  font-family: var(--hg-font-wide);
  font-stretch: 125%;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hg-tan);
  margin-bottom: 2rem;
}

.hg-logo {
  width: min(200px, 45%);
  height: auto;
  display: block;
  margin-bottom: 0;
}

.hg-heading {
  font-family: var(--hg-font-wide);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hg-cream);
  margin-bottom: 1rem;
}

.hg-divider {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0.4rem 0;
}

.hg-divider span {
  display: block;
  width: 2px;
  height: 24px;
  background-color: var(--hg-tan);
}

.hg-tagline {
  font-family: var(--hg-font-wide);
  font-stretch: 125%;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--hg-cream);
  margin: 0.6rem 0;
}

.hg-desc {
  font-family: var(--hg-font-serif);
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(243, 237, 222, 0.9);
  max-width: 640px;
  margin-top: 1.75rem;
}

.hg-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: var(--hg-font-wide);
  font-stretch: 125%;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hg-tan);
}

.hg-meta-sep {
  display: none;
}

.hg-btn {
  margin-top: 1rem;
  padding: 0.95rem 2.4rem;
  font-family: var(--hg-font-wide);
  font-stretch: 125%;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hg-burgundy);
  background-color: var(--hg-cream);
  border: 1px solid var(--hg-cream);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hg-btn:hover {
  background-color: transparent;
  color: var(--hg-cream);
  transform: translateY(-2px);
}

/* Local Highlights: Paired Image + Copy Rows */
.highlights-list {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  margin: 0 auto;
}

.highlight-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: center;
  padding: 3.5rem 0;
}

.highlight-row:first-child {
  padding-top: 0;
}

.highlight-row:last-child {
  padding-bottom: 0;
}

.highlight-row + .highlight-row {
  border-top: 1px solid var(--border-light);
}

.highlight-row-flip .highlight-media {
  order: 2;
}

.highlight-row-flip .highlight-copy {
  order: 1;
}

.highlight-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 46, 82, 0.08);
  border: 1px solid var(--border-rule);
}

.sharp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--transition-smooth);
}

.highlight-media:hover .sharp-img {
  transform: scale(1.04);
}

.highlight-copy {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.editorial-underlined-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase !important;
  color: var(--color-primary);
  display: inline-block;
  position: relative;
  padding-bottom: 0.35rem;
  margin-bottom: 0.35rem;
}

.editorial-underlined-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55px;
  height: 1.5px;
  background-color: var(--color-primary);
}

.editorial-paragraph {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-navy-muted);
}

/* Meetings & Events Section */
.events-section {
  background-color: var(--bg-primary);
}

.events-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.events-intro {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 780px;
}

.events-table-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid var(--border-rule);
  background-color: var(--bg-white);
  box-shadow: 0 15px 35px rgba(0, 46, 82, 0.06);
  overflow-x: auto;
}

.events-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.events-table th {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-cream);
  background-color: var(--color-primary);
  padding: 1rem 1.25rem;
  text-align: left;
  white-space: nowrap;
}

.events-table td {
  padding: 1.15rem 1.25rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: var(--text-navy-muted);
  white-space: nowrap;
}

.events-table tbody tr:hover {
  background-color: var(--bg-surface);
}

.events-space-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.events-space-loc {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bronze);
  margin-top: 0.2rem;
}

.events-table .num {
  font-weight: 600;
  color: var(--text-navy);
}

.events-table-note {
  max-width: 1080px;
  margin: 1rem auto 0;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--text-navy-muted);
  opacity: 0.85;
  text-align: center;
}

.events-features {
  list-style: none;
  max-width: 1080px;
  margin: 2.75rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.events-features li {
  border-top: 2px solid var(--accent-bronze);
  padding-top: 0.85rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-navy-muted);
}

.events-cta {
  text-align: center;
  margin-top: 3.25rem;
}

.events-section .btn-gold {
  display: inline-block;
  align-self: center;
}

.events-section .btn-gold:hover {
  background-color: transparent !important;
  border: 1px solid var(--color-primary) !important;
  color: var(--color-primary) !important;
}

/* Wide High Brightness Footer */
.footer-simple {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 4.5rem 5rem 3rem;
  border-top: 2px solid rgba(255, 255, 255, 0.35);
}

.footer-simple-container {
  max-width: 1650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-brand-title-simple {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-sky-slate);
  letter-spacing: 0.06em;
  text-transform: uppercase !important;
  margin-bottom: 0.25rem;
}

.footer-short-about {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #FFFFFF;
  max-width: 900px;
  font-weight: 400;
}

.footer-btn-wrapper {
  margin-top: 0.5rem;
}

.footer-bottom-line {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #FFFFFF;
  font-weight: 500;
}

.footer-bottom-line p {
  color: #FFFFFF !important;
}

.footer-link-sage {
  color: var(--text-sky-slate);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-link-sage:hover {
  color: #FFFFFF;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 46, 82, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--bg-primary);
  width: 90%;
  max-width: 540px;
  padding: 3.5rem;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--text-sky-slate);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-navy);
  cursor: pointer;
}

.input-field {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  border: 1px solid var(--border-rule);
  background-color: #FFFFFF;
  color: var(--text-navy);
  outline: none;
  font-family: var(--font-sans);
}

textarea.input-field {
  resize: vertical;
  min-height: 100px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .navbar {
    padding: 1.25rem 2rem;
  }
  
  .navbar.scrolled {
    padding: 0.9rem 2rem;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }

  .menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background-color: var(--color-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 3rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.4s var(--transition-smooth);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    font-size: 1rem;
  }

  .btn-nav {
    font-size: 0.85rem;
    padding: 0.85rem 1.8rem;
  }

  .section, .editorial-column-section {
    padding: 5rem 2rem;
  }

  .about-grid-layout,
  .full-bleed-block-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-main-text-box, .block-right-content {
    max-width: 100%;
  }

  .about-rect-image-wrapper {
    height: 380px;
  }

  .block-right-content {
    padding: 4rem 2.5rem;
  }

  .highlight-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }

  .highlight-row-flip .highlight-media,
  .highlight-row-flip .highlight-copy {
    order: initial;
  }

  .hg-layout {
    grid-template-columns: 1fr;
  }

  .hg-media,
  .hg-content {
    order: initial;
  }

  .hg-media {
    min-height: 0;
  }

  .hg-content {
    padding: 4rem 1.5rem 4.5rem;
    max-width: 100%;
  }

  .hg-logo {
    width: min(260px, 75%);
  }

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

@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
    padding-bottom: 3.5rem;
  }

  .hero-content {
    padding: 0 1.25rem;
  }

  .footer-simple {
    padding: 3.5rem 1.25rem 2.5rem;
  }

  .events-features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hg-meta {
    gap: 0.5rem;
  }

  .hg-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
  }

  .footer-simple-container {
    width: 100%;
    max-width: 100%;
    gap: 1.25rem;
  }

  .footer-bottom-line {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 1.5rem;
  }

  .modal-card {
    padding: 2.5rem 1.5rem;
  }
}
