/* ============================================
   KRAVE ANTIQUES & COLLECTABLES - STYLES v2
   Built by Prairie Peak Digital
   Redesign: Immersive, photo-heavy, antique feel
   ============================================ */

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

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

body {
  font-family: 'Lato', sans-serif;
  color: #2B2B2B;
  background-color: #0F0E0C;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* --- COLOUR VARIABLES --- */
:root {
  --primary-bg: #0F0E0C;
  --secondary-bg: #1A1814;
  --warm-cream: #F5EFE0;
  --aged-paper: #E8DFC9;
  --accent: #C9A84C;
  --accent-hover: #A8872E;
  --brass: #B8860B;
  --oxblood: #6B1C23;
  --deep-green: #1B3A2D;
  --tobacco: #3E2C1C;
  --text-dark: #1A1A1A;
  --text-light: #F5EFE0;
  --text-muted: #8A7E6E;
  --border-warm: rgba(201, 168, 76, 0.2);
}

/* --- UTILITY CLASSES --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

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

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary-bg);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--primary-bg);
}

/* --- HEADER / NAVIGATION --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(15, 14, 12, 0.95);
  backdrop-filter: blur(8px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-warm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 3px;
}

.site-logo span {
  color: var(--accent);
}

.header-phone {
  display: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.header-phone a {
  color: var(--accent);
}

.header-phone a:hover {
  color: var(--text-light);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-light);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--primary-bg);
  padding: 80px 32px 32px;
  transition: right 0.3s ease;
  z-index: 999;
  border-left: 1px solid var(--border-warm);
}

.main-nav.open {
  right: 0;
}

.main-nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.main-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
}

/* --- HERO SECTION (HOME) --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-bg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.45;
  filter: saturate(0.8);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 14, 12, 0.3) 0%,
    rgba(15, 14, 12, 0.6) 60%,
    rgba(15, 14, 12, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--text-light);
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--aged-paper);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero .btn {
  font-size: 1rem;
}

/* --- TRUST BAR --- */
.trust-bar {
  background-color: var(--secondary-bg);
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
  padding: 48px 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}

.trust-item h3 {
  font-size: 2.25rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- SECTION HEADINGS --- */
.section-heading {
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}

.section-heading p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- SERVICES / WHAT WE DO (with photo band) --- */
.services-section {
  position: relative;
  background-color: var(--warm-cream);
  padding: 80px 0;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/store-aisle-wide.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
}

.services-section .section-heading h2 {
  color: var(--text-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  position: relative;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  padding: 40px 32px;
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-left: 4px solid var(--accent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--tobacco);
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- PHOTO BAND (full-bleed image strip) --- */
.photo-band {
  position: relative;
  height: 45vh;
  min-height: 280px;
  max-height: 420px;
  overflow: hidden;
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* --- WHY CHOOSE US (dark with texture) --- */
.why-section {
  position: relative;
  background-color: var(--secondary-bg);
  color: var(--text-light);
  padding: 100px 0;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/store-aisle-deep.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}

.why-section .container {
  position: relative;
  z-index: 2;
}

.why-section .section-heading h2 {
  color: var(--text-light);
}

.why-section .section-heading p {
  color: var(--text-muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.why-card {
  padding: 36px 28px;
  border: 1px solid var(--border-warm);
  border-radius: 4px;
  background: rgba(26, 24, 20, 0.7);
  backdrop-filter: blur(4px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.why-card h3 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.why-card p {
  color: var(--aged-paper);
  line-height: 1.7;
  opacity: 0.85;
}

/* --- VIDEO BACKGROUND BANDS --- */
.video-band {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: var(--primary-bg);
}

/* Breathing room: solid dark gap between bands */
.video-band + .video-band {
  margin-top: 0;
  border-top: 40px solid var(--primary-bg);
}

.video-band__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-band__bg--video {
  display: block;
}

.video-band__bg--poster {
  display: none;
}

/* Stronger overlay: left side solid dark, right side shows video */
.video-band__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(10, 9, 8, 0.95) 0%,
    rgba(10, 9, 8, 0.80) 40%,
    rgba(10, 9, 8, 0.40) 70%,
    rgba(10, 9, 8, 0.15) 100%
  );
  z-index: 2;
}

.video-band__content {
  position: relative;
  z-index: 3;
  max-width: 520px;
  padding: 80px 48px;
  margin-left: 0;
}

.video-band__content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  line-height: 1.2;
}

.video-band__content p {
  font-size: 1.1rem;
  color: #f0e8d0;
  line-height: 1.75;
  margin-bottom: 28px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
  opacity: 1;
}

.video-band__content .btn {
  display: inline-block;
  background: var(--brass-gold);
  color: var(--primary-bg);
  border: 2px solid var(--brass-gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.video-band__content .btn:hover {
  background: transparent;
  color: var(--brass-gold);
  border-color: var(--brass-gold);
}

/* Mobile: show poster image, hide video */
@media (max-width: 767px) {
  .video-band {
    min-height: 420px;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .video-band__bg--video {
    display: none;
  }

  .video-band__bg--poster {
    display: block;
  }

  .video-band__content {
    padding: 32px 24px 48px;
    max-width: 100%;
  }

  /* On mobile: dark overlay from bottom up so text at bottom is always readable */
  .video-band__overlay {
    background: linear-gradient(
      to top,
      rgba(10, 9, 8, 0.97) 0%,
      rgba(10, 9, 8, 0.85) 40%,
      rgba(10, 9, 8, 0.50) 70%,
      rgba(10, 9, 8, 0.10) 100%
    );
  }

  .video-band__content h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .video-band__content p {
    font-size: 1rem;
  }
}

/* --- CTA SECTION --- */
.cta-section {
  position: relative;
  text-align: center;
  padding: 80px 24px;
  background-color: var(--tobacco);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--tobacco) 0%, var(--oxblood) 100%);
  opacity: 0.9;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--warm-cream);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--aged-paper);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.85;
}

.cta-section .btn {
  background-color: var(--accent);
  color: var(--primary-bg);
}

.cta-section .btn:hover {
  background-color: var(--accent-hover);
}

/* --- ABOUT PAGE --- */
.about-hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  background-color: var(--primary-bg);
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/vintage-signs-wall.jpeg');
  background-size: cover;
  background-position: center top;
  opacity: 0.15;
}

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

.about-hero h1 {
  color: var(--text-light);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.about-hero p {
  color: var(--aged-paper);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.about-content {
  padding: 80px 0;
  background-color: var(--warm-cream);
}

.about-block {
  margin-bottom: 60px;
  max-width: 760px;
}

.about-block h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--tobacco);
}

.about-block p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #4A4035;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.about-images img {
  border-radius: 4px;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--aged-paper);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* --- SELL / BUYING PAGE --- */
.sell-hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  background-color: var(--primary-bg);
  overflow: hidden;
}

.sell-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/petroliana-oil-cans.jpeg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.15;
}

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

.sell-hero h1 {
  color: var(--text-light);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.sell-hero p {
  color: var(--aged-paper);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.8;
}

.process-section {
  padding: 80px 0;
  background-color: var(--warm-cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: process-counter;
}

.process-step {
  text-align: center;
  padding: 40px 24px;
  counter-increment: process-counter;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(184, 134, 11, 0.12);
  border-radius: 4px;
}

.process-step::before {
  content: counter(process-counter);
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--tobacco);
}

.process-step p {
  color: var(--text-muted);
  line-height: 1.7;
}

.what-we-buy {
  position: relative;
  background-color: var(--secondary-bg);
  color: var(--text-light);
  padding: 100px 0;
  overflow: hidden;
}

.what-we-buy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/store-interior-wide.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
}

.what-we-buy .container {
  position: relative;
  z-index: 2;
}

.what-we-buy h2 {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
}

.buy-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.buy-list-item {
  padding: 24px 20px;
  border: 1px solid var(--border-warm);
  border-radius: 4px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--aged-paper);
  background: rgba(26, 24, 20, 0.6);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.buy-list-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201, 168, 76, 0.08);
}

