:root {
  --ink: #f7eee8;
  --ink-soft: rgba(247, 238, 232, 0.66);
  --ink-muted: rgba(247, 238, 232, 0.48);
  --navy: #021a3d;
  --navy-2: #001326;
  --navy-3: #06305f;
  --coral: #ff8f67;
  --coral-2: #ffb08f;
  --line: rgba(255, 143, 103, 0.38);
  --glass: rgba(255, 255, 255, 0.065);
  --glass-line: rgba(255, 255, 255, 0.13);
  --shadow-dark: rgba(0, 0, 0, 0.45);
  --shadow-light: rgba(255, 255, 255, 0.08);
  --max-width: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 74% 18%, rgba(13, 56, 112, 0.28), transparent 31rem),
    radial-gradient(circle at 15% 54%, rgba(8, 49, 105, 0.3), transparent 34rem),
    radial-gradient(circle at 52% 8%, rgba(255, 118, 82, 0.055), transparent 23rem),
    linear-gradient(135deg, var(--navy), #00162f 52%, var(--navy-2));
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 25vw 25vw;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.25) 70%, transparent);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at center, transparent 0, rgba(0, 7, 18, 0.34) 82%);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  --header-bg-alpha: 0;
  --header-border-alpha: 0;
  --header-shadow-alpha: 0;
  --header-blur: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 clamp(1rem, 4vw, 3.8rem);
  color: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, var(--header-border-alpha));
  background-color: rgba(3, 12, 28, var(--header-bg-alpha));
  box-shadow: 0 18px 60px rgba(0, 0, 0, var(--header-shadow-alpha));
  backdrop-filter: blur(var(--header-blur));
  transition:
    background-color 120ms linear,
    border-color 120ms linear,
    box-shadow 120ms linear,
    backdrop-filter 120ms linear;
}

.site-header.menu-is-open {
  --header-bg-alpha: 0.58;
  --header-border-alpha: 0.09;
  --header-shadow-alpha: 0.22;
  --header-blur: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo-img {
  display: block;
  width: 2.85rem;
  max-width: none;
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  opacity: 0.96;
  object-fit: contain;
  filter: saturate(1.08) drop-shadow(0 0 16px rgba(255, 176, 143, 0.18));
}

.brand-mark {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  color: var(--coral);
  border: 1px solid rgba(255, 143, 103, 0.34);
  border-radius: 999px;
  background: rgba(255, 143, 103, 0.07);
  box-shadow:
    8px 8px 18px rgba(0, 0, 0, 0.24),
    -7px -7px 16px rgba(255, 255, 255, 0.035);
}

.brand-mark i {
  font-size: 1.45rem;
}

.brand-copy {
  display: grid;
  gap: 0.16rem;
  line-height: 1;
}

.brand-name {
  color: var(--coral);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-note {
  color: var(--ink-muted);
  font-size: 0.57rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3.4rem);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  color: var(--ink-soft);
  font-family: "Rajdhani", "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 220ms ease, transform 220ms ease;
}

.nav-link::after {
  position: absolute;
  left: 50%;
  bottom: 0.26rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  content: "";
  background: var(--coral);
  opacity: 0;
  transform: translateX(-50%) translateY(0.2rem) scale(0.6);
  transition: opacity 220ms ease, transform 220ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--coral-2);
  transform: translateY(-1px);
}

.nav-link.is-active::after,
.nav-link:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.menu-toggle,
.menu-backdrop {
  display: none;
}

.section {
  position: relative;
  padding: clamp(4.8rem, 8vw, 8rem) clamp(1.2rem, 5vw, 4rem);
}

.hero {
  display: grid;
  min-height: 82svh;
  place-items: center;
  padding-top: var(--header-height);
  background: transparent;
  overflow: hidden;
  border-bottom: 0;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero::before {
  z-index: 0;
  background:
    linear-gradient(rgba(2, 18, 42, 0.46), rgba(2, 18, 42, 0.5)),
    url("home-flower-bg.png") center 44% / cover no-repeat;
  opacity: 0.35;
  filter: saturate(0.96) contrast(0.96);
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 48%,
    rgba(0, 0, 0, 0.78) 68%,
    rgba(0, 0, 0, 0.38) 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 48%,
    rgba(0, 0, 0, 0.78) 68%,
    rgba(0, 0, 0, 0.38) 86%,
    transparent 100%
  );
}

