/* ================================================================
   LUSITANIA WEDDINGS — Main Stylesheet
   Palette: Olive #3A4A3F | Porcelain #F7F5F0 | Gold #C9A86A | Slate #2A2E2F | Sand #E8E2D8
   Fonts: Cormorant Garamond (serif) | Inter (sans)
================================================================ */

:root {
  --olive:      #3A4A3F;
  --porcelain:  #F7F5F0;
  --gold:       #C9A86A;
  --slate:      #2A2E2F;
  --sand:       #E8E2D8;
  --slate-70:   rgba(42,46,47,0.7);
  --slate-30:   rgba(42,46,47,0.3);
  --gold-20:    rgba(201,168,106,0.2);
  --max-w:      1280px;
  --gutter-lg:  100px;
  --gutter-sm:  28px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--porcelain);
  color: var(--slate);
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--slate);
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
p  { line-height: 1.75; }

.caption {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-large {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--slate-70);
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter-lg);
}

/* ── Gold Divider ── */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}
.divider-center { margin: 2rem auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--olive);
  color: var(--porcelain);
}
.btn-primary:hover { background: rgba(58,74,63,0.85); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--porcelain);
}
.btn-outline-light {
  background: transparent;
  color: var(--porcelain);
  border: 1px solid var(--porcelain);
}
.btn-outline-light:hover {
  background: var(--porcelain);
  color: var(--slate);
}

/* ================================================================
   NAVIGATION
================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.8rem var(--gutter-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--porcelain);
  padding: 1rem var(--gutter-lg);
  box-shadow: 0 1px 0 rgba(42,46,47,0.08);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--porcelain);
  transition: color var(--transition);
}
.nav.scrolled .nav-logo { color: var(--slate); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--porcelain);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--gold); }
.nav.scrolled .nav-links a { color: var(--slate); }
.nav.scrolled .nav-links a:hover { color: var(--gold); }

/* Language switcher */
.lang-switch {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.lang-btn {
  background: none;
  border: none;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--porcelain);
  transition: color var(--transition);
  padding: 0.2rem;
}
.nav.scrolled .lang-btn { color: var(--slate); }
.lang-btn.active { color: var(--gold); }
.lang-sep { color: var(--porcelain); font-size: 0.6rem; }
.nav.scrolled .lang-sep { color: var(--slate-30); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--porcelain);
  transition: var(--transition);
}
.nav.scrolled .nav-toggle span { background: var(--slate); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--porcelain);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--slate);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42,46,47,0.15) 0%,
    rgba(42,46,47,0.05) 40%,
    rgba(42,46,47,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter-lg);
}
.hero-content h1 {
  color: var(--porcelain);
  max-width: 720px;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s 0.3s cubic-bezier(0.2,0.9,0.4,1) forwards;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(247,245,240,0.85);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.55s cubic-bezier(0.2,0.9,0.4,1) forwards;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s 0.75s cubic-bezier(0.2,0.9,0.4,1) forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--porcelain);
  opacity: 0.7;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--porcelain), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ================================================================
   SECTIONS — Common
================================================================ */
section { padding: 7rem 0; }
.section-label {
  display: block;
  margin-bottom: 1.2rem;
}
.section-header {
  max-width: 680px;
  margin-bottom: 4rem;
}
.section-header h2 { margin-bottom: 1.5rem; }

/* ── Intro ── */
.intro { background: var(--porcelain); }
.intro-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.intro-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.intro-inner .body-large { margin-bottom: 2.5rem; }

/* ── Services ── */
.services { background: var(--sand); }
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--porcelain);
  padding: 3rem 2.5rem;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s ease;
}
.service-card:hover::after { width: 100%; }
.service-card:hover { background: #fff; }
.service-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--slate-70);
  line-height: 1.7;
}

