/* ═══════════════════════════════════════════════════════════
   95 WEST BOW — Edinburgh
   style.css  ·  v1.0
   ═══════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --ink:          #1a1410;
  --ink-soft:     #3d3128;
  --stone:        #8c7b6b;
  --stone-light:  #c4b49e;
  --parchment:    #f5f0e8;
  --parchment-mid:#ede5d6;
  --cream:        #faf8f4;
  --gold:         #b8893a;
  --gold-light:   #d4a854;
  --dark:         #110e0b;
  --dark-mid:     #1e1712;
  --white:        #ffffff;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Quattrocento Sans', 'Gill Sans', sans-serif;

  --nav-h:        72px;
  --radius:       2px;
  --transition:   0.35s ease;
  --max-w:        1180px;
  --max-w-narrow: 860px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

/* ─── LAYOUT UTILITIES ─── */
.container {
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.container-narrow {
  max-width: var(--max-w-narrow);
}

.section {
  padding: 100px 0;
}

.section-light    { background: var(--cream); color: var(--ink); }
.section-dark     { background: var(--dark);  color: var(--parchment); }
.section-parchment{ background: var(--parchment-mid); color: var(--ink); }
.section-gallery-bg { background: var(--dark-mid); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-label-light { color: var(--gold-light); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.section-title-light { color: var(--parchment); }

.section-intro {
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 3rem;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
}

.section-intro-light { color: var(--stone-light); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9em 2.2em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-full { width: 100%; text-align: center; }

/* ─── NAVIGATION ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(17, 14, 11, 0.96);
  box-shadow: 0 1px 0 rgba(184,137,58,0.2);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 5%;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  text-decoration: none;
}

.nav-logo-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.nav-logo-text {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--parchment);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.8);
  transition: color var(--transition);
  text-decoration: none;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--parchment);
  transition: all 0.3s ease;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,14,11,0.2) 0%,
    rgba(17,14,11,0.1) 30%,
    rgba(17,14,11,0.75) 70%,
    rgba(17,14,11,0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 820px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  line-height: 0.9;
}

.hero-number {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: -0.02em;
  line-height: 0.85;
}

.hero-street {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--parchment);
  letter-spacing: 0.04em;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-style: italic;
  color: var(--stone-light);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  animation: fadeIn 2s ease 0.8s forwards;
  opacity: 0;
}

.hero-scroll-hint span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196,180,158,0.6);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(184,137,58,0.7), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ─── TWO COLUMN ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col-reverse {
  direction: rtl;
}
.two-col-reverse > * {
  direction: ltr;
}

.two-col-text p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 1.1em;
}

.two-col-text p strong { color: var(--ink); }

/* ─── IMAGE FRAME ─── */
.image-frame {
  position: relative;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.image-frame-portrait img {
  aspect-ratio: 3/4;
}

.image-frame:hover img {
  transform: scale(1.03);
}

.image-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold);
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
  transition: opacity var(--transition);
}

.image-frame:hover::before { opacity: 0.6; }

.image-caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--stone);
  margin-top: 0.8rem;
  padding-left: 0.2rem;
}

.image-placeholder {
  background: var(--parchment-mid);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder::after {
  content: 'Image coming soon';
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--stone);
  font-size: 1rem;
}

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
  opacity: 0.3;
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0 2rem;
  margin-bottom: 5rem;
  align-items: start;
}

.timeline-item:nth-child(odd) .timeline-body { grid-column: 1; grid-row: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-year { grid-column: 2; grid-row: 1; }
.timeline-item:nth-child(odd) .timeline-image { grid-column: 3; grid-row: 1; }

.timeline-item:nth-child(even) .timeline-body { grid-column: 3; grid-row: 1; text-align: left; }
.timeline-item:nth-child(even) .timeline-year { grid-column: 2; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-image { grid-column: 1; grid-row: 1; }

.timeline-year {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-align: center;
  padding-top: 0.3rem;
  position: relative;
}

.timeline-year::before {
  content: '';
  position: absolute;
  top: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,137,58,0.2);
}

.timeline-body h3 {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 0.7rem;
}

.timeline-body p {
  font-size: 0.94rem;
  color: var(--stone-light);
  line-height: 1.75;
}

.timeline-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  opacity: 0.75;
  filter: sepia(20%);
  transition: opacity var(--transition);
}

.timeline-image:hover img { opacity: 0.9; }
.timeline-image.no-image { display: none; }

/* ─── TURNER QUOTE ─── */
.turner-quote {
  border-left: 2px solid var(--gold);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
}

.turner-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.turner-quote cite {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--stone);
}

.turner-note {
  font-size: 0.88rem !important;
  color: var(--stone) !important;
  font-style: italic;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 6px;
  margin-bottom: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #1a1410;
}

/* Make first and 6th items larger */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0.85;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(17,14,11,0.9), transparent);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--parchment);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-empty {
  background: #1e1712;
  border: 1px dashed rgba(184,137,58,0.2);
  cursor: default;
}

.gallery-item-empty img { display: none; }

