/*
Theme Name: Laure Cadot Photographe
Theme URI: https://www.laure-cadot.com
Author: Laure Cadot
Author URI: https://www.laure-cadot.com
Description: Thème sur mesure pour Laure Cadot Photographe — Photographe professionnelle mariage, famille et portrait à Fontainebleau
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: laure-cadot-theme
Tags: photography, portfolio, custom-menu, custom-logo
*/

/* ============================================
   LAURE CADOT PHOTOGRAPHE — Master Stylesheet
   Luxury French Photography Aesthetic
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Lato:ital,wght@0,300;0,400;0,700;1,300&display=swap');

/* --- CSS Variables --- */
:root {
  --cream: #FAF7F2;
  --charcoal: #2C2C2C;
  --warm-gray: #8B8178;
  --blush: #D4A99A;
  --gold: #C9A96E;
  --deep-brown: #4A3728;
  --light-warm: #EDE6DD;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;

  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 32px;
  --spacing-lg: 64px;
  --spacing-xl: 100px;
  --spacing-hero: 120px;

  --max-width: 1200px;
  --max-width-narrow: 800px;

  --shadow-soft: 0 4px 30px rgba(74, 55, 40, 0.08);
  --shadow-card: 0 2px 20px rgba(74, 55, 40, 0.06);
  --shadow-hover: 0 8px 40px rgba(74, 55, 40, 0.12);

  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a,
a:where(:not(.wp-element-button)) {
  color: var(--deep-brown);
  text-decoration: none !important;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.3;
  color: var(--deep-brown);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1.2em;
  font-size: 1rem;
  color: var(--charcoal);
}

::selection {
  background: var(--blush);
  color: var(--white);
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.small-caps {
  font-family: var(--font-body);
  font-variant: small-caps;
  letter-spacing: 3px;
  font-weight: 400;
  text-transform: lowercase;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--spacing-sm);
  font-weight: 400;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: var(--spacing-md) auto;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* --- Grain Overlay for Hero Sections --- */
.grain-overlay {
  position: relative;
}
.grain-overlay::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--deep-brown);
  color: var(--light-warm);
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 8px var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--light-warm);
  font-weight: 300;
}

.top-bar a:hover {
  color: var(--gold);
}

/* ============================================
   SITE HEADER / LOGO
   ============================================ */
.site-header {
  text-align: center;
  padding: var(--spacing-md) var(--spacing-sm);
  background: var(--cream);
}

.site-logo {
  display: inline-block;
}

.site-logo__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--deep-brown);
  text-transform: uppercase;
  line-height: 1.2;
}

.site-logo__tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 4px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  border-top: 1px solid var(--light-warm);
  border-bottom: 1px solid var(--light-warm);
  transition: box-shadow var(--transition-fast);
}

.main-nav.scrolled {
  box-shadow: 0 2px 20px rgba(74, 55, 40, 0.08);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px var(--spacing-md);
  position: absolute;
  right: 0;
  top: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-brown);
  margin: 5px 0;
  transition: var(--transition-fast);
}

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

.nav-menu {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 16px 14px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--deep-brown);
  font-weight: 400;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--gold);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  min-width: 220px;
  list-style: none;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
  border-top: 2px solid var(--gold);
}

.nav-menu > li:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown li a {
  display: block;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--light-warm);
  transition: all var(--transition-fast);
}

.nav-dropdown li:last-child a {
  border-bottom: none;
}

.nav-dropdown li a:hover {
  background: var(--cream);
  color: var(--gold);
  padding-left: 30px;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--deep-brown);
}

.hero--small {
  min-height: 50vh;
}

.hero--medium {
  min-height: 65vh;
}

.hero__image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.1s linear;
}

.hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 44, 44, 0.1) 0%,
    rgba(74, 55, 40, 0.5) 70%,
    rgba(74, 55, 40, 0.75) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: var(--spacing-md);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--light-warm);
  max-width: 600px;
  margin: 0 auto var(--spacing-md);
  text-shadow: 0 1px 15px rgba(0,0,0,0.3);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounceDown 2s infinite;
}

