/* ============================================================
   WEDDING PLANNER PREMIUM — MAIN STYLESHEET
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --ivory:       #FAF8F3;
  --cream:       #F5F0E8;
  --parchment:   #EDE5D8;
  --champagne:   #E0CDB0;
  --taupe:       #B5A090;
  --blush:       #E8C4B8;
  --blush-light: #F5E8E3;
  --gold:        #C9A96E;
  --gold-dark:   #A8853E;
  --gold-light:  #DDBF8A;
  --dark:        #1E1812;
  --charcoal:    #2C2418;
  --brown:       #4A3728;
  --warm-gray:   #7A6B60;
  --mid-gray:    #A89890;
  --white:       #FFFFFF;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', 'Helvetica Neue', Arial, sans-serif;
  --font-script: 'Great Vibes', cursive;

  --transition:  0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
  --shadow-soft: 0 8px 40px rgba(44, 36, 24, 0.10);
  --shadow-lg:   0 20px 60px rgba(44, 36, 24, 0.15);

  --container:   1280px;
  --container-narrow: 860px;
  --section-pad: 120px;
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.8rem); }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }

p { margin-bottom: 1.5rem; }
p:last-child { margin-bottom: 0; }

.script-accent {
  font-family: var(--font-script);
  font-size: 1.8em;
  color: var(--gold);
  display: block;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--warm-gray);
}

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

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

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

.section--ivory  { background: var(--ivory); }
.section--cream  { background: var(--cream); }
.section--dark   { background: var(--dark); color: var(--champagne); }
.section--dark h2, .section--dark h3 { color: var(--ivory); }
.section--dark .eyebrow { color: var(--gold-light); }
.section--dark .lead { color: var(--mid-gray); }

/* ---- Grid ---- */
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.grid-asymmetric { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; }
.grid-asymmetric.reverse { grid-template-columns: 0.8fr 1.2fr; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}
.btn:hover::after { transform: translateX(0); }

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

.btn--outline {
  border: 1px solid currentColor;
  color: var(--charcoal);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn--outline-light {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn--ghost {
  color: var(--gold);
  padding: 0;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
}
.btn--ghost::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.btn--ghost:hover::before { width: 50px; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: gap 0.3s ease;
}
.btn-arrow svg { transition: transform 0.3s ease; }
.btn-arrow:hover { gap: 16px; }
.btn-arrow:hover svg { transform: translateX(4px); }

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

.site-header.scrolled {
  background: rgba(62, 50, 36, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(44, 36, 24, 0.25);
  padding: 16px 0;
}

.site-header.header--transparent {
  background: transparent;
}

.site-header.header--transparent .nav-link { color: rgba(255,255,255,0.9); }
.site-header.header--transparent .logo { color: var(--white); }
.site-header.header--transparent.scrolled {
  background: rgba(62, 50, 36, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(44, 36, 24, 0.25);
  padding: 16px 0;
}
.site-header.header--transparent.scrolled .nav-link { color: rgba(255,255,255,0.88); }
.site-header.header--transparent.scrolled .logo { color: var(--ivory); }
.site-header.scrolled .nav-link { color: rgba(255,255,255,0.88); }
.site-header.scrolled .logo { color: var(--ivory); }
.site-header.scrolled .btn--primary { background: var(--gold); color: var(--ivory); }

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

/* Logo */
.logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--dark);
  line-height: 1.2;
  text-align: center;
  flex-shrink: 0;
  transition: color var(--transition);
}
.logo .logo-script {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.logo .logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  display: block;
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 8px 14px;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold-dark); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  transform: translateX(-50%) translateY(10px);
  border-top: 2px solid var(--gold);
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: block;
  padding: 14px 24px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: background var(--transition-fast), color var(--transition-fast);
  border-bottom: 1px solid rgba(44,36,24,0.05);
}
.dropdown-item:hover { background: var(--cream); color: var(--gold-dark); }

.nav-chevron {
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  vertical-align: middle;
  margin-left: 3px;
  transition: transform 0.25s ease;
  opacity: 0.7;
}
.has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* Nav CTA button */
.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 11px 24px;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
}
.mobile-nav.active { opacity: 1; visibility: visible; }

.mobile-nav-inner { text-align: center; }

.mobile-nav-link {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  transition: color 0.3s ease;
  line-height: 1.2;
}
.mobile-nav-link:hover { color: var(--gold-light); }

