/* ============================================================
   JACKY CAFÉ — Vintage Style Sheet
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --cream: #f5e6d0;
  --parchment: #e8d5b0;
  --tan: #d0b090;
  --brown-light: #c4956a;
  --brown-mid: #8b5e3c;
  --brown-dark: #5c3317;
  --espresso: #2c1a0e;
  --gold: #c8973c;
  --gold-light: #e2b86a;
  --chalkboard: #263027;
  --chalk: #f0ebe0;

  --ff-display: "Playfair Display", Georgia, serif;
  --ff-script: "Dancing Script", cursive;
  --ff-body: "Lato", system-ui, sans-serif;

  --shadow-warm: 0 4px 24px rgba(92, 51, 23, 0.18);
  --shadow-deep: 0 8px 48px rgba(44, 26, 14, 0.3);
  --ease: 0.3s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
a {
  color: inherit;
}
button {
  cursor: pointer;
}

/* ── Utility ──────────────────────────────────────────────── */
.hidden {
  display: none !important;
}

/* Scroll-reveal animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Shared Section Styles ────────────────────────────────── */
section {
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-ornament {
  font-size: 0.7rem;
  letter-spacing: 10px;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-header.light .section-ornament {
  color: var(--gold-light);
}

.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
}
.section-header.light h2 {
  color: var(--cream);
}

.section-subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brown-mid);
}
.section-header.light .section-subtitle {
  color: var(--tan);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(28, 14, 6, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid rgba(200, 151, 60, 0.5);
  transition: box-shadow var(--ease);
}
#navbar.scrolled {
  box-shadow: 0 4px 32px rgba(44, 26, 14, 0.55);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  user-select: none;
}
.logo-script {
  font-family: var(--ff-script);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-light);
}
.logo-sub {
  font-family: var(--ff-body);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--tan);
  margin-top: -3px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}
.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--parchment);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition:
    color var(--ease),
    border-color var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--parchment);
  transition:
    transform var(--ease),
    opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 1.5rem;

  background:
    radial-gradient(
      ellipse at 15% 55%,
      rgba(170, 90, 30, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 20%,
      rgba(100, 55, 15, 0.4) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 90%,
      rgba(20, 10, 3, 0.55) 0%,
      transparent 60%
    ),
    linear-gradient(
      155deg,
      #4a2c0e 0%,
      #7a4a20 25%,
      #5c3317 55%,
      #3b1e09 80%,
      #2c1a0e 100%
    );
}

/* Subtle grain overlay */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(255, 255, 255, 0.012) 3px,
      rgba(255, 255, 255, 0.012) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(255, 255, 255, 0.008) 3px,
      rgba(255, 255, 255, 0.008) 4px
    );
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(200, 151, 60, 0.6);
  padding: 0.45rem 1.6rem;
  border-radius: 2px;
  margin-bottom: 1.6rem;
}

.hero-title {
  font-family: var(--ff-script);
  font-size: clamp(5.5rem, 20vw, 13rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 0.88;
  text-shadow:
    4px 4px 0 rgba(44, 26, 14, 0.5),
    0 0 80px rgba(200, 151, 60, 0.25);
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.6rem 0;
}
.divider-line {
  flex: 1;
  max-width: 90px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-divider .divider-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.divider-icon {
  width: 36px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.divider-icon svg {
  width: 36px;
  height: 36px;
}

.hero-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1rem, 3vw, 1.35rem);
  color: var(--parchment);
  letter-spacing: 1.5px;
  margin-bottom: 2.8rem;
}

.hero-cta {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold);
  padding: 1rem 2.8rem;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(200, 151, 60, 0.45);
  transition:
    background var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
}
.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(200, 151, 60, 0.5);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(212, 176, 144, 0.6);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 1.5px solid rgba(200, 151, 60, 0.6);
  border-bottom: 1.5px solid rgba(200, 151, 60, 0.6);
  transform: rotate(45deg);
  margin: 0.55rem auto 0;
  animation: arrowBounce 1.6s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: rotate(45deg) translateY(5px);
    opacity: 0.3;
  }
}

