:root {
  --navy: #031a2b;
  --navy-deep: #00101d;
  --gold: #d79739;
  --gold-bright: #f0b95e;
  --gold-dim: #8f5c21;
  --cream: #f3e6ce;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.interior-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(215, 151, 57, 0.75);
  background-color: var(--navy-deep);
  background-image:
    linear-gradient(90deg, rgba(0, 14, 25, 0.98), rgba(2, 24, 39, 0.96)),
    url("../images/hero-bg-texture.png");
  background-position: center;
  background-size: cover;
  color: var(--gold-bright);
}

.interior-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 50%, rgba(215, 151, 57, 0.12), transparent 28%),
    rgba(0, 16, 29, 0.42);
  content: "";
}

.interior-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.4vw, 54px);
  width: min(1500px, 100%);
  min-height: 154px;
  margin: 0 auto;
  padding: 24px 4vw 22px;
}

.interior-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex: 0 1 360px;
  min-width: 0;
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.02rem, 1.12vw, 1.32rem);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.12;
  text-decoration: none;
  text-transform: uppercase;
}

.interior-header__brand span {
  max-width: 250px;
  white-space: normal;
}

.interior-header__brand img {
  display: block;
  width: clamp(82px, 6vw, 108px);
  height: auto;
  flex: 0 0 auto;
}

.interior-header__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
  flex: 1 1 auto;
  min-width: 0;
  min-height: 86px;
}

.interior-header__nav a,
.interior-header__toggle {
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.98rem, 1.05vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.interior-header__nav a {
  transition: color 160ms ease, text-shadow 160ms ease;
}

.interior-header__nav a:hover,
.interior-header__nav a:focus-visible {
  color: #ffd78e;
  text-shadow: 0 0 12px rgba(220, 154, 60, 0.36);
}

.interior-header__toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--gold);
  background: rgba(0, 12, 22, 0.6);
  padding: 8px 14px;
}

.interior-header__toggle[aria-expanded="true"] + .interior-header__nav {
  display: grid;
}

@media (max-width: 1240px) {
  .interior-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px 22px;
    min-height: auto;
    padding: 20px 28px;
  }

  .interior-header__brand {
    gap: 16px;
    font-size: clamp(1rem, 3.4vw, 1.25rem);
  }

  .interior-header__brand span {
    white-space: normal;
  }

  .interior-header__brand img {
    width: clamp(80px, 21vw, 112px);
  }

  .interior-header__toggle {
    display: block;
  }

  .interior-header__nav {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
    min-height: 0;
    border-top: 1px solid rgba(143, 92, 33, 0.55);
    border-left: 0;
    margin-top: 15px;
    padding-left: 0;
    padding-top: 14px;
  }

  .interior-header__nav a {
    padding: 8px 0;
    font-size: 1.1rem;
  }
}

@media (max-width: 560px) {
  .interior-header__inner {
    padding: 18px 22px;
  }

  .interior-header__brand span {
    max-width: 190px;
  }

  .interior-header__toggle {
    padding: 7px 11px;
    font-size: 1rem;
  }

  .interior-header__nav {
    grid-template-columns: 1fr;
  }
}
