/* ===================================================
   OREN KADOSH — Bridal Beauty
   Design: Pressed Flowers & Vellum
   Warm parchment · Botanical line art · Antique gold
   =================================================== */

/* ---------- VARIABLES ---------- */
:root {
  --paper:       #FAF5EE;
  --parchment:   #F3E9D8;
  --blush-pale:  #F5E0E0;
  --blush:       #E0B5B8;
  --rose:        #C48A8E;
  --rose-deep:   #9B6265;
  --gold:        #B8904C;
  --gold-warm:   #D4AF78;
  --gold-pale:   #EDD8A0;
  --sage:        #90A882;
  --sage-deep:   #6B8A6B;
  --warm-dark:   #2A1A0E;
  --warm-mid:    #7A5840;
  --warm-light:  #B89068;
  --footer-bg:   #1C0C04;

  --font-display: 'Bodoni Moda', 'Assistant', Georgia, serif;
  --font-script:  'Bodoni Moda', Georgia, serif;
  --font-body:    'Assistant', Arial, sans-serif;

  --shadow-xs:  0 1px 8px rgba(42, 26, 14, 0.06);
  --shadow-sm:  0 3px 20px rgba(42, 26, 14, 0.08);
  --shadow-md:  0 10px 40px rgba(42, 26, 14, 0.12);
  --shadow-lg:  0 24px 70px rgba(42, 26, 14, 0.16);
  --glow-gold:  0 0 50px rgba(184, 144, 76, 0.18);

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.4s var(--ease);
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--warm-dark);
  line-height: 1.75;
  direction: rtl;
  overflow-x: hidden;
}

/* Subtle grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.4;
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ---------- SECTION HEADER ---------- */
.section-header { text-align: center; margin-bottom: 64px; }

.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.about-label-large {
  font-size: 2.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--warm-dark);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.section-divider span {
  display: block;
  height: 1px;
  width: 90px;
}

.section-divider span:first-of-type {
  background: linear-gradient(to left, var(--gold), transparent);
}
.section-divider span:last-of-type {
  background: linear-gradient(to right, var(--gold), transparent);
}

.section-divider svg { flex-shrink: 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-warm) 100%);
  color: white;
  box-shadow: 0 6px 24px rgba(184, 144, 76, 0.38);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(184, 144, 76, 0.5);
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose) 100%);
}

.btn--outline {
  background: transparent;
  color: var(--warm-dark);
  border-color: rgba(184, 144, 76, 0.7);
}
.btn--outline:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(184, 144, 76, 0.35);
}

/* ===================================================
   HEADER
   =================================================== */
#header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  transition: all var(--transition);
}

#header.scrolled {
  background: rgba(250, 245, 238, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(184, 144, 76, 0.18);
  box-shadow: 0 2px 30px rgba(42, 26, 14, 0.07);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 54px; width: auto; object-fit: contain; }

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

.nav-links a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--warm-dark);
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--rose-deep); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-warm)) !important;
  color: white !important;
  padding: 10px 26px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(184, 144, 76, 0.32);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184, 144, 76, 0.46) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--warm-dark); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: rgba(250, 245, 238, 0.98);
  backdrop-filter: blur(18px);
  padding: 16px 32px 28px;
  border-top: 1px solid rgba(184, 144, 76, 0.12);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu a {
  display: block; padding: 14px 0;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 500; color: var(--warm-dark);
  border-bottom: 1px solid rgba(184, 144, 76, 0.1);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--rose-deep); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 52%, rgba(224, 181, 184, 0.35) 0%, transparent 42%),
    radial-gradient(ellipse at 82% 28%, rgba(144, 168, 130, 0.18) 0%, transparent 42%),
    linear-gradient(158deg, rgba(255,245,230,0.72) 0%, rgba(250,232,210,0.68) 40%, rgba(239,208,178,0.55) 100%),
    url('Hero image3.png') center center / cover no-repeat;
}

/* Atmospheric glow layer */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(224, 181, 184, 0.1) 0%, transparent 35%),
    radial-gradient(circle at 88% 78%, rgba(184, 144, 76, 0.08) 0%, transparent 30%);
  animation: heroGlow 9s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.04); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 48px 28px;
  max-width: 740px;
}

.hero-logo-main {
  display: block;
  width: 100%;
  max-width: 912px;
  margin: 0 auto 0;
  filter: drop-shadow(0 4px 24px rgba(42,26,14,0.13));
}