/* ============================================================
   MENU — Chalkboard
   ============================================================ */
#menu {
  background: var(--parchment);
  position: relative;
}
#menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(139, 94, 60, 0.04) 0,
    rgba(139, 94, 60, 0.04) 1px,
    transparent 1px,
    transparent 44px
  );
  pointer-events: none;
}

.chalkboard {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  background: var(--chalkboard);
  border-radius: 6px;
  padding: 3rem 2.5rem;
  box-shadow:
    var(--shadow-deep),
    inset 0 0 80px rgba(0, 0, 0, 0.35);
  border: 3px solid #3e4e3e;
}
.chalk-inner-border {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(240, 235, 224, 0.1);
  border-radius: 3px;
  pointer-events: none;
}

.chalk-header {
  text-align: center;
  margin-bottom: 2.2rem;
}
.chalk-header h3 {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--chalk);
  letter-spacing: 2px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.5rem 3rem;
}

.menu-category h4 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(226, 184, 106, 0.28);
  margin-bottom: 1.1rem;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.item-name {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--chalk);
  white-space: nowrap;
}
.item-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(240, 235, 224, 0.22);
  margin-bottom: 4px;
  min-width: 16px;
}
.item-price {
  font-family: var(--ff-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
}

.chalk-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240, 235, 224, 0.1);
}
.chalk-footer p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(240, 235, 224, 0.4);
  letter-spacing: 2px;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  background: var(--brown-dark);
  padding: 5rem 1.5rem;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  min-height: 480px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}
.gallery-item--large {
  grid-row: 1 / 3;
}

/* Placeholder image cards */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: transform 0.5s ease;
}
.gallery-item--large .gallery-placeholder {
  min-height: 460px;
}

.gp--interior {
  background: linear-gradient(145deg, #6b3f1e, #4a2a10, #8b5e3c);
  color: rgba(245, 220, 185, 0.6);
}
.gp--beans {
  background: linear-gradient(145deg, #3d2010, #5c3317, #2c1a0e);
  color: rgba(200, 160, 100, 0.7);
}
.gp--pastry {
  background: linear-gradient(145deg, #7a5030, #9a6a40, #5c3820);
  color: rgba(240, 210, 165, 0.65);
}
.gp--corner {
  background: linear-gradient(145deg, #4a3020, #6b4b2f, #3a2015);
  color: rgba(215, 180, 130, 0.6);
}

.gp-icon {
  width: 64px;
  height: 64px;
  opacity: 0.75;
}
.gp-icon svg {
  width: 64px;
  height: 64px;
}

.gp-label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Hover overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 26, 14, 0.85) 0%,
    rgba(44, 26, 14, 0.2) 40%,
    transparent 70%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--ease);
}
.gallery-overlay span {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
}

.gallery-item:hover .gallery-placeholder {
  transform: scale(1.06);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ============================================================
   LOCATION & HOURS
   ============================================================ */
#location {
  background: var(--cream);
}

.location-container {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Map */
.map-wrapper {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}

.map-placeholder {
  height: 400px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(139, 94, 60, 0.04) 0,
      rgba(139, 94, 60, 0.04) 1px,
      transparent 1px,
      transparent 20px
    ),
    linear-gradient(135deg, #edd8b8, #dfc9a0);
  border: 2px dashed var(--brown-light);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: 2rem;
  color: var(--brown-mid);
}
.map-pin {
  font-size: 3rem;
  line-height: 1;
}
.map-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown-dark);
}
.map-address {
  font-size: 0.9rem;
  color: var(--brown-mid);
  line-height: 1.7;
}
.map-embed-note {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: var(--brown-light);
  letter-spacing: 1px;
  font-style: italic;
}

