/* ═══════════════════════════════════════════════
   Scott's Highland Dancing — style.css
   Colours pulled directly from the thistle logo
═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  /* Logo colours */
  --green:       #E8C870;   /* remapped to gold */
  --green-dark:  #C8A030;   /* remapped to dark gold */
  --green-light: #6BBD5C;   /* lighter green highlight */
  --purple:      #8B2D8B;   /* thistle flower purple */
  --purple-light:#B054B0;
  --gold:        #C8A96E;   /* ties to Adelaide Piper site */

  /* Light backgrounds */
  --bg:          rgba(255,255,255,0.05);   /* dark transparent */
  --bg-alt:      rgba(255,255,255,0.06);   /* dark surface alt */
  --bg-green:    rgba(255,255,255,0.08);   /* dark surface */
  --bg-purple:   #F5EDF5;   /* very light purple tint */

  /* Text */
  --text:        #FFFFFF;   /* white */
  --text-mid:    rgba(255,255,255,0.75);   /* soft white */
  --text-muted:  rgba(255,255,255,0.55);   /* muted white */
  --text-light:  #FFFFFF;

  /* Borders */
  --border:      rgba(255,255,255,0.15);
  --border-mid:  rgba(255,255,255,0.25);

  --nav-h:   70px;
  --radius:  4px;
  --shadow:  0 2px 20px rgba(0,0,0,0.25);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background-color: #1A3D1A; }
