/* ============================================================
   Gasthaus "Zum Ritter" – Modern Redesign
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================
   CUSTOM PROPERTIES
   ======================== */
:root {
  /* Modern Blue-Teal & Gold Palette */
  --primary:      #2C5F7D;  /* Soft blue-teal */
  --primary-lt:   #3A7694;  /* Lighter blue-teal */
  --primary-dk:   #1E4558;  /* Darker blue-teal */
  --gold:         #E8A84B;  /* Warm gold */
  --gold-dk:      #D4944A;  /* Darker gold */
  --white:        #FFFFFF;  /* Pure white */
  --bg-light:     #F8FAFB;  /* Very light blue-grey */
  --text:         #2D3748;  /* Charcoal */
  --text-muted:   #718096;  /* Medium grey */

  /* Extended color palette */
  --gray-50:      #F9FAFB;
  --gray-100:     #F3F4F6;
  --gray-200:     #E5E7EB;
  --gray-300:     #D1D5DB;
  --gray-600:     #4B5563;
  --gray-800:     #1F2937;

  /* Semantic colors */
  --success:      #10B981;  /* Fresh green */
  --error:        #EF4444;  /* Error red */
  --info:         #3B82F6;  /* Info blue */
  --border:       #E2E8F0;  /* Light grey border */

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w:    1200px;  /* Increased from 1100px */
  --radius:   8px;     /* Increased from 6px */
  --radius-lg: 12px;   /* For cards */

  /* Shadows (neutral, no brown tint) */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.10), 0 10px 10px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition: 250ms ease;
  --transition-slow: 350ms ease;
}

/* ========================
   RESET
   ======================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px; /* Account for sticky header */
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--gold-dk); }

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }

/* ========================
   LAYOUT HELPERS
   ======================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--bg-light);
}

/* ========================
   SKIP LINK (Accessibility)
   ======================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--primary);
  font-weight: 700;
  border-radius: var(--radius);
  z-index: 200;
}
.skip-link:focus { left: 1rem; }

/* ========================
   HEADER & NAVIGATION
   ======================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--white); opacity: 0.9; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.15rem;
  align-items: center;
}

.nav-menu a {
  display: block;
  padding: 0.45rem 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--white);
  background: rgba(232, 168, 75, 0.15);
}

.nav-menu a[aria-current="page"] {
  color: var(--white);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
}

/* Hamburger Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  height: 78vh;
  min-height: 460px;
  max-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/ex.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44, 95, 125, 0.1), rgba(44, 95, 125, 0.3));
}

.hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  color: var(--white);
  text-align: center;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-content h1 {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 44px;
}

.btn-primary {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dk);
  color: var(--primary);
  border-color: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ========================
   PAGE HERO (subpages)
   ======================== */
.page-hero {
  background: var(--primary);
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
}

.breadcrumb {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span[aria-current] {
  color: rgba(255, 255, 255, 0.65);
}

/* ========================
   DIVIDER & SECTION HEADER
   ======================== */
.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 1.4rem auto;
  border-radius: 2px;
}

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }

.eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.section-header h2 { margin-bottom: 1rem; }

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
}

.section-header.center .lead { margin: 0 auto; }

/* ========================
   INTRO (home about section)
   ======================== */
.intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.intro h2 { margin-bottom: 0; }
.intro p { color: var(--text-muted); font-size: 1.02rem; }

/* ========================
   CARDS
   ======================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 { margin-bottom: 0.75rem; }

.card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.card-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.card-link:hover {
  color: var(--primary-lt);
}

.card-link::after { content: ' →'; }

/* ========================
   INFO STRIP
   ======================== */
.info-strip {
  background: var(--primary);
  color: var(--cream);
  padding: 2.75rem 0;
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.info-item h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.info-item p,
.info-item a {
  font-size: 1rem;
  color: var(--white);
}

.info-item a:hover { color: var(--gold); }

/* ========================
   OPENING HOURS TABLE
   ======================== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.75rem;
  font-size: 0.95rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hours-table th {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 600;
  padding: 0.9rem 1.25rem;
  text-align: left;
  letter-spacing: 0.02em;
}

.hours-table td {
  padding: 0.8rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.hours-table tr:nth-child(even) td { background: var(--bg-light); }
.hours-table tr:last-child td { border-bottom: none; }

.hours-table .closed {
  color: var(--text-muted);
  font-style: italic;
}

/* ========================
   PRICE TABLE
   ======================== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.75rem;
  font-size: 0.95rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table th {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 600;
  padding: 0.9rem 1.25rem;
  text-align: left;
}

.price-table th:last-child,
.price-table td:last-child {
  text-align: right;
}

.price-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.price-table tr:nth-child(even) td { background: var(--bg-light); }
.price-table tr:last-child td { border-bottom: none; }

.price-table tr:hover td { background: #EDF5F8; }

.price-table .price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
}

.price-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ========================
   ROOM GRID
   ======================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.room-item { }

.room-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.room-item img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.room-item h3 {
  margin-top: 0.9rem;
  font-size: 1.05rem;
}

.room-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* ========================
   IMAGE GALLERY
   ======================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 0.9;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.95rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 80%;
  text-align: center;
}

/* Body scroll lock when lightbox is open */
body.lightbox-open {
  overflow: hidden;
}

/* ========================
   FEATURES LIST
   ======================== */
.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin: 1.75rem 0;
}

.features-list li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ========================
   TWO-COLUMN CONTENT
   ======================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ========================
   CONTACT PAGE
   ======================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
}

.contact-card h2 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  align-items: baseline;
}

.contact-list li:last-child { border-bottom: none; }

.contact-list .label {
  font-weight: 700;
  color: var(--text-muted);
  min-width: 80px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  flex-shrink: 0;
}

.contact-list .value a {
  color: var(--primary);
}

.contact-list .value a:hover { color: var(--primary-lt); }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  letter-spacing: 0.01em;
}

.form-label .required {
  color: var(--error);
  margin-left: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44, 95, 125, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--success);
  color: #065f46;
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--error);
  color: #991b1b;
  display: block;
}

.form-error {
  display: block;
  font-size: 0.82rem;
  color: var(--error);
  min-height: 1.1em;
}

.directions-box {
  background: var(--bg-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
}

.directions-box h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* ========================
   IMPRESSUM / LEGAL
   ======================== */
.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
  font-size: 1.3rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.legal-content p,
.legal-content address {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: normal;
}

.legal-content ul {
  list-style: none;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 2;
}

/* ========================
   FOOTER
   ======================== */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2.75rem;
}

.footer-brand .logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: block;
}

.footer-brand .logo-text span { color: var(--gold); }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.55rem; }

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
}

.footer-col address a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col address a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover { color: var(--gold); }

/* ========================
   RESPONSIVE BREAKPOINTS
   ======================== */
@media (max-width: 1024px) {
  .section { padding: 4.5rem 0; }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.3s ease;
    pointer-events: none;
    box-shadow: var(--shadow-xl);
    z-index: 99;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 65vh;
  }

  .btn {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 16px;
  }

  .section { padding: 3.5rem 0; }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price-table th,
  .price-table td,
  .hours-table th,
  .hours-table td {
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }

  .info-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
    justify-content: center;
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-card {
    padding: 1.5rem 1.75rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .lightbox-caption {
    bottom: 1rem;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

/* ========================
   UTILITY CLASSES
   ======================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ========================
   PRINT STYLES
   ======================== */
@media print {
  .site-header,
  .site-footer,
  .btn,
  .nav-menu,
  .lightbox {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }

  a {
    text-decoration: underline;
  }

  .section {
    page-break-inside: avoid;
  }
}
