/* ============================================================
   JW_Photography by Josh Winstanley
   style.css — Main Stylesheet
   ============================================================

   TABLE OF CONTENTS
   1.  Design Tokens (CSS Custom Properties)
   2.  Reset & Base
   3.  Typography
   4.  Layout Utilities
   5.  Placeholder Image Fallback
   6.  Buttons
   7.  Navigation
   8.  Hero Section
   9.  Services Strip
   10. Section Headers
   11. Portfolio Grid (Home)
   12. About Snippet (Home)
   13. CTA Banner
   14. Footer
   15. Page Hero (inner pages)
   16. Portfolio Page (filter + gallery grid)
   17. Lightbox
   18. Booking Page
   19. Pricing Cards
   20. Mini Calendar
   21. About Page
   22. Stats Strip
   23. Values / Cards
   24. Client Gallery Page
   25. Shop Page
   26. Shop Purchase Modal
   27. Contact Page
   28. Form Shared Styles
   29. Animations & Scroll Effects
   30. Responsive Breakpoints
   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Colours */
  --white:        #ffffff;
  --off-white:    #f7f7f5;
  --light-grey:   #efefed;
  --mid-grey:     #c0c0bc;
  --text-muted:   #888884;
  --dark:         #111110;
  --dark-mid:     #2a2a28;
  --brand:        #e8c547;   /* gold accent — REPLACE to change site colour */
  --brand-dark:   #c9a82e;
  --brand-light:  #f3d96a;
  --danger:       #dc2626;
  --success:      #16a34a;

  /* Typography */
  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-2xl:  9rem;

  /* Layout */
  --max-width:  1280px;
  --nav-height: 70px;

  /* Effects */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 8px 30px rgba(0,0,0,.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.15);
  --transition: 0.28s ease;
}


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

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button { cursor: pointer; font-family: inherit; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem);   font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; }

p { color: var(--dark-mid); }
p.lead { font-size: 1.15rem; color: var(--dark); font-weight: 400; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 0.6rem;
}


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--space-lg);
}

.section-header p {
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

.section-footer {
  text-align: center;
  margin-top: var(--space-lg);
}


/* ============================================================
   5. PLACEHOLDER IMAGE FALLBACK
   Makes missing images show a styled grey box with text label
   instead of a broken image icon.
   ============================================================ */
img[src*="PLACEHOLDER"],
img:not([src]),
img[src=""] {
  background: linear-gradient(135deg, #deded8 0%, #c8c8c2 100%);
  min-height: 220px;
  position: relative;
}

/* The alt text is visible on broken images in most browsers,
   but we also add a pseudo-element for a cleaner label look */
img[src*="PLACEHOLDER"]::before {
  content: attr(alt);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888880;
  background: linear-gradient(135deg, #deded8 0%, #c8c8c2 100%);
  padding: 1rem;
  text-align: center;
}


/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary — dark fill */
.btn-primary {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-primary:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(232,197,71,.35);
}

/* Outline dark */
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

/* Outline light (for use on dark backgrounds) */
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* Secondary */
.btn-secondary {
  background: var(--off-white);
  color: var(--dark);
  border-color: var(--light-grey);
}
.btn-secondary:hover {
  background: var(--light-grey);
}

/* Small */
.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
}

/* Full-width */
.btn-full { width: 100%; text-align: center; }


/* ============================================================
   7. NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}

/* On inner pages (non-hero), start with white navbar */
body:not(.has-hero) .navbar {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.navbar.scrolled .nav-logo,
body:not(.has-hero) .nav-logo {
  color: var(--dark);
}

/* Logo image in navbar */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  /* No colour manipulation — show logo as shot */
  transition: opacity var(--transition);
}
.nav-logo-img:hover { opacity: 0.85; }

/* Footer logo image */
.footer-brand .nav-logo-img {
  height: 40px;
  margin-bottom: 0.6rem;
  /* invert(1) turns black logo white and white bg black — blends into dark footer */
  filter: invert(1);
}

.logo-underscore {
  color: var(--brand);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85);
  transition: color var(--transition), background var(--transition);
}

.navbar.scrolled .nav-link,
body:not(.has-hero) .nav-link {
  color: var(--dark-mid);
}

.nav-link:hover,
.nav-link.active {
  color: var(--dark) !important;
  background: var(--brand);
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.navbar.scrolled .nav-toggle span,
body:not(.has-hero) .nav-toggle span {
  background: var(--dark);
}

/* Hamburger → X animation */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   8. HERO SECTION (Home page)
   ============================================================ */
body.has-hero { padding-top: 0; }
body:not(.has-hero) { padding-top: var(--nav-height); }

.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2a2a2a; /* fallback colour shown while PLACEHOLDER is replaced */
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}


/* ============================================================
   9. SERVICES STRIP (Home page)
   ============================================================ */
.services-strip {
  background: var(--dark);
  padding: var(--space-lg) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-item {
  text-align: center;
  padding: var(--space-md);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-sm);
  color: var(--brand);
}

.service-icon svg { width: 100%; height: 100%; }

.service-item h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.service-item p {
  color: rgba(255,255,255,.55);
  font-size: 0.92rem;
}


/* ============================================================
   10. SECTION HEADERS — shared across pages
   (defined in Layout Utilities above, extended here)
   ============================================================ */
.section-header h2 { margin-top: 0.4rem; }


/* ============================================================
   11. PORTFOLIO GRID (Home "Recent Work")
   ============================================================ */
.featured-portfolio {
  background: var(--off-white);
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light-grey);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.portfolio-item:hover img {
  transform: scale(1.07);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}


/* ============================================================
   12. ABOUT SNIPPET (Home page)
   ============================================================ */
.about-snippet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-snippet-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--light-grey);
  box-shadow: var(--shadow-lg);
}

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

