/* ── RESET & VARIABLES ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #D4A017;
  --gold-light: #F0C040;
  --gold-pale: rgba(212, 160, 23, 0.12);
  --dark: #080808;
  --dark2: #101010;
  --dark3: #181818;
  --dark4: #222222;
  --cream: #F4EFE4;
  --text-muted: #777;
  --text-mid: #ADADAD;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 2.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: background 0.3s;
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: var(--gold);
  background: transparent;
  padding: 1rem 2.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--gold); background: var(--gold-pale); }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 5rem;
  background: linear-gradient(to bottom, rgba(8,8,8,0.97) 60%, transparent);
  backdrop-filter: blur(8px);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(8,8,8,0.98); }
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--dark);
  padding: 0.65rem 1.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: background 0.3s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }

/* ── HERO ── */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-image: url('../images/chef.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.32);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8,8,8,0.85) 45%, rgba(8,8,8,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5rem;
  max-width: 820px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.15s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.32s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-btns {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.65s forwards;
}
.hero-badge {
  position: absolute;
  bottom: 3rem;
  left: 5rem;
  border: 1px solid rgba(212, 160, 23, 0.25);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.8s forwards;
}
.hero-badge span:first-child {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-badge span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
}
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  opacity: 0.35;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── MARQUEE STRIP ── */
.strip {
  background: var(--gold);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.strip-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 24s linear infinite;
}
.strip-item {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 500;
}
.strip-dot { color: var(--dark); opacity: 0.4; }

/* ── ABOUT ── */
.about {
  padding: 9rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.about-text p {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  display: block;
}
.about-corner {
  position: absolute;
  bottom: -1.8rem;
  right: -1.8rem;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(212, 160, 23, 0.2);
  pointer-events: none;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(212, 160, 23, 0.15);
  padding-top: 2rem;
}
.stat { padding-left: 1.2rem; border-left: 2px solid var(--gold); }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ── GALLERY ── */
.gallery {
  background: var(--dark2);
  padding: 9rem 5rem;
}
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateY(4px);
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ── SERVICES ── */
.services { padding: 9rem 5rem; }
.services-inner { max-width: 1300px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 5rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.svc {
  background: var(--dark3);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.svc::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s;
}
.svc:hover::after { transform: scaleX(1); }
.svc:hover { background: var(--dark4); }
.svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(212, 160, 23, 0.1);
  line-height: 1;
  margin-bottom: 1.8rem;
}
.svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.9rem;
}
.svc-desc { font-size: 0.82rem; line-height: 1.85; color: var(--text-muted); }
.svc-tag {
  margin-top: 1.8rem;
  display: inline-block;
  border: 1px solid rgba(212, 160, 23, 0.22);
  padding: 0.35rem 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── EVENTS ── */
.events { background: var(--dark2); padding: 9rem 5rem; }
.events-inner { max-width: 1300px; margin: 0 auto; }
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 4.5rem;
  border: 1px solid rgba(212, 160, 23, 0.1);
}
.event-card {
  padding: 3rem;
  border: 1px solid rgba(212, 160, 23, 0.07);
  transition: background 0.35s, border-color 0.35s;
}
.event-card:hover {
  background: rgba(212, 160, 23, 0.04);
  border-color: rgba(212, 160, 23, 0.2);
}
.event-icon {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.3rem;
  letter-spacing: 0.05em;
}
.event-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.event-desc { font-size: 0.82rem; line-height: 1.85; color: var(--text-muted); }

/* ── EXPERIENCE QUOTE ── */
.experience {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.experience-img {
  position: absolute;
  inset: 0;
  background-image: url('../images/table.jpg');
  background-size: cover;
  background-position: center 25%;
  filter: brightness(0.35);
}
.experience-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.4);
}
.experience-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.experience-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  max-width: 750px;
  line-height: 1.45;
  margin-bottom: 1.5rem;
}
.experience-attr {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── TABLE SECTION ── */
.tablesetup {
  padding: 9rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.tablesetup-img {
  position: relative;
  overflow: hidden;
  height: 520px;
}
.tablesetup-img::after {
  content: '';
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--gold);
  z-index: -1;
}
.tablesetup-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.tablesetup-img:hover img { transform: scale(1.04); }
.tablesetup-text p {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}

/* ── BOOKING ── */
.booking { background: var(--dark3); }
.booking-inner { display: grid; grid-template-columns: 1fr 1fr; }
.booking-left { padding: 8rem 6rem; background: var(--dark4); }
.booking-right { padding: 8rem 6rem; background: var(--gold); }
.booking-left p {
  font-size: 0.87rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.booking-left .section-title { margin-bottom: 1.6rem; }
.booking-perks {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.booking-perk {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.8rem;
  color: var(--text-mid);
}
.booking-perk-dot { color: var(--gold); font-size: 1rem; }
.booking-right-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(8, 8, 8, 0.12);
  border: 1px solid rgba(8, 8, 8, 0.2);
  padding: 0.9rem 1rem;
  font-size: 0.82rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(8, 8, 8, 0.38); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(8, 8, 8, 0.5); }
.form-group select { color: rgba(8, 8, 8, 0.55); }
.form-group textarea { height: 110px; resize: none; }

/* ── Date picker ── */
.date-group { position: relative; }
.date-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(8,8,8,0.45);
  margin-bottom: 0.35rem;
}
.form-group input[type="date"] {
  width: 100%;
  cursor: pointer;
  color: rgba(8,8,8,0.7);
}
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.45;
  cursor: pointer;
}
.form-group input[type="date"]::-webkit-datetime-edit-fields-wrapper { color: rgba(8,8,8,0.7); }

