:root {
  --bg: #faf6f2;
  --bg-alt: #f3ede6;
  --surface: #ffffff;
  --surface-soft: #fdf8f4;
  --accent: #c0392b;
  --accent-soft: #fbe4df;
  --text: #222222;
  --muted: #6b6b6b;
  --gold: #d4ac0d;
  --border: #f0dfd8;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
  --shadow-subtle: 0 6px 18px rgba(0, 0, 0, 0.06);
  --container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #fff9f3 0, var(--bg) 55%, #f7f0e9 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  margin: 0 0 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6rem;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(2.2rem, 3vw + 1.4rem, 3.3rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 1.3rem + 1vw, 2.2rem);
}

h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section--hero {
  padding-top: 7.5rem;
}

.section--highlight {
  background: radial-gradient(circle at top left, #fff6f2 0, #f8eee5 60%, #f6e8de 100%);
}

.section--dark {
  background: #171717;
  color: #f5f5f5;
}

.section--dark p {
  color: #cacaca;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header p {
  margin-top: 0.35rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid--2 {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease,
    color 0.14s ease, border-color 0.14s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #d6453a, #b83227);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(192, 57, 43, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(192, 57, 43, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.btn--ghost:hover {
  background: #ffffff;
}

.btn--outline {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.14);
  color: var(--text);
}

.btn--outline[aria-disabled="true"] {
  opacity: 0.6;
  cursor: default;
}

.btn--full {
  width: 100%;
}

.link-inline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 500;
  color: var(--accent);
}

.link-inline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform-origin: left;
  transform: scaleX(0.2);
  transition: transform 0.16s ease-out;
}

.link-inline:hover::after {
  transform: scaleX(1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, rgba(255, 255, 255, 0.9) 80%, rgba(255, 246, 239, 0.9) 20%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-mark {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
}

.brand-tagline {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.site-nav a {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: #4a3f36;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.16s ease-out;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #33241e;
  position: relative;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 6px;
}

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #ffe5dd 0, transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.hero-subtitle {
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-subtle);
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-note .dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffdf74, #ff5438);
}

.hero-media {
  justify-self: flex-end;
}

.hero-image-card {
  border-radius: 26px;
  padding: 0.9rem;
  background: linear-gradient(145deg, #ffffff, #fff3ea);
  box-shadow: var(--shadow-soft);
}

.hero-image-main {
  border-radius: 22px;
}

.hero-image-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.hero-image-small {
  border-radius: 18px;
}

.about-media {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}

.about-image-main {
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.about-pill {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.93);
  color: #f5f5f5;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-subtle);
}

.card--menu h3 {
  margin-bottom: 0.3rem;
}

.card-subtitle {
  font-size: 0.9rem;
}

.menu-list {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.menu-item-name {
  font-weight: 600;
  display: inline-block;
}

.menu-item-price {
  float: right;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

.menu-item-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.menu-note {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.menu-footer {
  margin-top: 2.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card--gallery {
  padding: 0.9rem;
  border-radius: 18px;
  background: var(--surface);
}

.card--gallery img {
  border-radius: 14px;
}

.card--gallery figcaption {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.7rem;
}

.visit-address {
  display: inline-block;
  margin-top: 0.2rem;
}

.hours-list {
  margin: 0.6rem 0 0.4rem;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.9rem;
}

.hours-list dt {
  font-weight: 500;
}

.hours-list dd {
  margin: 0;
  color: #dfdfdf;
}

.hours-note {
  font-size: 0.8rem;
  color: #b9b9b9;
}

.map-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: none;
  display: block;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin: 1.4rem 0 1rem;
}

.contact-note {
  font-size: 0.9rem;
}

.contact-form {
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-subtle);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 500;
}

.form-row input,
.form-row textarea {
  border-radius: 12px;
  border: 1px solid #e1d7d0;
  padding: 0.65rem 0.75rem;
  font: inherit;
  color: var(--text);
  background: #fffdfb;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus-visible,
.form-row textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-success {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--accent);
  min-height: 1.2em;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  background: #141414;
  color: #eaeaea;
  padding: 1.4rem 0 1.6rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-inner p {
  margin: 0;
  color: inherit;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.footer-meta a {
  color: #f5f5f5;
  font-weight: 500;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.5rem 0.9rem;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 0.85rem;
  z-index: 30;
  transition: top 0.16s ease-out;
}

.skip-link:focus {
  top: 0.9rem;
}

.student-id {
  position: fixed;
  top: 0.9rem;
  right: 1.4rem;
  z-index: 40;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.9);
  color: #ffffff;
  font-size: 0.75rem;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .hero-grid,
  .grid--2,
  .visit-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
    max-width: 420px;
    margin: 0 auto 1.4rem;
  }

  .about-media {
    margin: 0 auto;
  }

  .visit-grid {
    gap: 1.8rem;
  }
}

@media (max-width: 800px) {
  .site-nav {
    position: absolute;
    right: 1.5rem;
    top: 4.2rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 0.7rem 1rem;
    box-shadow: var(--shadow-soft);
    transform-origin: top right;
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.14s ease-out, transform 0.14s ease-out;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.5rem 0;
  }

  .section--hero {
    padding-top: 6.2rem;
  }

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

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

  .visit-details,
  .contact-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 1.1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