/* ── Destinations ── */
.destinations { background: var(--porcelain); }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.destination-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.destination-card img, .destination-card .dest-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.destination-card:hover img,
.destination-card:hover .dest-placeholder { transform: scale(1.08); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,46,47,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.5rem;
}
.dest-overlay h3 {
  color: var(--porcelain);
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}
.dest-overlay p {
  font-size: 0.75rem;
  color: rgba(247,245,240,0.7);
  letter-spacing: 0.05em;
}
.dest-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dest-placeholder.portugal  { background: linear-gradient(135deg, #7B8E7A, #5C6B5B); }
.dest-placeholder.italy     { background: linear-gradient(135deg, #A0907A, #7A6A5A); }
.dest-placeholder.spain     { background: linear-gradient(135deg, #B8865A, #8A6040); }
.dest-placeholder.france    { background: linear-gradient(135deg, #8A9BA0, #6A7B80); }
.dest-placeholder.greece    { background: linear-gradient(135deg, #6A8BA8, #4A6B88); }

/* ── Portfolio Preview ── */
.portfolio-section { background: var(--sand); }
.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
}
.portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(42,46,47,0.85) 0%, transparent 100%);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.45s ease;
}
.portfolio-card:hover .portfolio-card-info {
  transform: translateY(0);
  opacity: 1;
}
.portfolio-card-info h3 {
  color: var(--porcelain);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.portfolio-card-info p {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* ── Testimonials ── */
.testimonials { background: var(--porcelain); overflow: hidden; }
.testimonials-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonials-inner h2 { margin-bottom: 4rem; }
.testimonial-track {
  position: relative;
  min-height: 240px;
}
.testimonial-item {
  display: none;
  flex-direction: column;
  align-items: center;
}
.testimonial-item.active { display: flex; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 2rem;
}
.testimonial-quote::before { content: '\201C'; color: var(--gold); }
.testimonial-quote::after  { content: '\201D'; color: var(--gold); }
.testimonial-author {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-70);
}
.testimonial-author span {
  display: block;
  margin-top: 0.3rem;
  color: var(--gold);
}
.testimonial-dots {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.testimonial-dots button {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sand);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.testimonial-dots button.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--olive);
  padding: 7rem 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--porcelain);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.cta-banner p {
  color: rgba(247,245,240,0.8);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* ================================================================
   PORTFOLIO PAGE
================================================================ */
.page-hero {
  padding: 11rem var(--gutter-lg) 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero h1 { margin-bottom: 1rem; }
.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* ================================================================
   CASE STUDY PAGE
================================================================ */
.case-hero {
  position: relative;
  height: 75vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.case-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.case-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,46,47,0.75) 0%, rgba(42,46,47,0.2) 50%, transparent 100%);
}
.case-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter-lg) 4rem;
}
.case-hero-content h1 {
  color: var(--porcelain);
  margin-bottom: 0.5rem;
}
.case-meta {
  color: rgba(247,245,240,0.75);
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.case-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem var(--gutter-lg);
}
.case-body h2 { margin-bottom: 1.5rem; }
.case-body p  { margin-bottom: 1.5rem; }
.case-grid-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
}
.case-aside h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.case-aside p  { font-size: 0.9rem; color: var(--slate-70); line-height: 1.7; margin-bottom: 1rem; }
.key-moments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.key-moments img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
}
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.vendor-item { padding: 1.5rem 0; border-top: 1px solid var(--sand); }
.vendor-item p:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 0.3rem;
}
.vendor-item p:last-child {
  font-size: 0.82rem;
  color: var(--slate-70);
}

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8rem var(--gutter-lg);
}
.contact-info h1 { margin-bottom: 1.5rem; }
.contact-info .body-large { margin-bottom: 3rem; }
.contact-detail {
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}
.contact-detail strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-70);
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sand);
  padding: 0.75rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--slate);
  transition: border-color var(--transition);
  outline: none;
  border-radius: 0;
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--gold);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: var(--sand);
  padding: 1.5rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--olive);
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--slate);
  padding: 5rem 0 2.5rem;
  color: rgba(247,245,240,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--porcelain);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-socials a {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.6);
  transition: color var(--transition);
}
.footer-socials a:hover { color: var(--gold); }
.footer-nav h4 {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(247,245,240,0.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--porcelain); }
.footer-bottom {
  border-top: 1px solid rgba(247,245,240,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}
.footer-bottom a {
  color: rgba(247,245,240,0.45);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--porcelain); }