.hero__scroll-indicator svg {
  width: 30px;
  height: 30px;
  stroke: var(--light-warm);
  opacity: 0.7;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--spacing-xl) 0;
}

.section--cream {
  background: var(--cream);
}

.section--white {
  background: var(--white);
}

.section--warm {
  background: var(--light-warm);
}

.section--dark {
  background: var(--deep-brown);
  color: var(--light-warm);
}

.section--dark h2,
.section--dark h3 {
  color: var(--light-warm);
}

.section__header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section__header h2 {
  margin-bottom: var(--spacing-xs);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.service-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.service-card__image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-smooth);
}

.service-card:hover .service-card__image {
  transform: scale(1.03);
}

.service-card__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(74,55,40,0.7) 0%, rgba(74,55,40,0.1) 60%);
  transition: background var(--transition-smooth);
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(0deg, rgba(74,55,40,0.8) 0%, rgba(74,55,40,0.2) 60%);
}

.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-md);
  z-index: 2;
  color: var(--white);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.service-card__subtitle {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-warm);
  opacity: 0.8;
}

/* ============================================
   ABOUT PREVIEW (Asymmetric)
   ============================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.about-preview__image {
  position: relative;
}

.about-preview__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-preview__image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-preview__text {
  padding: var(--spacing-md) 0;
}

.about-preview__text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--warm-gray);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
}

.testimonial-card {
  background: var(--white);
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-sm);
  position: relative;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
}

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--blush);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 20px;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

/* ============================================
   PHOTO GALLERY / MASONRY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/2;
}

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

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

.gallery-item__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(74, 55, 40, 0);
  transition: background var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(74, 55, 40, 0.2);
}

.gallery-item__overlay svg {
  width: 30px;
  height: 30px;
  stroke: var(--white);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.gallery-item:hover .gallery-item__overlay svg {
  opacity: 1;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44, 44, 44, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox__close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.lightbox__close svg {
  width: 30px;
  height: 30px;
  stroke: var(--light-warm);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px;
}

.lightbox__nav svg {
  width: 40px;
  height: 40px;
  stroke: var(--light-warm);
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

/* ============================================
   PAGE CONTENT
   ============================================ */
.page-content {
  padding: var(--spacing-xl) 0;
}

.page-content h2 {
  margin-bottom: var(--spacing-md);
}

.page-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--warm-gray);
  max-width: 750px;
}

.page-content p + p {
  margin-top: 0;
}

/* Centered page content */
.page-content--centered p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-highlight {
  background: var(--white);
  padding: var(--spacing-md);
  text-align: center;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
}

.pricing-highlight__amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--deep-brown);
}

.pricing-highlight__detail {
  font-size: 0.85rem;
  color: var(--warm-gray);
  letter-spacing: 1px;
}

/* ============================================
   BUTTONS / CTA
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-align: center;
}

.btn--primary {
  background: var(--deep-brown);
  color: var(--light-warm);
}

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

.btn--outline {
  background: transparent;
  color: var(--deep-brown);
  border: 1px solid var(--deep-brown);
}

.btn--outline:hover {
  background: var(--deep-brown);
  color: var(--light-warm);
}

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

.btn--gold:hover {
  background: var(--deep-brown);
  color: var(--light-warm);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 6px;
  font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--light-warm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--spacing-md);
}

.blog-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

.blog-card__image {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.blog-card__content {
  padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
}

.blog-card__date {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--deep-brown);
  line-height: 1.4;
  margin-bottom: 8px;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.blog-card__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

/* ============================================
   BLOG POST (Single)
   ============================================ */
.blog-post {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md);
}

.blog-post__meta {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.blog-post__date {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.blog-post__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--deep-brown);
  margin: var(--spacing-sm) 0;
}