/* Hours card */
.hours-card {
  background: var(--espresso);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(200, 151, 60, 0.15);
}
.hours-card h3 {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 1rem;
}
.hours-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-bottom: 1.5rem;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 0.6rem 0;
  font-size: 0.88rem;
  color: var(--parchment);
  border-bottom: 1px solid rgba(200, 151, 60, 0.08);
}
.hours-table td:first-child {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tan);
}
.hours-table td:last-child {
  text-align: right;
  font-family: var(--ff-display);
  color: var(--chalk);
}
.hours-table tr.highlight td {
  color: var(--gold-light);
}
.hours-table tr.highlight td:first-child {
  color: var(--gold);
}

.hours-note {
  margin-top: 1rem;
  font-size: 0.73rem;
  color: rgba(200, 176, 140, 0.45);
  font-style: italic;
}
.hours-address {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 151, 60, 0.18);
}
.hours-address h4 {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.hours-address p {
  font-size: 0.88rem;
  color: var(--parchment);
  line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: linear-gradient(155deg, #4a2c12 0%, #3b1e09 45%, #2c1a0e 100%);
}

.contact-container {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* Info column */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 151, 60, 0.12);
  border: 1px solid rgba(200, 151, 60, 0.28);
  border-radius: 50%;
  color: var(--gold-light);
}
.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-item h4,
.contact-social h4 {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-info-item p {
  font-size: 0.93rem;
  color: var(--parchment);
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}
.social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.social-btn--instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}
.social-btn--facebook {
  background: #1877f2;
  color: #fff;
}
.social-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

/* Form card */
.contact-form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 151, 60, 0.2);
  border-radius: 6px;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
}
.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 151, 60, 0.28);
  border-radius: 3px;
  padding: 0.85rem 1.1rem;
  font-family: var(--ff-body);
  font-size: 0.93rem;
  color: var(--parchment);
  transition:
    border-color var(--ease),
    background var(--ease);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(208, 176, 128, 0.38);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
}

.form-submit {
  position: relative;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--espresso);
  background: var(--gold);
  border: none;
  border-radius: 3px;
  padding: 1rem 2rem;
  transition:
    background var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
  overflow: hidden;
}
.form-submit:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(200, 151, 60, 0.45);
}
.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loader {
  display: none;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(44, 26, 14, 0.3);
  border-top-color: var(--espresso);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.form-submit.loading .btn-loader {
  display: block;
}
.form-submit.loading .btn-text {
  opacity: 0.7;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  background: rgba(100, 190, 110, 0.12);
  border: 1px solid rgba(100, 190, 110, 0.35);
  border-radius: 3px;
  color: #90ee90;
  font-size: 0.88rem;
}
.form-success svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--espresso);
  border-top: 1.5px solid rgba(200, 151, 60, 0.25);
  padding: 3rem 1.5rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75rem;
}
.footer-logo .logo-script {
  font-size: 2.6rem;
}

.footer-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--tan);
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
}
.footer-rule {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.4rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(208, 176, 128, 0.35);
  letter-spacing: 1px;
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: unset;
  }
  .gallery-item--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .gallery-item--large .gallery-placeholder {
    min-height: 280px;
  }

  .location-container {
    grid-template-columns: 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 640px) {
  section {
    padding: 4rem 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(22, 11, 5, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-bottom: 1.5px solid rgba(200, 151, 60, 0.4);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    border-bottom: 1px solid rgba(200, 151, 60, 0.08);
  }
  .nav-links a {
    display: block;
    padding: 0.9rem 2rem;
    border-bottom: none;
  }

  .chalkboard {
    padding: 2rem 1.25rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--large .gallery-placeholder {
    min-height: 220px;
  }
  .gallery-item .gallery-placeholder {
    min-height: 180px;
  }

  .map-placeholder {
    height: 280px;
  }

  .contact-info {
    gap: 1.5rem;
  }
  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: clamp(4rem, 22vw, 6rem);
  }
  .hero-cta {
    padding: 0.9rem 2rem;
  }
}