/* Gold accent block behind the image */
.about-snippet-img::before {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  background: var(--brand);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-snippet-text h2 { margin: 0.5rem 0 1rem; }
.about-snippet-text p { margin-bottom: 1rem; }
.about-snippet-text .btn { margin-top: 0.5rem; }


/* ============================================================
   13. CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--dark);
  padding: var(--space-xl) 0;
}

.cta-banner-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner-inner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner-inner p {
  color: rgba(255,255,255,.6);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-banner-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner .btn-outline {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.35);
}

.cta-banner .btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}


/* ============================================================
   14. FOOTER
   ============================================================ */
.footer {
  background: #0d0d0c;
  padding: var(--space-xl) 0 0;
  color: rgba(255,255,255,.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .nav-logo {
  color: var(--white);
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.footer-byline {
  font-size: 0.88rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.social-links a:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(232,197,71,.08);
}

.social-links a svg { width: 18px; height: 18px; }

.footer-nav h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 0.8rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-nav a,
.footer-contact a {
  color: rgba(255,255,255,.5);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--brand);
}

.footer-contact p {
  color: rgba(255,255,255,.5);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  padding: var(--space-sm) 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.25);
}


/* ============================================================
   15. PAGE HERO (inner pages — portfolio, booking, etc.)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-lg);
  background: var(--off-white);
  border-bottom: 1px solid var(--light-grey);
}

.page-hero h1 { margin: 0.4rem 0 0.8rem; }

.page-hero p {
  font-size: 1.1rem;
  max-width: 520px;
}


/* ============================================================
   16. PORTFOLIO PAGE — filter + gallery grid
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}

.filter-btn {
  background: none;
  border: 1.5px solid var(--light-grey);
  border-radius: 100px;
  padding: 0.45rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--dark);
  color: var(--dark);
}

.filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

/* Gallery grid — used on portfolio page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--light-grey);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 0.9rem 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

/* Hidden state during filtering */
.gallery-item.hidden {
  display: none;
}

.gallery-item.fade-in {
  animation: fadeInItem 0.35s ease forwards;
}

@keyframes fadeInItem {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}


/* ============================================================
   17. LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.93);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 2.5rem;
  line-height: 1;
  transition: color var(--transition);
  padding: 0.25rem;
}
.lightbox-close:hover { color: var(--white); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--white);
  width: 52px;
  height: 52px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.2); }


/* ============================================================
   18. BOOKING PAGE — form + sidebar layout
   ============================================================ */
.booking-section {
  background: var(--off-white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-xl);
  align-items: start;
}

.booking-form-wrap h2 { margin-bottom: 0.5rem; }
.booking-form-wrap > p { margin-bottom: 2rem; }

.booking-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.calendar-wrap {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.calendar-wrap h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }

.calendar-note {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cal-legend {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.cal-available { background: #86efac; }
.cal-booked    { background: #fca5a5; }

.calendar-disclaimer {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-style: italic;
}

.booking-sidebar-note {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.booking-sidebar-note h4 { margin-bottom: 0.5rem; }
.booking-sidebar-note p  { font-size: 0.9rem; margin-bottom: 1rem; }

/* Social links inside booking sidebar (text links) */
.booking-sidebar-note .social-links a {
  width: auto;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--light-grey);
  padding: 0.4rem 0.9rem;
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 600;
  gap: 0.4rem;
}
.booking-sidebar-note .social-links a svg { width: 16px; height: 16px; }
.booking-sidebar-note .social-links a:hover {
  border-color: var(--brand);
  color: var(--dark);
  background: rgba(232,197,71,.12);
}


/* ============================================================
   19. PRICING CARDS
   ============================================================ */
.pricing-section { background: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  position: relative;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--brand);
}

.pricing-card.featured {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-type-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1.25rem;
  color: var(--brand);
}
.pricing-type-icon svg { width: 100%; height: 100%; }

.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.pricing-card.featured h3 { color: var(--white); }

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 1.75rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.pricing-card.featured .price-amount { color: var(--white); }

.price-unit {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-card.featured .price-unit { color: rgba(255,255,255,.5); }

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-grey);
  color: var(--dark-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,.65);
  border-color: rgba(255,255,255,.1);
}

.pricing-card.featured .btn-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--dark);
}
.pricing-card.featured .btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}


/* ============================================================
   20. MINI CALENDAR
   ============================================================ */
.mini-calendar {
  font-size: 0.82rem;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.cal-nav-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-muted);
  padding: 0.2rem 0.4rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.cal-nav-btn:hover { color: var(--dark); }

.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.78rem;
  cursor: default;
}