/* ================================================================
   ABOUT PAGE
================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 6rem;
  align-items: start;
  padding: 8rem var(--gutter-lg);
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-img {
  aspect-ratio: 3/4;
  background: var(--sand);
  overflow: hidden;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text .caption { margin-bottom: 0.8rem; }
.about-text h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 1.5rem; font-style: italic; }
.about-text .body-large { margin-bottom: 2rem; }
.about-quote {
  border-left: 1px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--slate-70);
}
.approach-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}
.approach-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}
.approach-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ================================================================
   SERVICES PAGE
================================================================ */
.services-page { background: var(--porcelain); }
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand);
  margin-top: 3rem;
}
.service-full-card {
  background: var(--porcelain);
  padding: 3.5rem 2.5rem;
  transition: background var(--transition);
}
.service-full-card:hover { background: #fff; }
.service-full-card h3 { margin-bottom: 1rem; }
.service-full-card .price {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid var(--gold-20);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1rem;
}
.service-full-card p { font-size: 0.9rem; color: var(--slate-70); line-height: 1.7; }

/* ================================================================
   SCROLL ANIMATIONS
================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 0.2; }
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  :root {
    --gutter-lg: 60px;
  }
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img { aspect-ratio: 16/9; }
  .case-grid-2 { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  :root {
    --gutter-lg: var(--gutter-sm);
  }
  .nav-links, .lang-switch { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 1.2rem var(--gutter-sm); }
  .nav.scrolled { padding: 0.9rem var(--gutter-sm); }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
  section { padding: 4.5rem 0; }
  .services-grid,
  .portfolio-grid,
  .portfolio-full-grid,
  .services-full-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header, .portfolio-header { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .key-moments { grid-template-columns: repeat(2, 1fr); }
  .vendor-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; padding: 5rem var(--gutter-sm); }
  .page-hero { padding: 9rem var(--gutter-sm) 4rem; }
  .case-body { padding: 4rem var(--gutter-sm); }
  .case-hero-content { padding: 0 var(--gutter-sm) 3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .vendor-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   SUPPLEMENT — New class names used in rebuilt HTML
================================================================ */

/* ── Nav (id-based) ─────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.8rem var(--gutter-lg);
  display: flex;
  flex-direction: column;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#nav.scrolled {
  background: var(--porcelain);
  padding: 1rem var(--gutter-lg);
  box-shadow: 0 1px 0 rgba(42,46,47,0.08);
}
#nav .nav-logo { color: var(--porcelain); }
#nav.scrolled .nav-logo { color: var(--slate); }
#nav .nav-links a { color: var(--porcelain); }
#nav.scrolled .nav-links a { color: var(--slate); }
#nav .lang-btn { color: var(--porcelain); }
#nav.scrolled .lang-btn { color: var(--slate); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.lang-toggle {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--porcelain);
  transition: var(--transition);
}
#nav.scrolled .hamburger span { background: var(--slate); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--porcelain);
  padding: 2rem var(--gutter-sm);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--slate);
}
.mobile-menu .btn-primary { width: fit-content; }

/* ── Hero additions ─────────────────────────────────────────── */
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.1s cubic-bezier(0.2,0.9,0.4,1) forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s 0.75s cubic-bezier(0.2,0.9,0.4,1) forwards;
}
.btn-ghost {
  background: transparent;
  color: var(--porcelain);
  border: 1px solid rgba(247,245,240,0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(247,245,240,0.15); }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Fade-up animation classes for hero */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s 0.3s cubic-bezier(0.2,0.9,0.4,1) forwards;
}
.fade-up.delay-1 { animation-delay: 0.55s; }
.fade-up.delay-2 { animation-delay: 0.75s; }
.fade-up.delay-3 { animation-delay: 0.95s; }

/* ── Section common additions ───────────────────────────────── */
.title-ornament {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0 2.5rem;
}
.section-footer {
  text-align: center;
  margin-top: 4rem;
}
.text-center { text-align: center; }
.text-center .title-ornament { margin-left: auto; margin-right: auto; }