.gallery-item-empty::after {
  content: 'Photo coming soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(196,180,158,0.3);
  font-size: 0.88rem;
}

.gallery-hint {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--stone);
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,8,6,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  max-width: 92vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.lightbox-caption {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--stone-light);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: none;
  border: 1px solid rgba(196,180,158,0.25);
  color: var(--parchment);
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 1.2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(184,137,58,0.2);
  border-color: var(--gold);
}

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { top: 50%; left: 1.5rem;  transform: translateY(-50%); }
.lightbox-next  { top: 50%; right: 1.5rem; transform: translateY(-50%); }

/* ─── VISIT THE AREA ─── */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.visit-card {
  background: var(--cream);
  border: 1px solid var(--stone-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.visit-card:hover {
  box-shadow: 0 6px 30px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.visit-card-wide {
  grid-column: span 3;
  flex-direction: row;
}

.visit-card-wide .visit-card-image {
  width: 42%;
  flex-shrink: 0;
}

.visit-card-wide .visit-card-image img {
  height: 100%;
}

.visit-card-image {
  overflow: hidden;
  height: 200px;
  background: var(--parchment-mid);
}

.visit-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.visit-card:hover .visit-card-image img {
  transform: scale(1.05);
}

.visit-card-image.image-placeholder {
  height: 100%;
  min-height: 200px;
}

.visit-card-body {
  padding: 1.6rem;
  flex: 1;
}

.visit-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.visit-card-body h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.visit-card-body p {
  font-size: 0.91rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 0.8em;
}

.visit-card-body p:last-child { margin-bottom: 0; }

.visit-footer-note {
  text-align: center;
  padding: 2rem;
  background: var(--parchment-mid);
  border: 1px solid var(--stone-light);
  border-left: 4px solid var(--gold);
}

.visit-footer-note p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ─── TRANSPORT ─── */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.transport-card {
  background: var(--parchment-mid);
  padding: 2rem;
  border: 1px solid var(--stone-light);
  border-top: 3px solid var(--gold);
  transition: box-shadow var(--transition);
}

.transport-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.transport-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.transport-card h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.transport-card p {
  font-size: 0.91rem;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}

.transport-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

.transport-link:hover { color: var(--gold-light); }

.map-wrapper {
  border: 1px solid var(--stone-light);
  overflow: hidden;
  filter: grayscale(20%) sepia(10%);
  transition: filter var(--transition);
}

.map-wrapper:hover { filter: none; }

/* ─── CONTACT ─── */
.contact-info-centred {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon { font-size: 1.3rem; margin-top: 0.1rem; }

.contact-detail strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--stone-light);
  line-height: 1.6;
}

.contact-detail a:hover { color: var(--gold-light); }

/* ─── FORM ─── */
.contact-form { }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(245,240,232,0.07);
  border: 1px solid rgba(196,180,158,0.2);
  color: var(--parchment);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(196,180,158,0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(245,240,232,0.1);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(196,180,158,0.45);
  margin-top: 1rem;
}

.form-note a { color: var(--gold-light); }
.form-note a:hover { text-decoration: underline; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(184,137,58,0.2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(196,180,158,0.1);
  margin-bottom: 2rem;
}

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

.footer-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 0.9;
}

.footer-street {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--parchment);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--stone);
  margin-top: 0.3rem;
}

.footer-brand a {
  font-size: 0.85rem;
  color: var(--gold-light);
  transition: color var(--transition);
}
.footer-brand a:hover { color: var(--white); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(196,180,158,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-base {
  text-align: center;
}

.footer-base p {
  font-size: 0.78rem;
  color: rgba(196,180,158,0.3);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

.footer-copy { color: rgba(196,180,158,0.2) !important; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.85); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .visit-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-card-wide { grid-column: span 2; flex-direction: column; }
  .visit-card-wide .visit-card-image { width: 100%; height: 240px; }

  .transport-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(6) { grid-column: span 1; }
  .timeline::before { display: none; }
  .timeline-item {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem 1rem;
    margin-bottom: 3rem;
  }
  .timeline-item:nth-child(odd) .timeline-body,
  .timeline-item:nth-child(even) .timeline-body {
    grid-column: 2; grid-row: 1; text-align: left;
  }
  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    grid-column: 1; grid-row: 1;
  }
  .timeline-item:nth-child(odd) .timeline-image,
  .timeline-item:nth-child(even) .timeline-image {
    grid-column: 2; grid-row: 2;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(17,14,11,0.98);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(184,137,58,0.2);
  }

  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.9rem 2rem;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(196,180,158,0.08);
  }

  .nav-toggle { display: flex; }

  .two-col,
  .two-col-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 1; }

  .visit-grid { grid-template-columns: 1fr; }
  .visit-card-wide { grid-column: span 1; }
  .transport-grid { grid-template-columns: 1fr; }

  .contact-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-links { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }

  .section { padding: 70px 0; }

  .hero-content { padding: 0 5%; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) { grid-column: span 1; }
  .hero-cta-group { flex-direction: column; }
  .btn { text-align: center; }
}