/* --- GALLERY PAGE --- */
.gallery-hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  background-color: var(--primary-bg);
  overflow: hidden;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/glassware-window-colorful.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

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

.gallery-hero h1 {
  color: var(--text-light);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.gallery-hero p {
  color: var(--aged-paper);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
  padding: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(transparent, rgba(15, 14, 12, 0.9));
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- CONTACT PAGE --- */
.contact-hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  background-color: var(--primary-bg);
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/krave-open-sign.jpeg');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.15;
}

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

.contact-hero h1 {
  color: var(--text-light);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.contact-hero p {
  color: var(--aged-paper);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.contact-details {
  padding: 80px 0;
  background-color: var(--warm-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-info-card {
  padding: 36px 28px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  border: 1px solid rgba(184, 134, 11, 0.12);
  border-top: 3px solid var(--accent);
}

.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--tobacco);
}

.contact-info-card p {
  color: #4A4035;
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-info-card a {
  color: var(--accent);
  font-weight: 700;
}

.contact-info-card a:hover {
  color: var(--accent-hover);
}

.map-placeholder {
  background-color: var(--secondary-bg);
  border-radius: 4px;
  padding: 60px 32px;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.25s ease;
  border: 1px solid var(--border-warm);
}

.map-placeholder:hover {
  opacity: 0.85;
}

.map-placeholder p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.map-placeholder .btn {
  font-size: 0.9rem;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 4px;
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--primary-bg);
  border-top: 1px solid var(--border-warm);
  padding: 56px 0 24px;
  color: var(--text-muted);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-warm);
  font-size: 0.85rem;
  color: #555;
}

.footer-bottom a {
  color: var(--accent);
}

/* --- MOBILE CALL BUTTON --- */
.mobile-call-btn {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: var(--accent);
  color: var(--primary-bg);
  text-align: center;
  padding: 16px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.mobile-call-btn:hover {
  background-color: var(--accent-hover);
}

/* --- 404 / THANK YOU PAGES --- */
.error-page,
.thankyou-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background-color: var(--primary-bg);
}

.error-page h1,
.thankyou-page h1 {
  color: var(--accent);
  font-size: 4rem;
  margin-bottom: 16px;
}

.error-page p,
.thankyou-page p {
  color: var(--aged-paper);
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.8;
}

/* --- RESPONSIVE --- */
@media (min-width: 768px) {
  .header-phone {
    display: block;
  }

  .mobile-call-btn {
    display: none;
  }

  .main-nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background-color: transparent;
    padding: 0;
    border-left: none;
  }

  .main-nav ul {
    flex-direction: row;
    gap: 32px;
  }

  .main-nav a {
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-overlay {
    display: none !important;
  }

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

@media (min-width: 1024px) {
  .section-padding {
    padding: 100px 0;
  }

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