.blog-post__body p {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--warm-gray);
  margin-bottom: 1.5em;
}

.blog-post__body img {
  margin: var(--spacing-md) 0;
  width: 100%;
}

.blog-post__share {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--light-warm);
  margin-top: var(--spacing-lg);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  padding: 10px 20px;
  border: 1px solid var(--light-warm);
  transition: all var(--transition-fast);
}

.share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   INSTAGRAM PLACEHOLDER
   ============================================ */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.instagram-item {
  aspect-ratio: 1;
  background: var(--light-warm);
  position: relative;
  overflow: hidden;
}

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

.instagram-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   PACKAGE / DETAILS LIST
   ============================================ */
.package-list {
  list-style: none;
  padding: 0;
}

.package-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--light-warm);
  font-size: 0.95rem;
  color: var(--warm-gray);
  padding-left: 24px;
  position: relative;
}

.package-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 18px;
}

/* ============================================
   MAP
   ============================================ */
.map-container {
  width: 100%;
  height: 400px;
  background: var(--light-warm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%) contrast(1.1);
}

/* ============================================
   CONTACT LAYOUT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-info__item {
  margin-bottom: var(--spacing-md);
}

.contact-info__label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 400;
}

.contact-info__value {
  font-size: 1rem;
  color: var(--charcoal);
}

.contact-info__value a {
  color: var(--charcoal);
}

.info-item {
  margin-bottom: var(--spacing-md);
}

.info-item h3 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 400;
}

.info-item p {
  font-size: 1rem;
  color: var(--charcoal);
}

.about-image img {
  width: 100%;
  border-radius: 4px;
}

.about-section {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .about-section {
    grid-template-columns: 1fr !important;
  }
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   TWO COLUMN CONTENT
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.two-col--offset {
  align-items: center;
}

.two-col--offset > :first-child {
  margin-top: -40px;
}

/* ============================================
   CROSS LINKS
   ============================================ */
.cross-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
  padding: var(--spacing-md) 0;
}

.cross-link {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
  padding: 10px 20px;
  border: 1px solid var(--light-warm);
  transition: all var(--transition-fast);
}

.cross-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--deep-brown);
  color: var(--light-warm);
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.footer-social a {
  color: var(--light-warm);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md) 0;
  border-top: 1px solid rgba(237, 230, 221, 0.15);
  border-bottom: 1px solid rgba(237, 230, 221, 0.15);
}

.footer-services a {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color var(--transition-fast);
}

.footer-services a:hover {
  color: var(--gold);
}

.footer-bottom {
  font-size: 0.75rem;
  color: var(--warm-gray);
  line-height: 1.8;
}

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

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

.footer-separator {
  display: inline-block;
  margin: 0 8px;
  color: rgba(237, 230, 221, 0.3);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  padding: var(--spacing-lg) 0;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin: var(--spacing-md) 0 var(--spacing-sm);
}

.legal-content h3 {
  font-size: 1.3rem;
  margin: var(--spacing-sm) 0 var(--spacing-xs);
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--warm-gray);
}

/* ============================================
   PLACEHOLDER IMAGES (gradient fallback)
   ============================================ */