.hero-script {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 9.5vw, 7rem);
  font-weight: 300;
  color: var(--warm-dark);
  line-height: 1.0;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--warm-dark);
  font-weight: 300;
  margin-bottom: 38px;
  letter-spacing: 0.12em;
}

.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-bottom: 44px;
}
.hero-divider span {
  display: block; width: 64px; height: 1px;
  background: var(--gold); opacity: 0.45;
}

.hero-buttons {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}

/* Hero logo decoration – top right */
.hero-logo-deco {
  position: absolute;
  top: 80px; right: 60px;
  width: min(200px, 22vw);
  pointer-events: none;
  animation: driftRight 14s ease-in-out infinite alternate;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-deco img {
  width: 100%;
  border-radius: 50%;
  mix-blend-mode: multiply;
  opacity: 0.95;
}

/* Hero botanical decorations */
.hero-floral {
  position: absolute;
  pointer-events: none;
}
.hero-floral--br {
  bottom: 20px; left: 16px;
  width: min(290px, 34vw);
  opacity: 0.18;
  animation: driftLeft 17s ease-in-out infinite alternate;
}

@keyframes driftRight {
  from { transform: rotate(12deg) translateY(0px); }
  to   { transform: rotate(17deg) translateY(-14px); }
}
@keyframes driftLeft {
  from { transform: rotate(-10deg) scaleX(-1) translateY(0px); }
  to   { transform: rotate(-6deg)  scaleX(-1) translateY(-10px); }
}

/* ===================================================
   ABOUT
   =================================================== */
#about {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 88px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

/* Warm parchment backing layer */
.about-image-wrap::after {
  content: '';
  position: absolute;
  top: -22px; right: 22px;
  bottom: 22px; left: -22px;
  background: var(--parchment);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.65;
}

/* Gold frame offset */
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: 26px; right: -26px;
  bottom: -26px; left: 26px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.32;
  pointer-events: none;
  z-index: 2;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  position: relative; z-index: 1;
  box-shadow: var(--shadow-lg);
}

.about-text .section-header { text-align: right; margin-bottom: 32px; }
.about-text .section-divider { justify-content: flex-start; }

.about-text p {
  font-size: 1.06rem;
  color: var(--warm-mid);
  margin-bottom: 22px;
  line-height: 1.95;
  font-weight: 300;
}

.about-highlights {
  display: flex; flex-direction: column; gap: 18px; margin-top: 36px;
}

.about-highlight {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-size: 1.08rem; font-weight: 500;
  color: var(--warm-dark); letter-spacing: 0.03em;
}

.about-highlight-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blush-pale), #FBEAEA);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 14px rgba(224, 181, 184, 0.35);
}
.about-highlight-icon svg { width: 20px; height: 20px; stroke: var(--rose-deep); }

/* ===================================================
   SERVICES
   =================================================== */
#services {
  background: var(--parchment);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

/* Soft atmospheric circles */
#services::before {
  content: '';
  position: absolute; top: -250px; left: -250px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 181, 184, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
#services::after {
  content: '';
  position: absolute; bottom: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(144, 168, 130, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative; z-index: 1;
}

.service-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 44px 28px 38px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(184, 144, 76, 0.1);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}

/* Gradient top bar that animates */
.service-card::before {
  content: '';
  position: absolute; top: 0; right: 0; left: 0; height: 3px;
  background: linear-gradient(to left, var(--gold-pale), var(--rose), var(--blush), var(--gold-warm));
  background-size: 300% auto;
  transition: background-position 0.6s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg), var(--glow-gold);
}
.service-card:hover::before { background-position: right center; }

.service-icon {
  width: 74px; height: 74px;
  background: linear-gradient(135deg, var(--blush-pale), #F8E6E6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 5px 20px rgba(224, 181, 184, 0.32);
  transition: transform var(--transition);
}
.service-icon svg { width: 30px; height: 30px; stroke: var(--rose-deep); }
.service-card:hover .service-icon { transform: scale(1.12) rotate(-6deg); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600;
  color: var(--warm-dark); margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.service-card p {
  font-size: 0.93rem; color: var(--warm-mid);
  line-height: 1.8; font-weight: 300;
}

/* ===================================================
   GALLERY
   =================================================== */
#gallery {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 9 / 16;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item--tall { grid-row: unset; }
.gallery-item--wide { grid-column: unset; }

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

/* Warm vignette overlay */
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 26, 14, 0.55) 0%,
    rgba(42, 26, 14, 0.1) 40%,
    transparent 65%
  );
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-overlay svg {
  color: white;
  transform: scale(0.65);
  transition: transform 0.45s var(--ease);
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4));
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay svg { transform: scale(1); }
.gallery-item:hover img { transform: scale(1.08); }

