/* ================
   GLOBAL RESET
================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #FAF7F3; /* warm cream */
  color: #3A2F28;      /* deep brown */
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 80px;   /* space for fixed header */
}

/* ================
   TYPE
================ */
h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.4px;
  color: #2E241E;
}

p, a, li, input, textarea, select, button {
  font-family: "Inter", sans-serif;
}

/* ================
   HEADER / NAV
================ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(250,247,243,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #E6DCCF;
  z-index: 1000;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2E241E;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #4A3F36;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 0.25s;
}

.nav-links a:hover {
  color: #A68A6D;
}

/* ================
   HERO – CINEMATIC
================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E241E;
  overflow: hidden;
}

.hero-editorial {
  position: relative;
  width: 100%;
  height: 100%;
}

/* full-bleed hero image */
.hero-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/hero picture.jpeg") center/cover no-repeat;
  transform-origin: center;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1;
}

/* soft gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,12,8,0.45), rgba(250,247,243,0.05));
  mix-blend-mode: multiply;
  z-index: 2;
}

/* hero content */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 30px;
  text-align: left;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D9C7B0;
  margin-bottom: 14px;
}

.hero-inner h1 {
  font-size: 3.4rem;
  line-height: 1.1;
  color: #FDF9F3;
}

.hero-sub {
  font-size: 1.1rem;
  margin-top: 18px;
  max-width: 520px;
  color: #F1E3D4;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ================
   BUTTONS
================ */
.btn {
  display: inline-block;
  padding: 13px 32px;
  background: #A68A6D;
  color: #FFFFFF;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.btn:hover {
  background: #8C6F54;
  transform: translateY(-2px);
}

.btn-text {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #F1E3D4;
  position: relative;
}

.btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #CBB8A0;
  transition: 0.25s;
}

.btn-text:hover::after {
  width: 40%;
}

/* ================
   SECTIONS
================ */
.section {
  max-width: 1100px;
  margin: 120px auto;
  padding: 0 30px;
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 2rem;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8A7C6A;
  margin-bottom: 10px;
}

/* ================
   GALLERY PREVIEW
================ */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.gallery-preview img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #E6DCCF;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  background: #F8F1E7;
  margin-inline: auto;
}

.text-link {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #6A5848;
  position: relative;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 60%;
  height: 1px;
  background: #CBB8A0;
  transition: 0.25s;
}

.text-link:hover::after {
  width: 30%;
}

/* ================
   CARDS (WHY / STEPS / TESTIMONIALS)
================ */
.why-card,
.step,
.testimonial,
.card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #E6DCCF;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
}

.price {
  color: #A68A6D;
}

/* ================
   CONTACT / BOOKING FORM
================ */
.contact-form {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 28px 24px;
  border: 1px solid #E6DCCF;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #E6DCCF;
  background: #FFFFFF;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #3A2F28;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #A68A6D;
  box-shadow: 0 0 0 3px rgba(166,138,109,0.18);
  outline: none;
}

/* ================
   FOOTER
================ */
.site-footer {
  margin-top: 120px;
  padding: 50px 30px 30px;
  background: #F3E8DA;
  border-top: 1px solid #E6DCCF;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.footer-col h4 {
  color: #7A6A58;
  margin-bottom: 10px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col a {
  color: #6A5848;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #A68A6D;
}


.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  font-size: 0.8rem;
  color: #7A6A5A;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ================
   MOBILE MENU
================ */
.mobile-only { display: none; }
.desktop-only { display: flex; }

@media (max-width: 900px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}

.hamburger {
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #3A2F28;
  border-radius: 3px;
  transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 80px;
  right: -100%;
  width: 70%;
  height: calc(100vh - 80px);
  background: #FAF7F3;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: 0.4s ease;
  z-index: 999;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 1.1rem;
  color: #3A2F28;
  letter-spacing: 0.05em;
}

/* Slide-in when active */
.mobile-menu.open {
  right: 0;
}

/* ================
   SCROLL FADE-IN
================ */
.fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================
   RESPONSIVE
================ */
@media (max-width: 900px) {
  body {
    padding-top: 70px;
  }

  .hero-inner {
    text-align: left;
  }

  .hero-inner h1 {
    font-size: 2.4rem;
  }

  .gallery-preview {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .gallery-preview {
    grid-template-columns: 1fr;
  }

  .section {
    margin: 90px auto;
  }
}

/* PAGE LOAD FADE */
body {
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.loaded {
  opacity: 1;
}

/* STAGGERED FADE-IN (apply .stagger to a parent) */
.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }



.poseonthree-hp {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}


