:root {
  --navy: #30415f;
  --navy-deep: #1f2c44;
  --navy-soft: #3d5275;
  --foam: #f6f4f0;
  --sand: #e7e0d4;
  --brass: #c9ae7a;
  --ink: #1a2233;
  --muted: #5c6574;
  --white: #fff;
  --line: rgba(48, 65, 95, 0.14);
  --max: 1140px;
  --display: "Cormorant Garamond", serif;
  --sans: "Source Sans 3", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--foam);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
}

p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  cursor: pointer;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-brass {
  background: var(--brass);
  color: var(--navy-deep);
}

.btn-brass:hover {
  filter: brightness(1.06);
}

.btn-line {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-line:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-deep);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  color: var(--white);
  background: var(--navy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}

.logo-mark {
  width: 28px;
  height: 28px;
}

.nav {
  display: flex;
  gap: 26px;
  font-size: 0.92rem;
}

.nav a {
  opacity: 0.82;
}

.nav a:hover,
.nav a.is-active {
  opacity: 1;
  box-shadow: inset 0 -1px 0 var(--brass);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(32, 45, 68, 0.55) 0%, rgba(31, 44, 68, 0.78) 100%),
    url("../img/hero-2.jpg") center/cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 24px 80px;
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  margin: 18px 0 20px;
}

.hero p {
  max-width: 46ch;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--brass);
  margin: 18px auto 0;
}

/* Marquee */
.marquee {
  background: var(--navy);
  color: var(--sand);
  overflow: hidden;
  border-top: 1px solid rgba(201, 174, 122, 0.25);
  border-bottom: 1px solid rgba(201, 174, 122, 0.25);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: drift 28s linear infinite;
  padding: 14px 0;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
  padding: 108px 0;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-year {
  position: absolute;
  left: -18px;
  bottom: 28px;
  background: var(--navy);
  color: var(--sand);
  padding: 18px 22px;
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
}

.about-year small {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--brass);
}

.about h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  margin: 12px 0 18px;
  color: var(--navy);
}

.about p {
  color: var(--muted);
  margin-bottom: 14px;
}

/* Concepts as bands */
.concepts {
  background: var(--sand);
  padding: 90px 0;
}

.section-top {
  margin-bottom: 40px;
}

.section-top h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--navy);
  margin-top: 8px;
}

.band {
  display: grid;
  grid-template-columns: 180px 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(48, 65, 95, 0.16);
}

.band:last-child {
  border-bottom: 1px solid rgba(48, 65, 95, 0.16);
}

.band-num {
  font-family: var(--display);
  font-size: 3.4rem;
  color: var(--navy);
  opacity: 0.28;
}

.band h3 {
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.band p {
  color: var(--muted);
}

.band img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* Menu */
.menu {
  background: var(--navy);
  color: var(--foam);
  padding: 96px 0;
}

.menu .kicker {
  color: var(--brass);
}

.menu h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 10px 0 36px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 56px;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(232, 224, 212, 0.22);
}

.menu-row h3 {
  font-size: 1.35rem;
}

.menu-row p {
  color: rgba(246, 244, 240, 0.65);
  font-size: 0.92rem;
}

.menu-row strong {
  color: var(--brass);
  font-weight: 600;
  white-space: nowrap;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 210px;
  gap: 8px;
  padding: 8px;
  background: var(--navy-deep);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery img:first-child {
  grid-row: span 2;
}

/* News */
.news {
  padding: 96px 0;
}

.news-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
}

.news-item {
  display: grid;
  grid-template-columns: 140px 180px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.news-item:last-child {
  border-bottom: 1px solid var(--line);
}

.news-item time {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-soft);
}

.news-item img {
  width: 180px;
  height: 110px;
  object-fit: cover;
}

.news-item h3 {
  font-size: 1.5rem;
  color: var(--navy);
}

.news-item span {
  color: var(--brass);
  font-size: 0.85rem;
}

/* Visit */
.visit {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.visit-panel {
  background: var(--navy-deep);
  color: var(--foam);
  padding: 72px 8vw;
}

.visit-panel h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin: 10px 0 18px;
}

.hours {
  margin: 28px 0;
  display: grid;
  gap: 10px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(246, 244, 240, 0.12);
  padding-bottom: 8px;
}

.visit-visual {
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(32, 45, 68, 0.15), rgba(32, 45, 68, 0.4)),
    url("https://images.unsplash.com/photo-1511920170033-f8396924c348?auto=format&fit=crop&w=1400&q=80") center/cover;
}

/* Newsletter */
.letter {
  padding: 64px 0 36px;
}

.letter-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid var(--line);
}

.letter h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-top: 6px;
}

.letter form {
  display: flex;
  gap: 8px;
}

.letter input {
  min-width: 260px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px 14px;
  outline: none;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(246, 244, 240, 0.78);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(246, 244, 240, 0.12);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  font-size: 0.84rem;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--navy-deep);
  color: var(--foam);
  padding: 12px 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.25s ease;
  z-index: 50;
}

.toast.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 18px 24px 24px;
    gap: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .about,
  .band,
  .menu-grid,
  .visit,
  .footer-grid,
  .letter-box,
  .news-item {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .gallery img:first-child {
    grid-column: span 2;
  }

  .about-year {
    left: 12px;
  }

  .letter form,
  .copyright {
    flex-direction: column;
  }

  .letter input {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .header-cta .btn {
    display: none;
  }

  .about-photo img {
    height: 320px;
  }
}