/* ===================================================
   TESTIMONIALS
   =================================================== */
#testimonials {
  background: linear-gradient(165deg, #F9F0E2 0%, var(--parchment) 100%);
  padding: 120px 40px;
  position: relative; overflow: hidden;
}

/* Giant decorative quote mark */
#testimonials::before {
  content: '\201C';
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 32rem; font-weight: 300;
  color: rgba(184, 144, 76, 0.045);
  line-height: 0.75; pointer-events: none; user-select: none;
}

.testimonials-inner { max-width: 1200px; margin: 0 auto; }

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

.testimonial-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 46px 36px 36px;
  box-shadow: var(--shadow-xs);
  position: relative;
  border: 1px solid rgba(224, 181, 184, 0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }

.testimonial-quote-icon {
  position: absolute; top: 18px; left: 30px;
  font-family: var(--font-display); font-size: 7rem;
  line-height: 1; color: var(--blush); opacity: 0.45;
  user-select: none;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.02rem; font-style: italic;
  color: var(--warm-mid); line-height: 1.9;
  margin-bottom: 30px; position: relative; z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-pale), var(--blush));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(224, 181, 184, 0.3);
}
.testimonial-avatar svg { width: 22px; height: 22px; stroke: var(--rose-deep); }

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600; color: var(--warm-dark); font-size: 1rem;
}
.testimonial-date { font-size: 0.8rem; color: var(--warm-light); margin-top: 1px; }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-top: 3px; }

.testimonials-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===================================================
   CONTACT
   =================================================== */
#contact {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.25fr;
  gap: 88px; align-items: start;
}

.contact-info .section-header { text-align: right; margin-bottom: 32px; }
.contact-info .section-divider { justify-content: flex-start; }

.contact-info p {
  font-size: 1rem; color: var(--warm-mid); line-height: 1.9;
  margin-bottom: 38px; font-weight: 300;
}

.contact-links { display: flex; flex-direction: column; gap: 16px; }

.contact-link {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(184, 144, 76, 0.22);
  background: white;
  transition: all var(--transition);
  font-family: var(--font-display);
  font-weight: 500; font-size: 1.07rem;
  color: var(--warm-dark);
  box-shadow: var(--shadow-xs);
}
.contact-link:hover {
  border-color: var(--gold); transform: translateX(-6px);
  box-shadow: var(--shadow-sm), var(--glow-gold);
}

.contact-link-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-link-icon--ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.contact-link-icon--wa { background: #25D366; }

/* Contact Form */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184, 144, 76, 0.1);
  position: relative; overflow: hidden;
}

/* Soft petal corner */
.contact-form-wrap::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 130px; height: 130px;
  background: linear-gradient(225deg, rgba(245, 224, 224, 0.55) 0%, transparent 70%);
  pointer-events: none;
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400;
  color: var(--warm-dark); margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--blush-pale);
}

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

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

.form-group label {
  font-family: var(--font-display);
  font-size: 0.97rem; font-weight: 600;
  color: var(--warm-dark); letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid rgba(184, 144, 76, 0.22);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem; color: var(--warm-dark);
  background: var(--paper);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  direction: rtl;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold); background: white;
  box-shadow: 0 0 0 3px rgba(184, 144, 76, 0.12);
}

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

.form-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-warm) 100%);
  color: white; border: none; border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 500; cursor: pointer;
  transition: all var(--transition); letter-spacing: 0.08em;
  box-shadow: 0 6px 24px rgba(184, 144, 76, 0.36);
}
.form-submit:hover {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(155, 98, 101, 0.38);
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: linear-gradient(160deg, #1A0B04 0%, #240E06 100%);
  color: rgba(255,255,255,0.6);
  padding: 64px 40px 34px;
  position: relative; overflow: hidden;
}

footer::before {
  content: '';
  position: absolute; top: 0; right: 0; left: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-warm), transparent);
  opacity: 0.28;
}

