/*
Theme Name: CallaMia Floral Design
Theme URI: https://www.thecolorblue.co.za
Author: The Color Blue
Author URI: https://www.thecolorblue.co.za
Description: Bespoke WordPress theme for CallaMia Floral Design — dreamy, editorial luxury floral studio aesthetic.
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: callamia
*/

:root {
  --chocolate: #4F2516;
  --sage: #807C57;
  --tan: #A78E70;
  --cream: #C0BDB2;
  --burgundy: #5A091A;
  --blush: #C1856F;
  --ivory: #F5F2ED;
  --warm-white: #FDFBF8;
  --text-dark: #3d3b3a;
  --text-light: #8a8580;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 30px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
}

nav.scrolled {
  background: rgba(253,251,248,0.93);
  backdrop-filter: blur(16px);
  padding: 20px 56px;
  box-shadow: 0 1px 0 rgba(79,37,22,0.06);
}

/* Portfolio page nav - always has bg */
nav.nav-solid {
  background: rgba(253,251,248,0.93);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(79,37,22,0.06);
}

/* Homepage nav: light links over hero image, wordmark stays dark over cream bg */
body.home nav:not(.scrolled) .nav-links a {
  color: #fff;
}
body.home nav:not(.scrolled) .nav-links a::after {
  background: #fff;
}
body.home nav:not(.scrolled) .nav-links a:hover {
  color: rgba(255,255,255,0.7);
}
body.home nav:not(.scrolled) .menu-toggle span {
  background: #fff;
}

.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-wordmark:hover { opacity: 0.7; }

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

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--burgundy);
  transition: width 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.nav-links a:hover { color: var(--burgundy); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--burgundy); }
.nav-links a.active::after { width: 100%; }

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

.menu-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text-dark); transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 72px 80px 72px;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--blush);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 4.8vw, 4.4rem);
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--burgundy);
}

.hero-desc {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-light);
  max-width: 400px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.7s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--tan);
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.9s forwards;
}

.hero-cta:hover { color: var(--burgundy); border-color: var(--burgundy); }

.hero-cta svg {
  width: 18px; height: 18px;
  transition: transform 0.3s;
}

.hero-cta:hover svg { transform: translateX(4px); }

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: fadeIn 1.2s 0.2s forwards;
}

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

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(253,251,248,0.12) 0%, transparent 50%);
}

/* ========== SHARED ========== */
.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  color: var(--text-dark);
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--burgundy);
}

/* ========== ABOUT ========== */
.about {
  padding: 140px 56px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.about-visual { position: relative; overflow: hidden; }

.about-main-img {
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.about-main-img:hover img { transform: scale(1.03); }

.about-float-img {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 210px;
  height: 270px;
  overflow: hidden;
  border: 8px solid var(--warm-white);
  z-index: 2;
}

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

.about-content { max-width: 480px; }

.about-text {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--text-light);
  margin-top: 24px;
}

.about-text + .about-text { margin-top: 16px; }

.about-signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--burgundy);
  margin-top: 36px;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(167,142,112,0.15);
}

.about-stat h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--burgundy);
  line-height: 1;
}

.about-stat p {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
}

/* ========== SERVICES ========== */
.services {
  padding: 120px 56px;
  background: var(--ivory);
}

.services-inner {
  max-width: 1400px;
  margin: 0 auto;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  padding: 44px 28px;
  background: var(--warm-white);
  border: 1px solid rgba(167,142,112,0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--blush), var(--burgundy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(79,37,22,0.06); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.8rem;
  color: rgba(167,142,112,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--text-light);
}

/* ========== MOOD STRIP ========== */
.mood-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 380px;
}

.mood-strip-item {
  overflow: hidden;
  position: relative;
}

.mood-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

/* ========== PORTFOLIO TEASER ========== */
.portfolio-teaser {
  padding: 120px 56px;
  background: var(--chocolate);
}

.portfolio-teaser-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-teaser .section-label { color: var(--tan); }
.portfolio-teaser .section-title { color: var(--cream); }
.portfolio-teaser .section-title em { color: var(--blush); }

.portfolio-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

a.pt-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.pt-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.pt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: brightness(0.85);
}

.pt-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.72);
}

.pt-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.pt-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 4px;
}

.pt-overlay span {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--tan);
  transition: all 0.4s;
}

.portfolio-link:hover { color: var(--blush); border-color: var(--blush); }

.portfolio-link svg {
  width: 16px; height: 16px;
  transition: transform 0.3s;
}

.portfolio-link:hover svg { transform: translateX(4px); }

/* ========== ENQUIRY ========== */
.enquiry {
  padding: 140px 56px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.enquiry-image {
  height: 620px;
  overflow: hidden;
}

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

.enquiry-content { max-width: 480px; }

.enquiry-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-top: 20px;
  margin-bottom: 44px;
}

.form-group { margin-bottom: 26px; }

.form-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 0;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--cream);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--burgundy);
}

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

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A78E70' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}

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

.submit-btn {
  margin-top: 12px;
  padding: 16px 52px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--burgundy);
  border: none;
  cursor: pointer;
  transition: all 0.4s;
}

.submit-btn:hover {
  background: var(--chocolate);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(90,9,26,0.2);
}

/* Form feedback */
.form-success {
  display: none;
  padding: 20px;
  background: rgba(128,124,87,0.08);
  border: 1px solid var(--sage);
  margin-top: 20px;
  text-align: center;
}

.form-success p {
  font-size: 0.85rem;
  color: var(--sage);
  line-height: 1.6;
}