.cal-day.empty { background: none; }
.cal-day.available { background: #dcfce7; color: #166534; }
.cal-day.booked    { background: #fee2e2; color: #991b1b; }
.cal-day.today     { outline: 2px solid var(--brand); outline-offset: -2px; font-weight: 700; }
.cal-day.past      { opacity: 0.35; }


/* ============================================================
   21. ABOUT PAGE
   ============================================================ */
.about-main { background: var(--white); }

.about-main-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-main-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--light-grey);
  box-shadow: var(--shadow-lg);
}

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

.about-main-img-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--brand);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

.about-main-text h2 { margin: 0.5rem 0 1.5rem; }
.about-main-text p  { margin-bottom: 1rem; }

.about-details {
  margin: 2rem 0;
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-detail-item {
  display: flex;
  gap: 1rem;
}

.about-detail-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 110px;
}

.about-detail-value {
  font-size: 0.92rem;
  color: var(--dark);
}


/* ============================================================
   22. STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--brand);
  padding: var(--space-lg) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: var(--space-md);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-mid);
}


/* ============================================================
   23. VALUES / CARDS SECTION
   ============================================================ */
.values-section { background: var(--off-white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--light-grey);
  transition: box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1.25rem;
  color: var(--brand-dark);
}
.value-icon svg { width: 100%; height: 100%; }

.value-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.9rem; }


/* ============================================================
   24. CLIENT GALLERY PAGE
   ============================================================ */
.gallery-section { background: var(--off-white); }

/* Lock screen */
.gallery-lock {
  max-width: 480px;
  margin: 0 auto;
  padding: var(--space-md);
}

.gallery-lock-inner {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.lock-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  color: var(--dark);
}
.lock-icon svg { width: 100%; height: 100%; }

.gallery-lock-inner h2 { margin-bottom: 0.5rem; }
.gallery-lock-inner > p { margin-bottom: 2rem; }

.gallery-unlock-form .form-group {
  margin-bottom: 1rem;
}

.gallery-lock-error {
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

.gallery-lock-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.gallery-lock-note a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Gallery content */
.gallery-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.gallery-event-name {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.client-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.client-photo-item {}

.client-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  background: var(--light-grey);
}

.client-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.client-photo-wrap:hover img { transform: scale(1.04); }

.client-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.client-photo-wrap:hover .client-photo-overlay { opacity: 1; }

.client-photo-num {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
  text-align: center;
}

.gallery-footer-note {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--light-grey);
}

.gallery-footer-note p { margin-bottom: 1.25rem; }


/* ============================================================
   25. SHOP PAGE
   ============================================================ */
.shop-section { background: var(--off-white); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.shop-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--light-grey);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}

.shop-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.shop-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light-grey);
}

.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-card:hover .shop-card-img img { transform: scale(1.05); }

.shop-card-price-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.group-count-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(0,0,0,0.65);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.shop-card-body {
  padding: 1.25rem;
}

.shop-card-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-dark);
  display: block;
  margin-bottom: 0.3rem;
}

.shop-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.shop-card-btn {
  font-size: 0.78rem;
  padding: 0.45rem 1rem;
}


/* ============================================================
   26. SHOP PURCHASE MODAL
   ============================================================ */