.hero::after {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 34%, transparent 0 28%, rgba(0, 10, 25, 0.18) 72%),
    linear-gradient(to bottom, rgba(0, 19, 45, 0) 44%, rgba(0, 19, 45, 0.16) 74%, rgba(0, 19, 45, 0.04) 90%, rgba(0, 19, 45, 0) 100%);
}

.hero-mosaic {
  position: absolute;
  inset: 0;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 52% 48%;
  opacity: 0.9;
}

.mosaic-tile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background-image:
    linear-gradient(rgba(4, 17, 40, 0.12), rgba(4, 17, 40, 0.48)),
    url("hero-reference.png");
  background-size: 210% auto;
  background-repeat: no-repeat;
  filter: saturate(1.22);
}

.mosaic-tile::after {
  position: absolute;
  inset: -1.5rem;
  content: "";
  background:
    linear-gradient(135deg, rgba(3, 17, 40, 0.16), rgba(5, 20, 42, 0.46)),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(0, 0, 0, 0.42));
  backdrop-filter: blur(2px);
}

.tile-one {
  background-position: 0% 0%;
}

.tile-two {
  background-position: 35% 0%;
}

.tile-three {
  background-position: 62% 0%;
}

.tile-four {
  background-position: 100% 0%;
}

.tile-five {
  background-position: 2% 55%;
}

.tile-six {
  background-position: 42% 58%;
}

.tile-seven {
  grid-column: span 2;
  background-size: 160% auto;
  background-position: 84% 56%;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  display: none;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(2, 8, 22, 0.26) 54%, rgba(2, 8, 22, 0.95) 100%),
    radial-gradient(circle at 50% 44%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52) 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(920px, 92vw);
  gap: 0.55rem;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--coral);
  font-family: "Plus Jakarta Sans", "Rajdhani", "Inter", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  max-width: 31rem;
  opacity: 0.96;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  text-transform: uppercase;
  transform: translateY(3.8rem);
}

h1,
h2,
h3,
.section-kicker {
  margin: 0;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--coral);
  font-size: 8.6rem;
  font-style: italic;
  line-height: 0.82;
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}

.hero-logo-img {
  display: block;
  width: min(860px, 92vw);
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  object-fit: contain;
  opacity: 0.95;
  filter: saturate(1.12) drop-shadow(0 22px 52px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.18rem;
  line-height: 1.7;
  transform: translateY(-2.8rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: -4.6rem;
  transform: translateY(0);
}

.neo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
  height: 2.02rem;
  min-height: 2.02rem;
  width: 12.2rem;
  min-width: 12.2rem;
  padding: 0 1.25rem;
  color: var(--coral);
  border: 1px solid rgba(255, 143, 103, 0.26);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 143, 103, 0.095), rgba(2, 18, 42, 0.58));
  box-shadow:
    9px 9px 20px rgba(0, 0, 0, 0.26),
    -7px -7px 18px rgba(255, 255, 255, 0.04),
    inset 1px 1px 0 rgba(255, 255, 255, 0.07);
  font-family: "Rajdhani", "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: border-color 240ms ease, box-shadow 240ms ease, color 240ms ease, transform 240ms ease;
}

.neo-button i {
  color: currentColor;
  font-size: 0.88rem;
}