/* ── Section class aliases (new names → same as old) ────────── */
.section-services    { background: var(--sand); padding: 7rem 0; }
.section-destinations{ background: var(--porcelain); padding: 7rem 0; }
.section-portfolio-home { background: var(--sand); padding: 7rem 0; }
.section-testimonials{ background: var(--porcelain); overflow: hidden; padding: 7rem 0; }
.section-cta         { background: var(--olive); padding: 7rem 0; text-align: center; }
.cta-inner h2 {
  color: var(--porcelain);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.cta-inner p {
  color: rgba(247,245,240,0.8);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* ── Destination cards (image inside) ─────────────────────────*/
.destination-card .dest-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.destination-card .dest-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.destination-card:hover .dest-img img { transform: scale(1.08); }
.dest-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,46,47,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.5rem;
}
.dest-info h3 { color: var(--porcelain); font-size: 1.25rem; margin-bottom: 0.3rem; }
.dest-info p   { font-size: 0.75rem; color: rgba(247,245,240,0.7); letter-spacing: 0.05em; }
.destination-card[style] { transition-delay: var(--delay, 0s); }

/* ── Portfolio cards (new inner structure) ──────────────────── */
.portfolio-card a { display: block; position: relative; height: 100%; }
.portfolio-img {
  width: 100%; height: 100%;
  overflow: hidden;
}
.portfolio-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.portfolio-card:hover .portfolio-img img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(42,46,47,0.85) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.45s ease;
}
.portfolio-card:hover .portfolio-overlay { transform: translateY(0); opacity: 1; }
.portfolio-overlay h3 { color: var(--porcelain); font-size: 1.3rem; margin-bottom: 0.3rem; }
.portfolio-overlay p  { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.view-story {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.75);
  border-bottom: 1px solid rgba(247,245,240,0.3);
  padding-bottom: 2px;
}

/* ── Testimonials (new structure) ───────────────────────────── */
.testimonials-track {
  position: relative;
  min-height: 240px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-slide {
  display: none;
  flex-direction: column;
  align-items: center;
}
.testimonial-slide.active { display: flex; }
.testimonial-slide blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 1.5rem;
}
.testimonial-slide blockquote p::before { content: '\201C'; color: var(--gold); }
.testimonial-slide blockquote p::after  { content: '\201D'; color: var(--gold); }
.testimonial-slide blockquote cite {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-70);
  font-style: normal;
}
.testimonial-dots .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sand);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.testimonial-dots .dot.active { background: var(--gold); transform: scale(1.4); }

/* ── Page Hero (new inner structure) ─────────────────────────── */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero--short { min-height: 42vh; }
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter-lg) 5rem;
}
.page-hero-content h1 { color: var(--porcelain); margin-bottom: 0.75rem; }
.page-hero-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(247,245,240,0.8);
}

/* ── Site Footer (new structure) ─────────────────────────────── */
.site-footer {
  background: var(--slate);
  padding: 5rem 0 2.5rem;
  color: rgba(247,245,240,0.7);
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--porcelain);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(247,245,240,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--porcelain); }
.footer-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(247,245,240,0.08);
  padding-top: 2rem;
  font-size: 0.75rem;
  color: rgba(247,245,240,0.45);
  text-align: center;
}
.site-footer .lang-btn { color: rgba(247,245,240,0.6); }
.site-footer .lang-btn.active { color: var(--gold); }

/* ── Case Study (new structure) ─────────────────────────────── */
.case-hero-meta {
  color: rgba(247,245,240,0.75);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
}
.case-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.case-story { padding: 7rem 0; }
.case-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.case-main h2 { margin-bottom: 1.5rem; }
.case-main p  { margin-bottom: 1.5rem; color: var(--slate-70); line-height: 1.8; }
.case-sidebar {}
.case-detail { margin-bottom: 1.5rem; }
.case-detail h4 {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.case-detail p { font-size: 0.9rem; color: var(--slate-70); line-height: 1.7; }
.case-gallery { background: var(--sand); padding: 7rem 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 3rem;
}
.gallery-grid img { aspect-ratio: 1; width: 100%; object-fit: cover; }
.case-vendors { padding: 7rem 0; }
.case-vendors .section-title { margin-bottom: 3rem; }
.vendor-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 0.3rem;
}
.vendor-name { font-size: 0.82rem; color: var(--slate-70); }
.case-quote { background: var(--porcelain); padding: 7rem 0; }
.case-testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.case-testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 1.5rem;
}
.case-testimonial p::before { content: '\201C'; color: var(--gold); }
.case-testimonial p::after  { content: '\201D'; color: var(--gold); }
.case-testimonial cite {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-70);
  font-style: normal;
}