.shop-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.shop-modal[hidden] { display: none; }

.shop-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  cursor: pointer;
}

.shop-modal-content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.shop-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  z-index: 2;
  background: var(--off-white);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background var(--transition);
}
.shop-modal-close:hover { background: var(--light-grey); }

.shop-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.shop-modal-img-wrap {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 300px;
}

.shop-modal-img-wrap img,
.shop-modal-img-wrap canvas {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
}

.shop-modal-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.shop-modal-info h2 {
  font-size: 1.6rem;
  margin: 0.3rem 0 0.5rem;
}

.shop-modal-price {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.shop-modal-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.shop-modal-options h4 {
  margin-bottom: 0.75rem;
}

.shop-format-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.shop-format-btn {
  background: var(--off-white);
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: left;
  transition: all var(--transition);
  color: var(--dark);
}
.shop-format-btn:hover { border-color: var(--dark); }
.shop-format-btn.active {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.shop-enquiry-note {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1rem;
}

.shop-enquiry-note[hidden] { display: none; }

.shop-enquiry-note svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.shop-enquiry-note p {
  font-size: 0.88rem;
  color: #166534;
  margin: 0;
}

.shop-enquiry-note a {
  color: #166534;
  text-decoration: underline;
}

.shop-enquiry-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.shop-enquiry-link:hover { color: var(--dark); }


/* ============================================================
   27. CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info > p { margin-bottom: 2rem; }

.contact-social-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-social-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.contact-social-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-social-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--dark);
}
.contact-social-icon svg { width: 100%; height: 100%; }

.contact-social-text h3 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.contact-social-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-social-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-dark);
  letter-spacing: 0.02em;
}

.contact-location {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-location svg { width: 18px; height: 18px; color: var(--brand-dark); flex-shrink: 0; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { margin-bottom: 2rem; }


/* ============================================================
   28. FORM SHARED STYLES
   ============================================================ */
.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-row { }

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.req { color: var(--brand-dark); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(232,197,71,.25);
}

input.invalid,
select.invalid,
textarea.invalid {
  border-color: var(--danger);
}

textarea { resize: vertical; }

.field-error {
  display: none;
  font-size: 0.78rem;
  color: var(--danger);
  margin-top: 0.35rem;
}

.field-error.visible { display: block; }

.form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-success[hidden] { display: none; }

.form-success svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

.form-success p {
  font-size: 0.9rem;
  color: #166534;
  margin: 0;
}


/* ============================================================
   29. ANIMATIONS & SCROLL EFFECTS
   ============================================================ */

/* .animate-fade-up: initial state. JS adds .visible when in viewport. */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  .animate-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   30. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- Tablet (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-snippet-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-snippet-img {
    max-width: 480px;
    aspect-ratio: 16/9;
  }

  .about-snippet-img::before { display: none; }

  .about-main-grid {
    grid-template-columns: 1fr;
  }

  .about-main-img {
    max-width: 400px;
    aspect-ratio: 4/3;
  }

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

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--space-md);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ---- Mobile (≤ 768px) ---- */
@media (max-width: 768px) {
  :root { --space-xl: 4rem; --space-lg: 2.5rem; }

  /* Mobile nav */
  .nav-toggle { display: flex; }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    width: 75vw;
    max-width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    justify-content: space-evenly;
    gap: 0;
    padding: 5rem 2rem 3rem;
    box-shadow: -4px 0 32px rgba(0,0,0,.35);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link {
    color: rgba(255,255,255,0.75) !important;
    padding: 0.9rem 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s;
  }

  .nav-link:hover, .nav-link.active {
    color: var(--brand) !important;
    background: none;
  }

  .nav-links li:last-child .nav-link { border-bottom: none; }

  .nav-link:hover, .nav-link.active {
    background: none;
    color: var(--brand-dark) !important;
  }

  /* Hero */
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

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

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* Booking */
  .form-row.two-col { grid-template-columns: 1fr; gap: 0; }

  /* About stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }

  /* Client gallery */
  .client-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-content-header { flex-direction: column; align-items: flex-start; }

  /* Shop */
  .shop-grid { grid-template-columns: 1fr 1fr; }

  /* Shop modal */
  .shop-modal-grid { grid-template-columns: 1fr; }
  .shop-modal-img-wrap { aspect-ratio: 16/9; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
}

/* ---- Small Mobile (≤ 480px) ---- */
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .client-gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .hero-title { font-size: 2.6rem; }

  .pricing-grid { max-width: 100%; }

  .contact-form-wrap {
    padding: 1.5rem;
  }
}