/* Subtle glow at top */
footer::after {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse at center top, rgba(184, 144, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}

.footer-logo img { height: 50px; filter: brightness(0) invert(1); opacity: 0.8; }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--gold-warm);
}

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

.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: white; transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold-warm);
  background: rgba(184, 144, 76, 0.2);
  transform: translateY(-4px);
}

.footer-bottom { text-align: center; font-size: 0.82rem; opacity: 0.38; }

/* ===================================================
   LIGHTBOX
   =================================================== */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(12, 5, 2, 0.97);
  align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }

.lightbox-img-wrap {
  max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.8);
  animation: lightboxIn 0.32s var(--ease);
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute; top: 24px; left: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: white; font-size: 1.1rem;
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); border-color: white; }

.lightbox-prev,
.lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 2.2rem;
  width: 54px; height: 54px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); line-height: 1;
}
.lightbox-prev { right: 24px; }
.lightbox-next { left: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.22); border-color: white; }

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

/* ---------- Tablet (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .about-grid { gap: 56px; }
  .contact-grid { gap: 56px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Mobile landscape + tablet portrait (≤ 768px) ---------- */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-container { padding: 14px 20px; }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--warm-dark);
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    background-position: center top;
  }
  .hero-content { padding: 100px 24px 60px; }
  .hero h1 { font-size: clamp(2.6rem, 11vw, 3.8rem); margin-bottom: 14px; }
  .hero-tagline { font-size: 1rem; margin-bottom: 28px; letter-spacing: 0.08em; }
  .hero-script { font-size: 0.85rem; letter-spacing: 0.2em; }
  .hero-logo-main { max-width: 312px; margin-bottom: 0; }
  .hero-divider { margin-bottom: 32px; }
  .hero-divider span { width: 40px; }
  .hero-buttons { gap: 12px; }
  .btn { padding: 13px 32px; font-size: 1rem; }

  /* About */
  #about { padding: 80px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image-wrap::before,
  .about-image-wrap::after { display: none; }
  .about-text .section-header { text-align: center; }
  .about-text .section-divider { justify-content: center; }
  .about-text p { font-size: 1rem; }

  /* Services */
  #services { padding: 80px 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card { padding: 32px 20px 28px; }

  /* Gallery */
  #gallery { padding: 80px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Testimonials */
  #testimonials { padding: 80px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card { padding: 36px 24px 28px; }
  #testimonials::before { font-size: 20rem; }

  /* Contact */
  #contact { padding: 80px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info .section-header { text-align: center; }
  .contact-info .section-divider { justify-content: center; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrap { padding: 36px 24px; }

  /* Footer */
  footer { padding: 48px 20px 28px; }
  .footer-top { flex-direction: column; gap: 18px; text-align: center; }
  .footer-tagline { font-size: 1.1rem; }

  /* Section headers */
  .section-header { margin-bottom: 44px; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* Lightbox buttons larger for touch */
  .lightbox-prev, .lightbox-next { width: 48px; height: 48px; font-size: 1.8rem; }
  .lightbox-close { width: 48px; height: 48px; }
}

/* ---------- Mobile portrait (≤ 480px) ---------- */
@media (max-width: 480px) {
  .hero-content { padding: 90px 20px 50px; }
  .hero h1 { font-size: clamp(2.2rem, 13vw, 3rem); line-height: 1.1; }
  .hero-tagline { font-size: 0.9rem; }
  .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
  .hero-buttons .btn { width: 100%; max-width: 300px; text-align: center; }

  #about, #services, #gallery, #testimonials, #contact { padding: 64px 16px; }

  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 28px 20px 24px; }
  .service-icon { width: 62px; height: 62px; }

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

  .contact-form-wrap { padding: 28px 18px; }
  .contact-form-wrap h3 { font-size: 1.25rem; margin-bottom: 24px; }
  .form-group input, .form-group textarea, .form-group select { padding: 13px 14px; font-size: 1rem; }
  .form-submit { font-size: 1rem; padding: 15px; }

  .testimonial-card p { font-size: 0.95rem; }

  footer { padding: 40px 16px 24px; }
}

/* ---------- Small phones (≤ 375px – iPhone SE etc.) ---------- */
@media (max-width: 375px) {
  .hero h1 { font-size: 2rem; }
  .nav-container { padding: 12px 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .btn { padding: 12px 24px; font-size: 0.95rem; }
  .section-title { font-size: 1.7rem; }
}