.form-error {
  display: none;
  padding: 20px;
  background: rgba(90,9,26,0.05);
  border: 1px solid var(--burgundy);
  margin-top: 20px;
  text-align: center;
}

.form-error p {
  font-size: 0.85rem;
  color: var(--burgundy);
  line-height: 1.6;
}

/* ========== FOOTER ========== */
footer {
  padding: 56px 56px 36px;
  background: var(--ivory);
  border-top: 1px solid rgba(167,142,112,0.1);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 44px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.footer-sub {
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--burgundy); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(167,142,112,0.08);
}

.footer-copy {
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--cream);
  display: flex;
  align-items: center; justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social a:hover { border-color: var(--burgundy); background: var(--burgundy); }
.footer-social a:hover svg { stroke: #fff; }

.footer-social svg {
  width: 13px; height: 13px;
  stroke: var(--text-light);
  stroke-width: 1.5;
  fill: none;
}

.footer-credit {
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(167,142,112,0.06);
}

.footer-credit p {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--cream);
}

.footer-credit a {
  color: var(--tan);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-credit a:hover {
  color: var(--burgundy);
}

/* ========== PORTFOLIO PAGE ========== */
.page-header {
  padding: 160px 56px 80px;
  text-align: center;
}

.page-header .section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 16px;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--text-dark);
}

.page-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--burgundy);
}

.page-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 500px;
  margin: 24px auto 0;
}

/* Collections Grid */
.collections {
  padding: 0 56px 120px;
  max-width: 1400px;
  margin: 0 auto;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.collection-folder {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  background: var(--ivory);
}

.collection-folder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}

.collection-folder:hover img {
  transform: scale(1.05);
}

/* Gradient overlay — always visible so text is readable */
.collection-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 40%, transparent 60%);
  transition: background 0.5s;
}

.collection-folder:hover .collection-info {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 50%, transparent 65%);
}

.collection-tag {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  opacity: 1;
}

.collection-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: #fff;
  opacity: 1;
}

.collection-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  opacity: 0;
  transform: rotate(-45deg);
  transition: all 0.4s 0.15s;
}

.collection-folder:hover .collection-arrow {
  opacity: 1;
  transform: rotate(0deg);
}

.collection-arrow svg {
  width: 15px; height: 15px;
  stroke: #fff;
  stroke-width: 1.5;
  fill: none;
}

.collection-folder.featured {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(253,251,248,0.97);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  overflow-y: auto;
}

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

.gallery-header {
  position: sticky;
  top: 0; z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 56px;
  background: rgba(253,251,248,0.92);
  backdrop-filter: blur(12px);
}

.gallery-back {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.gallery-back:hover { color: var(--burgundy); }

.gallery-back svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.gallery-content {
  padding: 32px 56px 80px;
  columns: 3;
  column-gap: 16px;
}

.gallery-content img {
  width: 100%;
  display: block;
  margin-bottom: 16px;
  break-inside: avoid;
  transition: transform 0.5s;
}

.gallery-content img:hover { transform: scale(1.01); cursor: pointer; }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  user-select: none;
  transition: opacity 0.25s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  z-index: 3001;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
  padding: 20px;
  z-index: 3001;
  user-select: none;
}

.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  z-index: 3001;
}

@media (max-width: 768px) {
  .lightbox-nav { font-size: 1.8rem; padding: 12px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-close { top: 12px; right: 16px; font-size: 1.6rem; }
}

/* Portfolio page footer (simplified) */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(253,251,248,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

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

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--burgundy); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  nav { padding: 22px 36px; }
  nav.scrolled { padding: 16px 36px; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-left { padding: 120px 48px 60px 48px; }
  .about { padding: 100px 36px; }
  .about-grid { gap: 60px; }
  .services { padding: 80px 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .mood-strip { height: 280px; }
  .portfolio-teaser { padding: 80px 36px; }
  .enquiry { padding: 100px 36px; gap: 48px; }
  footer { padding: 40px 36px 28px; }
  .page-header { padding: 140px 36px 60px; }
  .collections { padding: 0 36px 80px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-folder.featured { grid-column: 1 / -1; }
  .gallery-content { columns: 2; padding: 24px 36px 60px; }
  .gallery-header { padding: 20px 36px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 28px 48px; }
  .hero-right { height: 65vh; }
  .about { padding: 60px 24px; overflow: hidden; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-main-img { height: 360px; }
  .about-float-img { width: 150px; height: 190px; right: 0; bottom: -20px; }
  .about-content { max-width: 100%; }
  .about-stats { gap: 20px; flex-wrap: wrap; }
  .about-stat h4 { font-size: 1.5rem; }
  .about-stat p { font-size: 0.62rem; letter-spacing: 0.08em; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .mood-strip { grid-template-columns: repeat(2, 1fr); height: auto; }
  .mood-strip-item { height: 200px; }
  .portfolio-teaser { padding: 60px 24px; }
  .portfolio-teaser-grid { grid-template-columns: 1fr; }
  .enquiry { padding: 60px 24px; grid-template-columns: 1fr; }
  .enquiry-image { height: 320px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 32px 24px 24px; }
  .footer-top { flex-direction: column; gap: 20px; }
  nav { padding: 20px 24px; }
  .page-header { padding: 120px 24px 48px; }
  .collections { padding: 0 24px 60px; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-folder.featured { aspect-ratio: 3/4; }
  .gallery-content { columns: 1; padding: 20px 24px 60px; }
  .gallery-header { padding: 16px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }

  /* Mobile collection adjustments */
  .collection-info { padding: 24px; }
  .collection-arrow { display: none; }
}