.placeholder-image {
  background: linear-gradient(135deg, var(--light-warm) 0%, var(--blush) 50%, var(--warm-gray) 100%);
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-image span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--deep-brown);
  opacity: 0.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--cream);
    border-top: 1px solid var(--light-warm);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu > li > a {
    padding: 14px var(--spacing-md);
    border-bottom: 1px solid var(--light-warm);
  }

  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-top: none;
    background: var(--light-warm);
    min-width: auto;
  }

  .nav-dropdown li a {
    padding-left: 40px;
  }

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

  .service-card {
    height: 300px;
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .about-preview__image img {
    height: 350px;
  }

  .about-preview__image::after {
    display: none;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .hero__title {
    letter-spacing: 3px;
  }

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

  .footer-services {
    gap: 4px 12px;
  }

  .lightbox__nav { display: none; }
}

@media (max-width: 480px) {
  .top-bar {
    font-size: 0.7rem;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .site-logo__name {
    letter-spacing: 4px;
  }

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

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

/* ============================================
   WORDPRESS OVERRIDES
   ============================================ */

/* WP Admin Bar spacing */
body.admin-bar .site-header { top: 32px; }
body.admin-bar .top-bar { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
  body.admin-bar .top-bar { top: 46px; }
}

/* WP Nav menu compatibility */
.main-navigation ul { list-style: none; }
.main-navigation .sub-menu { display: none; }
.main-navigation li:hover > .sub-menu { display: block; }

/* WP Image alignment */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* WP Blocks */
.wp-block-image img { max-width: 100%; height: auto; }

/* Screen reader text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* CF7 form styling */
.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
}
.wpcf7-form label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-warm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color var(--transition-fast);
  margin-top: 6px;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.wpcf7-form textarea {
  min-height: 150px;
  resize: vertical;
}
.wpcf7-submit {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all var(--transition-smooth);
}
.wpcf7-submit:hover {
  background: var(--deep-brown);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}
.form-row-full {
  grid-column: 1 / -1;
}
@media (max-width: 600px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   ANIMATIONS — Scroll reveals, transitions, hover effects
   ============================================ */

/* --- Scroll Reveal Base --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  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-left {
  opacity: 0;
  transform: translateX(-40px);
  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-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  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-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Hero Entrance Animations --- */
.hero__content {
  animation: heroFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroFadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero__title {
  animation: heroTitleIn 1s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes heroTitleIn {
  0% { opacity: 0; letter-spacing: 15px; }
  100% { opacity: 1; letter-spacing: 6px; }
}

.hero__subtitle {
  animation: heroSubIn 0.8s 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes heroSubIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- Page Transition --- */
.page-transition {
  animation: pageIn 0.6s ease forwards;
}

@keyframes pageIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* --- Section Divider Animation --- */
.section-divider.reveal.visible {
  animation: dividerExpand 0.8s ease forwards;
}

@keyframes dividerExpand {
  0% { width: 0; }
  100% { width: 60px; }
}

/* --- Gold Line Accent --- */
.gold-line {
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.6s ease;
}

.gold-line.visible {
  width: 80px;
}

/* --- Nav Link Underline --- */
.nav-menu > li > a::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-top: 2px;
  transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
  width: 100%;
}

/* --- Button Hover Ripple --- */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(201, 169, 110, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

/* --- Footer Link Hover --- */
.footer-social a {
  position: relative;
}

.footer-social a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.footer-social a:hover::after {
  width: 100%;
}

/* --- Gallery Item Reveal --- */
.gallery-item {
  opacity: 0;
  animation: galleryItemIn 0.5s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-item:nth-child(6) { animation-delay: 0.3s; }

@keyframes galleryItemIn {
  0% { opacity: 0; transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1); }
}

/* --- Scroll Indicator Pulse --- */
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero__scroll-indicator {
  animation: bounceDown 2s infinite, scrollPulse 2s infinite;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
  .gallery-item {
    opacity: 1;
  }
}

/* ============================================
   ENHANCED RESPONSIVE DESIGN
   Added 2026-03-21 for full mobile/tablet optimization
   ============================================ */

/* Safety: prevent horizontal scroll on all devices */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ---- TABLET (max-width: 1024px) ---- */
@media (max-width: 1024px) {
  .section,
  .page-content {
    padding: 80px 0;
  }

  .hero {
    min-height: 50vh;
  }

  h1, .hero__title {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 24px;
  }
}

/* ---- MOBILE (max-width: 768px) ---- */
@media (max-width: 768px) {
  .section,
  .page-content {
    padding: 60px 0;
  }

  .hero {
    min-height: 45vh;
  }

  h1, .hero__title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .container {
    padding: 0 20px;
  }

  /* Service cards smaller on mobile */
  .service-card {
    height: 250px;
  }

  .service-card__title {
    font-size: 1.1rem;
  }

  /* About preview image */
  .about-preview__image img {
    height: 300px;
    object-fit: cover;
  }

  /* Testimonial cards */
  .testimonial-card {
    padding: 24px;
  }

  /* Footer improvements */
  .footer-services {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  /* CTA buttons */
  .btn, .cta-button, .hero a.btn {
    padding: 14px 32px;
    font-size: 0.85rem;
  }

  /* Two-column layouts */
  .two-col {
    gap: 32px;
  }

  /* Contact form */
  .contact-info {
    text-align: center;
  }

  /* Gallery lightbox */
  .lightbox__content img {
    max-width: 95vw;
    max-height: 80vh;
  }

  /* WhatsApp button */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }

  /* Section labels */
  .section-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  /* Top bar on mobile */
  .top-bar {
    padding: 6px 16px;
  }

  .top-bar a {
    font-size: 0.7rem;
  }

  /* Header logo */
  .site-logo__name {
    font-size: 1.3rem;
    letter-spacing: 3px;
  }

  .site-logo__tagline {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  /* Page content text */
  .page-content p,
  .section p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* ---- SMALL MOBILE (max-width: 480px) ---- */
@media (max-width: 480px) {
  .section,
  .page-content {
    padding: 48px 0;
  }

  .hero {
    min-height: 40vh;
  }

  h1, .hero__title {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }

  h2 {
    font-size: 1.25rem;
  }

  .container {
    padding: 0 16px;
  }

  .service-card {
    height: 220px;
  }

  .about-preview__image img {
    height: 250px;
  }

  /* Hero subtitle */
  .hero-content p,
  .hero__subtitle {
    font-size: 0.9rem;
    padding: 0 8px;
  }

  /* Buttons full width on very small screens */
  .btn, .cta-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }

  /* Footer */
  .footer-social {
    gap: 16px;
  }

  .footer-services a {
    font-size: 0.8rem;
  }

  .footer-bottom {
    padding: 16px 0;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 20px;
    font-size: 0.9rem;
  }

  /* Instagram grid - 2 columns on very small */
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  /* Top bar stack vertically */
  .top-bar {
    flex-direction: column;
    gap: 2px;
    padding: 4px 12px;
  }

  /* Nav menu padding */
  .nav-menu > li > a {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .nav-dropdown li a {
    padding: 10px 16px 10px 32px;
    font-size: 0.85rem;
  }
}

/* ---- VERY SMALL (max-width: 360px) ---- */
@media (max-width: 360px) {
  h1, .hero__title {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.15rem;
  }

  .container {
    padding: 0 12px;
  }

  .site-logo__name {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

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

/* ---- LANDSCAPE MOBILE ---- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 80vh;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section,
  .page-content {
    padding: 40px 0;
  }
}

/* ---- TOUCH DEVICE IMPROVEMENTS ---- */
@media (hover: none) and (pointer: coarse) {
  /* Larger tap targets */
  .nav-menu > li > a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer-services a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .btn, .cta-button {
    min-height: 44px;
  }

  /* No hover effects on touch */
  .service-card:hover {
    transform: none;
  }

  .nav-menu > li:hover > .nav-dropdown {
    display: none;
  }
}
/* ---- REVEAL ANIMATION RESPONSIVE FIX ---- */
@media (max-width: 1024px) {
  .reveal-left {
    transform: translateX(-20px);
  }

  .reveal-right {
    transform: translateX(20px);
  }

  /* Ensure sections clip their overflow */
  .section, section {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .reveal-left,
  .reveal-right {
    transform: translateY(20px);
  }

  .reveal-left.visible,
  .reveal-right.visible {
    transform: translateY(0);
  }
}