body {
  font-family: 'Lato', sans-serif;
  background-color: #1A3D1A;
  background: linear-gradient(180deg, #3D0A42 0%, #5A1A65 15%, #7B2D8B 30%, #6B3080 45%, #4A3570 55%, #2D4040 70%, #1E4A25 85%, #1A3D1A 100%);
  background-attachment: fixed;
  color: rgba(255,255,255,0.85);
  font-size: 16px; line-height: 1.75; -webkit-font-smoothing: antialiased; min-height: 100vh;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: #E8C870; text-decoration: none; transition: color 0.2s; }
a:hover { color: #E8C870; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--text); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p  { margin-bottom: 1.2rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block; font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: #E8C870;
  margin-bottom: 0.8rem;
}
.divider { width: 44px; height: 3px; background: var(--green); margin: 1rem 0; border-radius: 2px; }
.divider-center { margin: 1rem auto; }
.divider-purple { background: var(--purple); }
.divider-gold   { background: var(--gold); }

/* ── Accessibility ── */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--green); color: white; padding: 0.5rem 1rem;
  font-weight: 700; border-radius: var(--radius); z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── Buttons ── */
.btn {
  display: inline-block; cursor: pointer; border: none;
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.8rem 2rem; border-radius: var(--radius);
  transition: all 0.2s; white-space: nowrap;
}
.btn-green   { background: var(--green); color: white; }
.btn-green:hover { background: var(--green-dark); color: white; }
.btn-purple  { background: var(--purple); color: white; }
.btn-purple:hover { background: #72247F; color: white; }
.btn-outline { background: transparent; color: #E8C870; border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: white; }
.btn-outline-purple { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline-purple:hover { background: var(--purple); color: white; }
.btn-white { background: white; color: #E8C870; }
.btn-white:hover { background: var(--bg-alt); color: #E8C870; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.72rem; }
.btn-gold { background: var(--gold); color: #1A0A1E; }
.btn-gold:hover { background: #D4B87A; color: #1A0A1E; }


/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(58,10,65,0.92);
  border-bottom: 2px solid rgba(123,45,139,0.8);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
}
.nav-logo img {
  height: 48px; width: auto;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem; font-weight: 700;
  color: #E8C870; line-height: 1.2;
}
.nav-logo-text span { display: block; font-size: 0.7rem; font-weight: 400; color: var(--text-muted); font-family: 'Lato', sans-serif; letter-spacing: 0.06em; }

.nav-links { display: flex; align-items: center; gap: 1rem; }
.nav-links a {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.85) !important; padding: 0.3rem 0;
  border-bottom: 2px solid transparent; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: #E8C870; border-bottom-color: #E8C870;
}

.nav-home-link {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.8rem; font-weight: 700;
  color: #E8C870 !important;
  border: 1px solid var(--border);
  padding: 0.25rem 0.7rem !important;
  border-radius: 20px;
  transition: all 0.2s !important;
}
.nav-home-link:hover, .nav-home-link.active {
  background: var(--green); color: white !important;
  border-color: #E8C870; border-bottom: 1px solid var(--green) !important;
}
.nav-cta {
  background: var(--green); color: white !important;
  padding: 0.5rem 1.2rem !important; border-radius: var(--radius);
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }

.nav-hamburger {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #E8C870; transition: all 0.3s; }

/* ══════════════════════════════
   LAYOUT
══════════════════════════════ */
.wrap        { max-width: 1140px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.wrap-narrow { max-width: 780px;  margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-alt   { background: rgba(255,255,255,0.06); }
.section-green { background: rgba(123,45,139,0.15); }
.section-dark  { background: var(--green-dark); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-dark .eyebrow { color: var(--gold); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h)) 1.5rem 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/images/hero.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(45,94,30,0.82) 0%, rgba(45,94,30,0.55) 50%, rgba(26,46,21,0.85) 100%);
}
/* Decorative Celtic knot pattern overlay */
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, white 0, white 1px, transparent 0, transparent 40px),
                    repeating-linear-gradient(90deg, white 0, white 1px, transparent 0, transparent 40px);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; }
.hero .eyebrow { color: var(--gold); border: 1px solid rgba(200,169,110,0.4); padding: 0.3rem 1rem; }
.hero h1 { color: white; margin-bottom: 1.2rem; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Logo hero badge */
.hero-logo {
  width: 100px; height: 100px; margin: 0 auto 2rem;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hero-logo img { width: 80px; height: 80px; object-fit: contain; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(160deg, #3D0A42 0%, #5A1A65 50%, #7B2D8B 100%);
  padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, white 0, white 1px, transparent 0, transparent 30px);
}
.page-hero-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.page-hero h1 { color: white; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.8); }
.page-hero .divider { background: var(--gold); }

/* Breadcrumb */
.breadcrumb {
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 0.6rem clamp(1rem,4vw,3rem);
}
.breadcrumb ol {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--text-muted);
  max-width: 1140px; margin: 0 auto;
}
.breadcrumb li + li::before { content: '/'; opacity: 0.4; margin-right: 0.4rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: #E8C870; }
.breadcrumb li:last-child { color: #E8C870; }

/* ══════════════════════════════
   LOCATION CARDS
══════════════════════════════ */
.locations-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
.location-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232,200,112,0.35);
  border-radius: var(--radius); padding: 2rem;
  transition: all 0.25s;
}
.location-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
.location-card-icon {
  width: 48px; height: 48px; background: rgba(232,200,112,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.location-card h3 { color: #E8C870; margin-bottom: 0.4rem; font-size: 1.3rem; }
.location-card p { font-size: 0.9rem; }

/* ══════════════════════════════
   SERVICE / INFO CARDS
══════════════════════════════ */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3); transition: all 0.2s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--green);
}
.card.card-purple::before { background: var(--purple); }
.card.card-gold::before   { background: var(--gold); }
.card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.4); transform: translateY(-4px); border-color: rgba(232,200,112,0.35); background: rgba(255,255,255,0.13); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { color: white; margin-bottom: 0.5rem; font-size: 1.1rem; }
.card .age-badge {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(232,200,112,0.15); color: #E8C870;
  border: 1px solid var(--border); padding: 0.15rem 0.6rem;
  border-radius: 20px; margin-bottom: 0.6rem;
}

/* ══════════════════════════════
   NEWS / EVENTS
══════════════════════════════ */
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.news-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.25s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,0,0,0.4); border-color: rgba(232,200,112,0.35); }
.news-card-img {
  width: 100%; height: 220px; object-fit: cover; background: rgba(123,45,139,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 1.5rem; }
.news-date {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #E8C870; margin-bottom: 0.5rem;
}
.news-card h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; }
.news-card p  { font-size: 0.9rem; }

/* Video embed */
.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: var(--radius); margin-top: 1rem;
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: none; border-radius: var(--radius);
}

/* ══════════════════════════════
   COMPETITION RESULTS
══════════════════════════════ */
.results-filters {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.filter-btn {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.75);
  padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; font-family: 'Lato', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green); border-color: #E8C870; color: white;
}

