/*
Theme Name: Aurora Grove
Theme URI: https://auroragrove.co.za
Author: Aurora Grove
Author URI: https://auroragrove.co.za
Description: A bespoke theme for Aurora Grove — 3D printed sculptural lamps. Sculpted by Nature, Glowing with Light.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aurora-grove
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   CSS VARIABLES & ROOT
   ============================================================ */
:root {
  --cream:        #f5f0e8;
  --warm-white:   #faf7f2;
  --sand:         #e8dcc8;
  --gold:         #c8a96e;
  --gold-light:   #e2c48a;
  --amber:        #d4883a;
  --forest:       #2d5a27;
  --forest-mid:   #3d7a35;
  --forest-light: #5a9e50;
  --charcoal:     #1a1a18;
  --dark-brown:   #2c2318;
  --text-dark:    #2c2318;
  --text-mid:     #5a4f3e;
  --text-light:   #8a7d6a;
  --glow:         rgba(200, 169, 110, 0.15);
  --glow-strong:  rgba(200, 169, 110, 0.35);

  --font-display: 'Cormorant Garamond', 'Palatino Linotype', serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
  --font-accent:  'Cinzel', 'Times New Roman', serif;

  --radius-sm: 6px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-xl: 60px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  background-color: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body.dark-mode {
  background-color: var(--charcoal);
  color: var(--cream);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

.section-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.container--narrow {
  max-width: 860px;
}

.section {
  padding: 100px 0;
}

.section--lg {
  padding: 140px 0;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo img {
  height: 52px;
  width: auto;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
}

.site-logo__name {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--forest);
  line-height: 1;
}

.site-logo__tagline {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--text-light);
  font-style: italic;
  margin-top: 2px;
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav a:hover { color: var(--forest); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-size: 0.75rem !important;
  letter-spacing: 0.18em !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--forest-mid) !important; color: var(--cream) !important; }

.nav-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  color: var(--text-mid);
  transition: all var(--transition);
  flex-shrink: 0;
}

.nav-instagram:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,169,110,0.2);
}

.nav-instagram svg { display: block; }

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
}

.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite alternate;
}

.hero__bg-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,110,0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero__bg-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45,90,39,0.1) 0%, transparent 70%);
  bottom: 50px;
  left: -80px;
  animation-delay: -3s;
}

@keyframes orb-float {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -30px) scale(1.05); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding-top: 100px;
}

.hero__content {}

.hero__eyebrow {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
  animation: fade-up 0.8s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 28px;
  animation: fade-up 0.8s 0.1s ease both;
}

.hero__title em {
  font-style: italic;
  color: var(--forest);
}

.hero__description {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 44px;
  animation: fade-up 0.8s 0.2s ease both;
}

.hero__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: fade-up 0.8s 0.3s ease both;
}

.hero__lamp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  animation: fade-in 1.2s 0.4s ease both;
  height: 520px;
}

.hero__lamp-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.hero__lamp-item:first-child {
  grid-row: span 2;
}

.hero__lamp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero__lamp-item:hover img {
  transform: scale(1.04);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--forest);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45, 90, 39, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--sand);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 169, 110, 0.35);
}

/* ============================================================
   ABOUT / BRAND STRIP
   ============================================================ */
.brand-strip {
  background: var(--forest);
  padding: 24px 0;
  overflow: hidden;
}

.brand-strip__track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.brand-strip__item {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-strip__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   COLLECTION SECTION
   ============================================================ */
.collection {
  background: var(--warm-white);
}

.collection__header {
  text-align: center;
  margin-bottom: 72px;
}

.collection__title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.collection__subtitle {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* FILTER TABS */
.collection__filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--sand);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

/* LAMP GRID */
.lamp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.lamp-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(200, 169, 110, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.lamp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.09);
}

.lamp-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--sand);
}

.lamp-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.lamp-card:hover .lamp-card__image-wrap img {
  transform: scale(1.07);
}

.lamp-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-family: var(--font-body);
}

.lamp-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(200,169,110,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}

.lamp-card:hover .lamp-card__glow {
  opacity: 1;
}

.lamp-card__info {
  padding: 22px 24px;
}