.neo-button:hover,
.neo-button:focus-visible {
  color: var(--coral-2);
  border-color: rgba(255, 143, 103, 0.52);
  box-shadow:
    11px 11px 24px rgba(0, 0, 0, 0.3),
    -8px -8px 20px rgba(255, 255, 255, 0.052),
    0 0 24px rgba(255, 143, 103, 0.28),
    inset 1px 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.neo-button-soft {
  background: linear-gradient(145deg, rgba(255, 143, 103, 0.06), rgba(2, 18, 42, 0.48));
}

.scroll-cue {
  position: relative;
  z-index: 2;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  margin-top: -0.5rem;
  place-items: center;
  color: var(--coral-2);
  border: 1px solid rgba(255, 143, 103, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    8px 8px 18px rgba(0, 0, 0, 0.2),
    -8px -8px 18px rgba(255, 255, 255, 0.04);
  animation: cueBounce 1800ms ease-in-out infinite;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  border-color: rgba(255, 143, 103, 0.46);
  box-shadow:
    10px 10px 20px rgba(0, 0, 0, 0.22),
    -8px -8px 18px rgba(255, 255, 255, 0.055),
    0 0 24px rgba(255, 143, 103, 0.22);
}

.scroll-cue i {
  font-size: 1.4rem;
}

.section-heading {
  display: grid;
  gap: 1.05rem;
  justify-items: center;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.section-kicker {
  color: var(--coral);
  font-family: "Rajdhani", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.section-line {
  display: block;
  width: 4.1rem;
  height: 1px;
  background: var(--coral);
  box-shadow: 0 0 18px rgba(255, 143, 103, 0.3);
}

.menu-section {
  position: relative;
  display: grid;
  min-height: 34svh;
  align-items: start;
  justify-items: center;
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
  background: linear-gradient(to bottom, rgba(0, 17, 38, 0.22), rgba(0, 17, 38, 0.08) 7rem, transparent 14rem);
}

.menu-section::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: clamp(4rem, 10vw, 7rem);
  pointer-events: none;
  content: "";
  background: linear-gradient(to bottom, rgba(0, 22, 48, 0.22), rgba(0, 22, 48, 0));
}

.menu-section .section-heading {
  margin-bottom: 0;
}

.menu-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  width: min(var(--max-width), 100%);
  margin: clamp(2.4rem, 5vw, 4.5rem) auto 0;
}

.menu-gallery:empty {
  display: none;
}

.menu-item {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.menu-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(1.05) contrast(0.98);
}

.admin-shell[hidden] {
  display: none;
}

.admin-shell {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.admin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 8, 20, 0.64);
  backdrop-filter: blur(16px);
}

.admin-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(84svh, 780px);
  overflow: auto;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.admin-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  color: var(--coral);
  border: 1px solid rgba(255, 143, 103, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.admin-close i {
  font-size: 1rem;
}

.admin-login,
.admin-editor {
  display: grid;
  gap: 1rem;
}

.admin-login[hidden],
.admin-editor[hidden] {
  display: none;
}

.admin-login h2,
.admin-editor h2 {
  margin: 0 0 0.2rem;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Rajdhani", "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.admin-kicker,
.admin-note,
.admin-error {
  margin: 0;
  font-family: "Rajdhani", "Inter", sans-serif;
  font-weight: 300;
}

.admin-kicker {
  color: var(--coral);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.admin-note {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.admin-error {
  color: var(--coral-2);
  font-size: 0.95rem;
}

.admin-login label,
.admin-editor label {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Rajdhani", "Inter", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.admin-login input,
.admin-editor input,
.admin-editor textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.5rem;
  background: rgba(1, 12, 30, 0.52);
  outline: none;
}

.admin-login input,
.admin-editor input {
  min-height: 2.7rem;
  padding: 0 0.85rem;
}

.admin-editor textarea {
  resize: vertical;
  min-height: 13rem;
  padding: 0.85rem;
  font-family: "Plus Jakarta Sans", "Rajdhani", "Inter", sans-serif;
  line-height: 1.75;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.admin-action {
  width: auto;
  min-width: 10rem;
}

.about-section,
.contact-section {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  width: min(var(--max-width), 100%);
  margin-inline: auto;
}

.glass-card {
  border: 1px solid var(--glass-line);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.about-copy {
  width: min(58rem, 100%);
  margin-inline: auto;
  padding: 0;
}

.about-copy p,
.contact-card p,
.footer-copy {
  color: var(--ink-soft);
  font-weight: 300;
}

.about-copy p {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Plus Jakarta Sans", "Rajdhani", "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.95;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.contact-section {
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  width: min(980px, 100%);
  margin-inline: auto;
}

.contact-card {
  display: grid;
  min-height: 245px;
  align-content: start;
  justify-items: center;
  padding: clamp(1.4rem, 3vw, 2.3rem) 1.2rem;
  text-align: center;
}

.contact-card i {
  color: var(--coral);
  font-size: 2.1rem;
  margin-bottom: 1.6rem;
}

.contact-card h2 {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1.6rem;
  padding: 2.2rem clamp(1.2rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

.footer-logo-mark {
  display: block;
  width: 5.2rem;
  max-height: 6.8rem;
  object-fit: contain;
  opacity: 0.9;
  filter: saturate(1.1) drop-shadow(0 0 18px rgba(255, 176, 143, 0.22));
}

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

.footer-socials a {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  color: var(--ink-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  transition: color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.footer-socials a:hover {
  color: var(--coral-2);
  border-color: rgba(255, 143, 103, 0.35);
  box-shadow: 0 0 22px rgba(255, 143, 103, 0.18);
  transform: translateY(-2px);
}

.footer-socials i {
  font-size: 1.25rem;
}

.footer-copy {
  justify-self: end;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
  text-align: right;
}

.load-in {
  animation: pageEnter 760ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.reveal {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(26px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 720ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes cueBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(0.45rem);
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 72px;
  }

  body::before {
    background-size: 34vw 34vw;
  }

  .hero {
    min-height: 92svh;
  }

  .hero h1 {
    font-size: 6.4rem;
  }

  .hero-logo-img {
    width: min(760px, 92vw);
  }

  .eyebrow {
    font-size: 1.04rem;
    transform: translateY(2.15rem);
  }

  .hero-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 44% 28% 28%;
  }

  .tile-four {
    grid-column: 1 / 2;
    grid-row: 2;
  }

  .tile-five {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .tile-six {
    grid-column: 3 / 4;
    grid-row: 2;
  }

  .tile-seven {
    grid-column: 1 / -1;
    grid-row: 3;
  }

}

@media (max-width: 900px) {
  .menu-toggle {
    position: relative;
    z-index: 70;
    display: grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    padding: 0;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(12, 38, 72, 0.75), rgba(2, 10, 25, 0.92));
    box-shadow:
      9px 9px 18px rgba(0, 0, 0, 0.34),
      -8px -8px 18px rgba(255, 255, 255, 0.045);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 1.08rem;
    height: 1px;
    background: var(--coral-2);
    transition: transform 260ms ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-0.23rem);
  }

  .menu-toggle span:last-child {
    transform: translateY(0.23rem);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 60;
    display: grid;
    width: min(82vw, 390px);
    height: 100svh;
    align-content: center;
    gap: 0.7rem;
    padding: 6rem 1.5rem 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    background:
      linear-gradient(145deg, rgba(11, 35, 68, 0.82), rgba(2, 8, 20, 0.92)),
      rgba(5, 15, 32, 0.86);
    box-shadow: -32px 0 80px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(28px);
    transform: translateX(105%);
    transition: transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .nav-panel.is-open {
    transform: translateX(0);
  }

  .nav-link {
    min-height: 4.4rem;
    padding-inline: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.05rem;
  }

  .nav-link::after {
    left: auto;
    right: 1rem;
    bottom: 50%;
    transform: translateY(50%) scale(0.6);
  }

  .nav-link.is-active::after,
  .nav-link:hover::after {
    transform: translateY(50%) scale(1);
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: block;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
  }

  .menu-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

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

  .contact-card {
    min-height: 210px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-logo {
    justify-self: center;
  }

  .footer-copy {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 1rem;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .brand-logo-img {
    width: 2.35rem;
  }

  .menu-toggle {
    width: 2.35rem;
    height: 2.35rem;
  }

  .menu-toggle span {
    width: 0.95rem;
  }

  .menu-toggle span:first-child {
    transform: translateY(-0.2rem);
  }

  .menu-toggle span:last-child {
    transform: translateY(0.2rem);
  }

  .brand-note {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, 1fr);
  }

  .tile-one,
  .tile-two,
  .tile-three,
  .tile-four,
  .tile-five,
  .tile-six,
  .tile-seven {
    grid-column: auto;
    grid-row: auto;
  }

  .tile-seven {
    grid-column: 1 / -1;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  .hero-logo-img {
    width: min(560px, 94vw);
  }

  .eyebrow {
    font-size: 0.96rem;
    max-width: 18rem;
    line-height: 1.3;
    transform: translateY(1.35rem);
  }

  .hero-actions {
    width: auto;
    max-width: min(100%, 20rem);
    margin-top: -2.1rem;
  }

  .neo-button {
    width: auto;
    min-width: 9.6rem;
  }

  .section {
    padding-inline: 1rem;
  }

  .about-copy {
    padding: 1rem;
  }
}

@media (max-width: 420px) {
  .brand-name {
    max-width: 11rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  .brand-logo-img {
    width: 2.1rem;
  }

  .eyebrow {
    font-size: 0.9rem;
    transform: translateY(1rem);
  }

  .section-kicker {
    font-size: 1.35rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