.mobile-nav-bottom {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #1E1812 0%, #3d2c1e 40%, #2a1f14 100%);
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 14, 8, 0.55) 0%,
    rgba(20, 14, 8, 0.25) 50%,
    rgba(20, 14, 8, 0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 780px;
}

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

.hero-title {
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--gold-light);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ============================================================
   SECTION INTROS
   ============================================================ */
.section-intro {
  text-align: center;
  margin-bottom: 70px;
}
.section-intro h2 { margin-bottom: 1.2rem; }
.section-intro .lead { max-width: 640px; margin: 0 auto; }

.section-intro--left {
  text-align: left;
  margin-bottom: 60px;
}

/* Decorative line */
.deco-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1rem;
}
.deco-line::before,
.deco-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--champagne);
}
.deco-line--left::before { display: none; }
.deco-line--center::before,
.deco-line--center::after { flex: 0 0 40px; }

.deco-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================================================
   INTRO / ABOUT STRIP
   ============================================================ */
.intro-strip {
  padding: 100px 0;
}

.intro-strip-inner {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 80px;
  align-items: center;
}

.intro-divider {
  background: var(--champagne);
  height: 200px;
  align-self: center;
}

.intro-photo img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  display: block;
}
.intro-stat {
  text-align: center;
}
.intro-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.intro-stat-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: block;
  margin-top: 8px;
}

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

.service-card {
  background: var(--ivory);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.5s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { background: var(--cream); }

.service-card-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.service-card:hover .service-card-number { color: var(--gold-light); }

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  line-height: 1.25;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 28px;
}
.service-card-link {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.service-card-link::after {
  content: '→';
}
.service-card:hover .service-card-link { gap: 14px; }

/* ============================================================
   PORTFOLIO / REALIZACJE
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--parchment);
}
.portfolio-item:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; }
.portfolio-item:nth-child(2) { grid-column: 8 / 13; grid-row: 1 / 2; }
.portfolio-item:nth-child(3) { grid-column: 8 / 13; grid-row: 2 / 3; }
.portfolio-item:nth-child(4) { grid-column: 1 / 5; }
.portfolio-item:nth-child(5) { grid-column: 5 / 9; }
.portfolio-item:nth-child(6) { grid-column: 9 / 13; }

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  aspect-ratio: 4/3;
}
.portfolio-item:nth-child(1) img { aspect-ratio: auto; min-height: 500px; }
.portfolio-item:hover img { transform: scale(1.04); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,8,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay-content h4 { color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }
.portfolio-overlay-content span {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Gallery masonry */
.gallery-filter {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--champagne);
  color: var(--warm-gray);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-masonry .gallery-item img {
  width: 100%;
  transition: transform 0.6s ease;
}
.gallery-masonry .gallery-item:hover img { transform: scale(1.03); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-carousel {
  position: relative;
}

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

.testimonial-card {
  padding: 48px 44px;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--champagne);
  position: absolute;
  top: 32px;
  left: 36px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--brown);
  font-style: italic;
  margin-bottom: 28px;
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--champagne);
}
.testimonial-author-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--dark);
  display: block;
}
.testimonial-author-event {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.8rem;
}

/* Featured testimonial (hero style) */
.testimonial-featured {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 40px;
}
.testimonial-featured .testimonial-text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--champagne);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--champagne);
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  transition: border-color var(--transition), background var(--transition);
}
.process-step:hover .process-step-number {
  border-color: var(--gold);
  background: var(--cream);
}

.process-step h4 { margin-bottom: 12px; font-size: 1.1rem; }
.process-step p { font-size: 0.875rem; color: var(--warm-gray); line-height: 1.7; }

/* ============================================================
   IMAGE + TEXT BLOCKS
   ============================================================ */
.image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.image-text--reverse .image-text-visual { order: 2; }
.image-text--reverse .image-text-content { order: 1; }

.image-text-visual {
  position: relative;
  overflow: hidden;
}
.image-text-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(160deg, #e8ddd2 0%, #c9b99e 50%, #b5a48c 100%);
}