/* ── Contact Page ────────────────────────────────────────────── */
.section-contact { padding: 7rem 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 6rem;
  align-items: start;
}
.contact-form-wrap {}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-70);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sand);
  padding: 0.75rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--slate);
  transition: border-color var(--transition);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error {
  background: #ffeaea;
  color: #c0392b;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.btn-full { width: 100%; }
.contact-info-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--sand);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-block h3 {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.contact-info-block p { font-size: 0.9rem; }
.contact-info-block a { color: var(--slate); transition: color var(--transition); }
.contact-info-block a:hover { color: var(--gold); }

/* ── About Page ─────────────────────────────────────────────── */
.section-about-story { padding: 7rem 0; }
.about-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 6rem;
  align-items: start;
}
.about-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p   { margin-bottom: 1.5rem; color: var(--slate-70); line-height: 1.8; }
.about-text h3  { margin: 2rem 0 1rem; }
.section-values { background: var(--sand); padding: 6rem 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.value-card {
  background: var(--porcelain);
  padding: 3rem 2rem;
  text-align: center;
  transition: background var(--transition);
}
.value-card:hover { background: #fff; }
.value-card h3 { font-size: 1.2rem; margin-top: 1rem; }

/* ── Services Full Page ─────────────────────────────────────── */
.section-services-full { padding: 7rem 0; }
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--sand);
}
.service-detail {
  display: flex;
  gap: 2rem;
  padding: 3.5rem;
  border-bottom: 1px solid var(--sand);
  border-right: 1px solid var(--sand);
  transition: background var(--transition);
}
.service-detail:nth-child(even) { border-right: none; }
.service-detail:hover { background: #fff; }
.service-detail-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}
.service-detail-body h2 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.service-detail-body > p { color: var(--slate-70); margin-bottom: 1.5rem; line-height: 1.7; }
.service-detail-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-detail-body ul li {
  font-size: 0.88rem;
  color: var(--slate-70);
  padding-left: 1rem;
  position: relative;
}
.service-detail-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── Destinations Full Page ──────────────────────────────────── */
.section-destinations-full { padding: 7rem 0; }
.dest-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--sand);
}
.dest-detail:last-child { border-bottom: none; }
.dest-detail--reverse .dest-detail-img { order: 2; }
.dest-detail--reverse .dest-detail-body { order: 1; }
.dest-detail-img { overflow: hidden; aspect-ratio: 4/3; }
.dest-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.dest-detail:hover .dest-detail-img img { transform: scale(1.04); }
.dest-detail-body h2 { margin-bottom: 0.5rem; }
.dest-detail-body > p:first-of-type { color: var(--gold); font-style: italic; margin-bottom: 1.5rem; }
.dest-detail-body p   { color: var(--slate-70); line-height: 1.8; margin-bottom: 1rem; }
.dest-detail-body .btn-outline { margin-top: 1rem; }

/* ── Portfolio Page ───────────────────────────────────────────── */
.portfolio-filter-bar { padding: 3rem 0 1rem; background: var(--porcelain); }
.filter-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: none;
  border: 1px solid var(--sand);
  padding: 0.5rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--slate-70);
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--porcelain);
}
.section-portfolio-full { padding: 5rem 0 7rem; }
.portfolio-grid--large .portfolio-card { aspect-ratio: 3/4; }

/* ── Responsive additions ────────────────────────────────────── */
@media (max-width: 1100px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .site-footer .footer-brand { grid-column: 1 / -1; }
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { aspect-ratio: 16/9; }
  .case-layout { grid-template-columns: 1fr; gap: 3rem; }
  .dest-detail { grid-template-columns: 1fr; gap: 3rem; }
  .dest-detail--reverse .dest-detail-img { order: 0; }
  .dest-detail--reverse .dest-detail-body { order: 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  #nav { padding: 1.2rem var(--gutter-sm); }
  #nav.scrolled { padding: 0.9rem var(--gutter-sm); }
  #nav .nav-links { display: none; }
  #nav .nav-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
  .page-hero-content { padding: 0 var(--gutter-sm) 4rem; }
  .case-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .service-detail { border-right: none; }
  .values-grid { grid-template-columns: 1fr; }
  .section-header, .section-footer { text-align: center; }
}