.lamp-card__number {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.lamp-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.lamp-card__size {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--cream);
  overflow: hidden;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about__image-stack {
  position: relative;
  height: 580px;
}

.about__img {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about__img--main {
  width: 70%;
  height: 78%;
  top: 0;
  left: 0;
}

.about__img--accent {
  width: 55%;
  height: 50%;
  bottom: 0;
  right: 0;
  border: 4px solid var(--warm-white);
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: 30%;
  left: 60%;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(45, 90, 39, 0.3);
}

.about__badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}

.about__badge-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
  display: block;
}

.about__eyebrow { color: var(--gold); }

.about__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 24px;
}

.about__body {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.about__value {
  padding: 20px;
  background: var(--warm-white);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--gold);
}

.about__value-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.about__value-text {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS / QUOTE
   ============================================================ */
.quote-section {
  background: var(--forest);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.quote-section__orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.quote-section__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-section__mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(200, 169, 110, 0.2);
  line-height: 0.5;
  display: block;
  margin-bottom: 20px;
}

.quote-section__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--cream);
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.4;
}

.quote-section__attr {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--warm-white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__eyebrow { color: var(--gold); }
.contact__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
}
.contact__body {
  color: var(--text-mid);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact__details { display: flex; flex-direction: column; gap: 20px; }

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--sand);
}

.contact__detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--forest);
}

.contact__detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}

.contact__detail-value {
  font-size: 1rem;
  color: var(--text-dark);
}

.contact__detail-value a:hover { color: var(--forest); }

/* FORM */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(245, 240, 232, 0.7);
  padding: 72px 0 36px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.footer__brand-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) opacity(0.8);
}

.footer__brand-text {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245, 240, 232, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.1);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  stroke: rgba(245, 240, 232, 0.7);
}

.footer__col-title {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.6);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.35);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 26, 24, 0.95);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active { display: flex; }

.lightbox__inner {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 85vh;
}

.lightbox__image {
  background: var(--sand);
}

.lightbox__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox__content {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.lightbox__number {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.lightbox__name {
  font-size: 2.4rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.lightbox__size {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.lightbox__desc {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.lightbox__price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.lightbox__stock {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: -20px;
  margin-bottom: 28px;
  display: block;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(245, 240, 232, 0.1);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox__close:hover { background: rgba(245, 240, 232, 0.2); }

.lightbox__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--cream);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__lamp-grid { max-width: 500px; margin: 0 auto; }
  .about__inner { grid-template-columns: 1fr; gap: 60px; }
  .about__image-stack { height: 400px; }
  .contact__inner { grid-template-columns: 1fr; gap: 60px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .lightbox__inner { grid-template-columns: 1fr; }
  .lightbox__image { height: 300px; }
}

@media (max-width: 768px) {
  /* Hide entire nav (including instagram + enquire) until opened */
  .main-nav { display: none; }
  .nav-instagram,
  .nav-cta { display: none; }

  /* Full-screen overlay when open */
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--warm-white);
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 999;
  }

  /* Show nav links large inside overlay */
  .main-nav.open a {
    font-size: 1.2rem;
    letter-spacing: 0.25em;
  }

  /* Show instagram + enquire inside open overlay */
  .main-nav.open .nav-instagram,
  .main-nav.open .nav-cta {
    display: flex;
  }

  /* Style instagram icon larger inside overlay */
  .main-nav.open .nav-instagram {
    width: 48px;
    height: 48px;
  }

  .main-nav.open .nav-instagram svg {
    width: 24px;
    height: 24px;
  }

  /* Enquire button full width feel inside overlay */
  .main-nav.open .nav-cta {
    padding: 14px 40px !important;
    font-size: 0.85rem !important;
  }

  /* Hamburger always visible, above overlay */
  .menu-toggle { display: flex; z-index: 1001; }

  .section { padding: 72px 0; }
  .hero__title { font-size: 2.8rem; }
  .lamp-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about__values { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .lamp-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   WORDPRESS ADMIN BAR OFFSET
   ============================================================ */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* ============================================================
   WP CORE ALIGNMENT CLASSES
   ============================================================ */
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: 6px; }

/* Screen reader text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