.image-text-content {
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.image-text-content--dark {
  background: var(--dark);
  color: var(--champagne);
}
.image-text-content--dark h2,
.image-text-content--dark h3 { color: var(--ivory); }

/* ============================================================
   FEATURES / USP LIST
   ============================================================ */
.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.feature-item {
  padding: 40px 48px;
  border-bottom: 1px solid var(--parchment);
  border-right: 1px solid var(--parchment);
  transition: background var(--transition);
}
.feature-item:nth-child(2n) { border-right: none; }
.feature-item:hover { background: var(--cream); }

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}

.feature-item h4 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-item p { font-size: 0.875rem; color: var(--warm-gray); line-height: 1.75; margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--parchment);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--dark);
  cursor: pointer;
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.35s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.faq-icon::after  { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.925rem; color: var(--warm-gray); line-height: 1.8; margin: 0; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L31 29L60 30L31 31L30 60L29 31L0 30L29 29Z' fill='%23C9A96E' fill-opacity='0.04'/%3E%3C/svg%3E") repeat;
  opacity: 0.5;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .script-accent { color: var(--gold-light); }
.cta-section h2 { color: var(--ivory); margin-bottom: 1rem; }
.cta-section .lead { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; }
.cta-section .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  min-height: 600px;
}

.contact-info {
  background: var(--dark);
  padding: 80px 60px;
  color: var(--champagne);
}
.contact-info h2 { color: var(--ivory); margin-bottom: 1rem; }
.contact-info .lead { color: rgba(255,255,255,0.6); margin-bottom: 48px; }

.contact-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-detail-icon {
  width: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}
.contact-detail-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  display: block;
  margin-bottom: 4px;
}
.contact-detail-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ivory);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 48px;
}
.contact-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}
.contact-social a:hover { border-color: var(--gold); color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  padding: 80px 60px;
}

.form-group {
  margin-bottom: 28px;
}
.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a3928;
  font-weight: 600;
  margin-bottom: 10px;
}
.form-control {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid rgba(62,50,36,0.35);
  background: transparent;
  padding: 12px 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--dark);
  transition: border-color var(--transition-fast);
  outline: none;
}
.form-control:focus { border-color: var(--gold); border-bottom-width: 2px; }
.form-control::placeholder { color: rgba(62,50,36,0.38); }

select.form-control {
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B5A090' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
}

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

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

.form-privacy {
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-bottom: 28px;
}
.form-privacy a { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
}

.footer-main {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo {
  color: var(--ivory);
  margin-bottom: 20px;
  display: inline-block;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
}

.page-hero-content {
  max-width: 700px;
}
.page-hero h1 { margin-bottom: 1.2rem; }
.page-hero .lead { color: var(--warm-gray); }

.page-hero-image {
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(160deg, #e8ddd2 0%, #c9b99e 60%, #b5a48c 100%);
  bottom: 0;
  width: 42%;
  overflow: hidden;
}
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  left: 0;
  width: 200px;
  background: linear-gradient(to right, var(--cream), transparent);
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb-sep { color: var(--champagne); }
.breadcrumb a { color: var(--taupe); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   EVENTS SHOWCASE
   ============================================================ */
.events-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 440px;
  overflow: hidden;
}
.event-showcase-item {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
}
.event-showcase-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform 0.7s var(--ease-out-expo);
}
.event-showcase-item:hover .event-showcase-bg { transform: scale(1.06); }
.event-showcase-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 440px;
  padding: 48px 40px;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
}
.event-showcase-content h3 {
  color: var(--ivory);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.event-showcase-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ivory);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .7;
  transition: opacity var(--transition-fast), gap var(--transition-fast);
}
.event-showcase-arrow::after { content: '→'; }
.event-showcase-item:hover .event-showcase-arrow { opacity: 1; gap: 14px; }
@media (max-width: 768px) {
  .events-showcase { grid-template-columns: 1fr; }
  .event-showcase-content { min-height: 260px; }
}

/* ============================================================
   MAP
   ============================================================ */
.map-wrap {
  height: 420px;
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: sepia(20%) contrast(0.9);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-image-composition {
  position: relative;
  padding-right: 60px;
  padding-bottom: 60px;
}
.about-img-main {
  width: 75%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid var(--cream);
}
.about-img-badge {
  position: absolute;
  top: 40px;
  right: 50px;
  background: var(--gold);
  color: var(--white);
  padding: 24px;
  text-align: center;
}
.about-img-badge-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}
.about-img-badge-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.value-item {
  display: flex;
  gap: 20px;
}
.value-item-dot {
  width: 4px;
  min-height: 40px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}
