:root {
  --royal: #0b4fa9;
  --navy: #010936;
  --navy-2: #07124b;
  --ink: #071133;
  --white: #ffffff;
  --soft: #f8fbff;
  --line: #d8e6fb;
  --blue-dot: #075bb7;
  --shadow: 0 22px 70px rgba(1, 9, 54, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16px 16px, rgba(11, 79, 169, 0.16) 0 5px, transparent 6px) 0 0 / 42px 42px,
    linear-gradient(180deg, #ffffff 0%, #edf5ff 42%, #ffffff 100%);
  font-family: Arial, Helvetica, sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(11, 79, 169, 0.14);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: block;
  width: 64px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(1, 9, 54, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--royal);
}

.hero {
  min-height: calc(100svh - 89px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(36px, 6vw, 86px) clamp(18px, 5vw, 78px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0 58%, rgba(255, 255, 255, 0.65) 100%),
    radial-gradient(circle at 90% 20%, rgba(11, 79, 169, 0.18), transparent 34%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--royal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: #26345f;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid var(--royal);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--royal);
  box-shadow: 0 14px 32px rgba(11, 79, 169, 0.24);
}

.button.secondary {
  color: var(--royal);
  background: var(--white);
}

.logo-panel {
  position: relative;
  padding: clamp(10px, 1.8vw, 18px);
  background:
    radial-gradient(circle, var(--blue-dot) 0 6px, transparent 7px) 0 0 / 34px 34px,
    var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.logo-panel img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}

.section-band {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 78px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  color: #34416c;
  line-height: 1.7;
}

.menu-section {
  background: var(--soft);
}

.menu-frame {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(10px, 2vw, 18px);
  background:
    radial-gradient(circle, var(--blue-dot) 0 7px, transparent 8px) 0 0 / 38px 38px,
    var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-frame img {
  width: 100%;
  border-radius: 4px;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 78px);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 62%, var(--royal) 100%);
  color: var(--white);
}

.order-intro h2,
.order-intro .eyebrow {
  color: var(--white);
}

.order-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.order-note {
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.order-note span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.order-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdff;
  font: 500 1rem Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

select[multiple] {
  min-height: 188px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(11, 79, 169, 0.18);
  border-color: var(--royal);
}

.form-button {
  width: 100%;
}

.field-help {
  color: #52608a;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.order-output {
  display: none;
  padding: 16px;
  white-space: pre-wrap;
  color: var(--navy);
  background: #edf5ff;
  border: 1px solid var(--line);
  border-radius: 8px;
  line-height: 1.7;
}

.order-output.is-visible {
  display: block;
}

.gallery-section {
  background: #ffffff;
}

.gallery-category {
  max-width: 1180px;
  margin: 0 auto 46px;
}

.gallery-category:last-child {
  margin-bottom: 0;
}

.gallery-category h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.photo-card {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  border-radius: 8px;
  margin: 0;
  background: var(--navy);
  box-shadow: 0 16px 42px rgba(1, 9, 54, 0.12);
}

.photo-card.cover {
  grid-column: span 2;
  min-height: 390px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  max-width: calc(100% - 28px);
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 18px;
  color: var(--white);
  background: var(--navy);
}

.site-footer img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 0.75rem;
  }

  .hero,
  .order-section {
    grid-template-columns: 1fr;
  }

  .logo-panel {
    max-width: 480px;
  }

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

  .photo-card.cover {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .brand-mark {
    width: 54px;
  }

  .hero {
    min-height: auto;
  }

  .field-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card.cover {
    grid-column: span 1;
    min-height: 290px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}