.results-table {
  width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius);
  overflow: hidden;
}
.results-table th {
  background: rgba(74,14,78,0.8); color: #E8C870; padding: 0.9rem 1rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  text-align: left;
}
.results-table td {
  padding: 0.8rem 1rem; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-mid);
}
.results-table tr:last-child td { border-bottom: none; }
.results-table tr:hover td { background: rgba(255,255,255,0.05); }
.placing-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  font-weight: 700; font-size: 0.82rem;
}
.placing-1 { background: #FFD700; color: #5A4000; }
.placing-2 { background: #C0C0C0; color: #3A3A3A; }
.placing-3 { background: #CD7F32; color: white; }
.placing-other { background: rgba(232,200,112,0.15); color: #E8C870; }

/* ══════════════════════════════
   GALLERY
══════════════════════════════ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 8px; margin-top: 2.5rem;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3; background: var(--bg-alt); border-radius: var(--radius);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(45,94,30,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: 2rem; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(45,94,30,0.85), transparent);
  color: white; font-size: 0.78rem; padding: 1rem 0.8rem 0.5rem;
  opacity: 0; transition: opacity 0.2s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 500; background: rgba(10,20,8,0.95);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-wrap { max-width: 1000px; width: 100%; transform: scale(0.95); transition: transform 0.25s; }
.lightbox.open .lightbox-wrap { transform: scale(1); }
.lightbox-wrap img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-cap { text-align: center; color: rgba(255,255,255,0.7); font-size: 0.88rem; padding: 0.8rem 0 0; }
.lb-close { position: fixed; top: 1.5rem; right: 1.5rem; background: none; border: none; color: white; font-size: 1.8rem; cursor: pointer; z-index: 501; }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(74,155,60,0.3); border: 1px solid rgba(74,155,60,0.4);
  color: white; font-size: 1.2rem; cursor: pointer; padding: 1rem 0.8rem; z-index: 501;
  transition: background 0.2s; border-radius: 2px;
}
.lb-prev:hover, .lb-next:hover { background: rgba(74,155,60,0.6); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-method {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 0; border-bottom: 1px solid var(--border);
}
.contact-method:last-child { border-bottom: none; }
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%;
  background: var(--bg-green); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-method strong { display: block; color: var(--text); font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-method span   { font-size: 0.9rem; color: var(--text-muted); }

/* Form */
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #E8C870; margin-bottom: 0.4rem;
}
.form-input {
  width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: white; padding: 0.75rem 1rem;
  font-family: 'Lato', sans-serif; font-size: 0.92rem;
  border-radius: var(--radius); outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; backdrop-filter: blur(8px);
}
.form-input:focus { border-color: #E8C870; background: rgba(255,255,255,0.12); }
.form-input::placeholder { color: rgba(255,255,255,0.35); }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { cursor: pointer; }
.form-error {
  background: #FEF2F2; border: 1px solid #FCA5A5; color: #DC2626;
  padding: 0.75rem 1rem; border-radius: var(--radius);
  font-size: 0.88rem; margin-bottom: 1rem; display: none;
}
.honeypot { position: absolute; left: -9999px; top: -9999px; }

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.cta-banner {
  background: rgba(74,14,78,0.5);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(232,200,112,0.35);
  border-bottom: 2px solid rgba(123,45,139,0.8);
  padding: 4.5rem 1.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, white 0, white 1px, transparent 0, transparent 30px);
}
.cta-banner h2 { color: white; margin-bottom: 0.8rem; }
.cta-banner p  { color: rgba(255,255,255,0.78); margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-banner h2 { position: relative; z-index: 1; }
.cta-banner p  { position: relative; z-index: 1; }
.cta-banner .eyebrow { color: var(--gold); position: relative; z-index: 1; }

/* ══════════════════════════════
   FACEBOOK STRIP
══════════════════════════════ */
.fb-strip {
  background: #1877F2; padding: 1rem clamp(1rem,4vw,3rem);
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
}
.fb-strip p { color: white; margin: 0; font-size: 0.9rem; }
.fb-strip a {
  background: white; color: #1877F2; padding: 0.5rem 1.2rem;
  border-radius: var(--radius); font-weight: 700; font-size: 0.82rem;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: rgba(20,5,25,0.8);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(232,200,112,0.35);
  color: rgba(255,255,255,0.85);
  padding: 3.5rem clamp(1rem,4vw,3rem) 1.5rem;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-logo img { height: 52px; width: auto; background: white; border-radius: 50%; padding: 4px; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: white; }
.footer-logo-text span { display: block; font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.6); font-family: 'Lato', sans-serif; }
footer p  { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-phone { display: block; font-size: 1.1rem; font-weight: 700; color: var(--gold); margin: 0.5rem 0 0.2rem; }
.footer-email { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-nav h5 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav a  { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.footer-nav a:hover { color: white; }
.footer-bottom {
  max-width: 1140px; margin: 0 auto;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
}

/* ══════════════════════════════
   REVEAL
══════════════════════════════ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0.5rem;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(58,10,65,0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-bottom: 2px solid rgba(123,45,139,0.8);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  }
  .nav-links.open a {
    color: white !important;
    font-size: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open a:hover { color: #E8C870 !important; }
  .nav-hamburger { display: flex; }
  .locations-grid { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner   { grid-template-columns: 1fr; gap: 2rem; }
  .form-row       { grid-template-columns: 1fr; }
  .results-table  { font-size: 0.82rem; }
  .results-table th, .results-table td { padding: 0.6rem 0.7rem; }
}

@media (max-width: 540px) {
  .hero-actions  { flex-direction: column; align-items: center; }
  .cta-actions   { flex-direction: column; align-items: center; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
}