.value-item h4 { font-size: 1.1rem; margin-bottom: 8px; }
.value-item p { font-size: 0.875rem; color: var(--warm-gray); margin: 0; }

/* ============================================================
   ANIMATIONS (JS-driven)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.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-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left.in-view { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

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

/* ============================================================
   UTILITY
   ============================================================ */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-sm { margin-top: 24px; }
.mt-md { margin-top: 48px; }
.mt-lg { margin-top: 80px; }
.mb-sm { margin-bottom: 24px; }
.mb-md { margin-bottom: 48px; }

.img-cover { width: 100%; height: 100%; object-fit: cover; }
.img-portrait { aspect-ratio: 3/4; object-fit: cover; width: 100%; }

.divider-gold {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.divider-gold--center { margin: 24px auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Tablet (≤1100px) ---- */
@media (max-width: 1100px) {
  :root { --section-pad: 80px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonials-track { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item { grid-column: auto !important; grid-row: auto !important; }
  .portfolio-item img { aspect-ratio: 4/3 !important; min-height: auto !important; }
}

/* ---- Gallery 2 cols at mid (≤768px) ---- */
@media (max-width: 768px) {
  .gallery-masonry { columns: 2; }
}

/* ---- Phablet / mobile nav (≤900px) ---- */
@media (max-width: 900px) {
  :root { --section-pad: 60px; }
  .container { padding: 0 24px; }
  .container--narrow { padding: 0 24px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-asymmetric { grid-template-columns: 1fr; gap: 48px; }
  .grid-asymmetric.reverse .image-text-visual { order: -1; }
  .image-text { grid-template-columns: 1fr; }
  .image-text-content { padding: 60px 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { padding: 60px 32px; }
  .contact-form-wrap { padding: 60px 32px; }
  .about-image-composition { padding-right: 0; padding-bottom: 0; }
  .about-img-main { width: 100%; }
  .about-img-accent { display: none; }
  .about-img-badge { right: 16px; top: 16px; padding: 16px; }
  .about-img-badge-number { font-size: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .feature-item { border-right: none; padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding-top: 140px; padding-bottom: 60px; }
  .page-hero-image { display: none; }
  .primary-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .site-header.header--transparent .hamburger { color: var(--white); }
  .intro-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .intro-divider { display: none; }
  .service-card { padding: 40px 32px; }
  .testimonial-card { padding: 36px 28px; }
  .section-intro { margin-bottom: 48px; }
  .process-step { padding: 0 12px; }
  .cta-section { padding: 80px 0; }
  .footer-main { padding: 60px 0 40px; }
}

/* ---- Small mobile (≤640px) ---- */
@media (max-width: 640px) {
  :root { --section-pad: 48px; }
  html { font-size: 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .testimonials-track { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .gallery-filter { gap: 6px; }
  .filter-btn { padding: 8px 14px; font-size: 0.6rem; }
  .cta-section { padding: 64px 0; }
  .cta-section .cta-actions { flex-direction: column; align-items: center; }
  .cta-section .btn { width: 100%; max-width: 320px; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .page-hero { padding-top: 110px; padding-bottom: 48px; }
  .contact-info { padding: 48px 24px; }
  .contact-form-wrap { padding: 48px 24px; }
  .section-intro { margin-bottom: 36px; }
  .service-card { padding: 32px 24px; }
  .feature-item { padding: 24px 20px; }
  .testimonial-card { padding: 28px 20px; }
  .testimonial-featured { padding: 48px 0; }
  .form-group { margin-bottom: 20px; }
  .contact-social { flex-wrap: wrap; }
  .events-showcase { grid-template-columns: 1fr; }
  .event-showcase-content { min-height: 240px; }
  .mobile-nav-link { font-size: clamp(1.4rem, 6vw, 2.2rem); padding: 8px 0; }
  .mobile-nav-inner { overflow-y: auto; max-height: 80vh; padding: 20px 0; }
  .hero { min-height: 100svh; min-height: 100vh; }
  .hero-content { padding: 0 4px; }
  .map-wrap { height: 280px; }
}

/* ---- Desktop only ---- */
@media (min-width: 901px) {
  .mobile-nav { display: none !important; }
}