/* ── Booking confirmation page ── */
.booking-confirmation {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--dark1);
  overflow-y: auto;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}
.booking-confirmation.active {
  display: flex;
}
.confirmation-inner {
  max-width: 640px;
  text-align: center;
}
.confirmation-icon {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.confirmation-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--light);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.confirmation-name {
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}
.confirmation-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.confirmation-sub strong {
  color: var(--light);
  font-weight: 700;
}
.confirmation-perks {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 3rem;
  text-align: left;
  display: inline-flex;
}
.confirmation-perk {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.confirmation-back {
  display: inline-block;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}
.btn-submit {
  width: 100%;
  background: var(--dark);
  color: var(--gold);
  border: none;
  padding: 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: background 0.3s;
}
.btn-submit:hover { background: #1c1c1c; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(212, 160, 23, 0.1);
  padding: 3rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo img { height: 44px; width: auto; opacity: 0.85; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.62rem; letter-spacing: 0.1em; color: var(--text-muted); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2.5rem; }
  .nav-links { display: none; }
  .hero-content { padding: 0 2.5rem; }
  .hero-badge { left: 2.5rem; }
  .hero-scroll { right: 2.5rem; }
  .about, .tablesetup { grid-template-columns: 1fr; padding: 6rem 2.5rem; gap: 3.5rem; }
  .about-img-wrap { order: -1; }
  .about-corner { display: none; }
  .gallery { padding: 6rem 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .services { padding: 6rem 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .events { padding: 6rem 2.5rem; }
  .events-grid { grid-template-columns: 1fr; }
  .booking-inner { grid-template-columns: 1fr; }
  .booking-left, .booking-right { padding: 5rem 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 2.5rem; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.8rem; }
  .hero-badge { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .experience { height: 400px; }
}

/* ── ABOUT BADGE ── */
.about-badge {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── FOOD GALLERY MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  overflow-y: auto;
  padding: 2rem;
}
.modal-overlay.active { display: block; }
.modal-box {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-top: 1rem;
}
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--gold); color: var(--dark1); }
.modal-header { text-align: center; margin: 1rem 0 2.5rem; clear: both; }
.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.modal-item {
  position: relative;
  overflow: hidden;
  height: 240px;
  border-radius: 2px;
}
.modal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.modal-item:hover img { transform: scale(1.07); }
.modal-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 0.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateY(4px);
  transition: transform 0.35s ease;
}
.modal-item:hover .gallery-caption { transform: translateY(0); }
@media (max-width: 768px) {
  .modal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .modal-grid { grid-template-columns: 1fr; }
}
