/* ========================================= */
/* --- Basic Reset & Typography --- */
/* ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", sans-serif;
  background-color: #faf9f7;
  color: #333;
  line-height: 1.6;
  padding-top: 100px;
}

h1,
h2,
h3,
.logo {
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

section {
  scroll-margin-top: 120px;
}

/* ========================================= */
/* --- Split Navigation Header --- */
/* ========================================= */
.top-nav-split {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 5%;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.nav-links-side {
  display: flex;
  gap: 40px;
  flex: 1;
}

.nav-links-side:last-child {
  justify-content: flex-end;
}

.nav-links-side:first-child {
  justify-content: flex-start;
}

.nav-links-side a {
  text-decoration: none;
  color: #444;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.nav-links-side a:hover {
  color: #999;
}

.nav-links-side a.nav-active {
  color: #b0a392;
  font-weight: 700;
}

.logo-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}

.logo-center .logo-name {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: #222;
  text-transform: uppercase;
}

.logo-center .logo-sub {
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: #888;
  text-transform: uppercase;
  margin-top: 5px;
}

/* ========================================= */
/* --- Full Screen Hero Carousel --- */
/* ========================================= */
.hero-editorial {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  animation: hero-zoom-out 5s ease-out forwards;
}

@keyframes hero-zoom-out {
  from {
    transform: scale(1.15);
  }
  to {
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  font-size: 4rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  margin-bottom: 10px;
  line-height: 1.2;
}

.script-subtitle {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  margin-bottom: 15px;
  font-weight: 400;
}

/* ========================================= */
/* --- Triple Image Hero (Subpages) --- */
/* ========================================= */
.triple-hero {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 65vh;
  overflow: hidden;
}

.triple-hero-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  border-right: 2px solid #ffffff;
}

.triple-hero-img:last-child {
  border-right: none;
}

.terms-content {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 5%;
}

/* ========================================= */
/* --- Mentorship & Great Fit Section --- */
/* ========================================= */
.mentorship-fit-section {
  display: flex;
  width: 100%;
}

/* Left Side Layout */
.mentorship-side {
  flex: 1;
  background-color: #ffffff;
  padding: 120px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 380px;
  margin-bottom: 50px;
}

.workshop-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.workshop-grid-center {
  position: relative;
  width: 100%;
  height: 100%;
}

.workshop-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  z-index: 2;
}

.workshop-text-overlay .grid-title {
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
  color: #a89f91;
  letter-spacing: 1px;
}

.workshop-text-overlay .grid-small {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.7rem;
  color: #888;
  margin: 5px 0;
  text-transform: uppercase;
}

.mentorship-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #a89f91;
  text-align: center;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.btn-learn-more-light {
  display: inline-block;
  padding: 15px 40px;
  background-color: #e6e1da;
  color: #555;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn-learn-more-light:hover {
  background-color: #dcd5cc;
}

/* Right Side Layout */
.fit-side {
  flex: 1;
  background-color: #f4f3ef; /* Elegant light beige matching reference */
  padding: 120px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fit-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #a89f91;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 40px;
  margin-left: 10%;
}

.fit-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-left: 10%;
}

.fit-text {
  flex: 1;
  max-width: 260px;
}

.fit-cursive {
  font-family: "Great Vibes", cursive;
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 25px;
  white-space: nowrap;
}

.fit-text p:not(.fit-cursive) {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 35px;
}

.btn-black {
  display: inline-block;
  padding: 15px 35px;
  background-color: #000000;
  color: #ffffff;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn-black:hover {
  background-color: #333;
}

.fit-image {
  flex: 1.2;
}

.fit-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ========================================= */
/* --- Dedicated Contact Page Layout --- */
/* ========================================= */
.contact-page-wrapper {
  max-width: 1400px; /* Increased from 1100px to stretch further left and right */
  margin: 180px auto 100px auto;
  padding: 0 5%;
}

.contact-page-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  color: #b0a392;
  letter-spacing: 2px;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.contact-direct-note {
  text-align: center;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1rem;
  color: #666;
  margin-top: -35px;
  margin-bottom: 60px;
}

.contact-direct-note a {
  color: #b0a392;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #b0a392;
  transition: color 0.3s ease;
}

.contact-direct-note a:hover {
  color: #8c8173;
  border-bottom-color: #8c8173;
}

.contact-split-layout {
  display: flex;
  gap: 80px;
  align-items: stretch;
}

.contact-image-box {
  flex: 1.2; /* Increased from 1 to give the image more width */
  min-width: 400px; /* Ensures it never gets too narrow on medium screens */
}

.contact-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-box {
  flex: 1; /* Decreased from 1.2 so the form takes up a bit less space */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.minimal-contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group-clean label {
  display: block;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.1rem; /* Increased from 0.9rem */
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.form-sub-label {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.9rem; /* Increased from 0.75rem */
  color: #888;
  margin-bottom: 10px;
}

/* Minimalist Underline Inputs */
.form-group-clean input,
.form-group-clean select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 12px 0; /* Slightly increased padding */
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.05rem; /* Increased from 0.85rem */
  color: #555;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group-clean select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px auto;
}

.form-group-clean input:focus,
.form-group-clean select:focus {
  outline: none;
  border-bottom-color: #b0a392;
}

/* Boxed Textarea */
.form-group-clean textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: transparent;
  padding: 15px;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.05rem; /* Increased from 0.85rem */
  color: #555;
  resize: vertical;
  min-height: 120px;
  margin-top: 5px;
  transition: border-color 0.3s ease;
}

.form-group-clean textarea:focus {
  outline: none;
  border-color: #b0a392;
}

.form-group-clean input::placeholder,
.form-group-clean textarea::placeholder {
  color: #bbb;
}

/* Submit Button Row */
.form-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

/* Base button state - Form is INCOMPLETE */
.btn-send-clean {
  background-color: #d1d9e0;
  color: #ffffff;
  border: none;
  padding: 16px 50px; /* Made the button slightly larger to match new text size */
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1rem; /* Increased from 0.8rem */
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: not-allowed;
}

/* Button state - Form is COMPLETE and valid */
.minimal-contact-form:valid .btn-send-clean {
  background-color: #9aa8b5; /* Automatically turns distinctly darker when ready */
  cursor: pointer; /* Normal clicking cursor */
}

/* Hover effect ONLY triggers when the form is complete */
.minimal-contact-form:valid .btn-send-clean:hover {
  background-color: #798a9c; /* Gets even darker when they actually hover over it */
}

@media (max-width: 600px) {
  .triple-hero {
    flex-direction: column;
    height: 80vh;
  }
  .triple-hero-img {
    border-right: none;
    border-bottom: 2px solid #ffffff;
  }
  .triple-hero-img:last-child {
    border-bottom: none;
  }
}

/* ========================================= */
/* --- Single Wide Hero (Subpages) --- */
/* ========================================= */
.single-page-hero {
  width: 100%;
  height: 55vh;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .single-page-hero {
    height: 35vh;
  }
}

/* ========================================= */
/* --- About Page - Hero Editorial --- */
/* ========================================= */
.about-hero-editorial {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5%;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image-stack {
  position: relative;
  width: 450px;
  height: 550px;
  flex-shrink: 0;
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  position: relative;
}

.about-bts-img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  position: absolute;
  bottom: -30px;
  right: -40px;
  z-index: 2;
  border: 8px solid #ffffff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-text-content {
  flex: 1;
  max-width: 500px;
  position: relative; /* Required to lock the background text inside */
  text-align: center;
}

/* The faint background script watermark */
.bg-script-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Great Vibes", cursive;
  font-size: 3.5rem;
  color: #e6e1da; /* Very light taupe/beige */
  white-space: nowrap; /* Keeps the lines from breaking awkwardly */
  z-index: 0; /* Pushes it behind the main text */
  pointer-events: none; /* Prevents the user's mouse from highlighting it */
  line-height: 1.5;
  opacity: 0.6;
}

.title-serif {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  color: #b0a392; /* Updated to the elegant gold/taupe color */
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative; /* Required for z-index to work */
  z-index: 1; /* Pulls it to the front */
}

.about-signature {
  font-family: "Great Vibes", cursive;
  font-size: 2.8rem;
  color: #555;
  position: relative;
  z-index: 1;
}

/* About Hero: the image stack was a fixed 450px wide with flex-shrink:0
   and never had a mobile breakpoint, causing horizontal overflow on
   phones. Stack it vertically and let the image scale with the column. */
@media (max-width: 768px) {
  .about-hero-editorial {
    flex-direction: column;
    padding: 60px 5%;
    gap: 50px;
  }
  .about-image-stack {
    width: 100%;
    max-width: 380px;
    height: auto;
    aspect-ratio: 450 / 550;
  }
  .about-bts-img {
    width: 45%;
    height: auto;
    aspect-ratio: 200 / 250;
    bottom: -20px;
    right: -20px;
  }
  .about-text-content {
    max-width: 100%;
  }
  .bg-script-text {
    font-size: 1.5rem;
    white-space: normal;
  }
  .title-serif {
    font-size: 2.2rem;
  }
}

/* ========================================= */
/* --- About Story Rows (Staggered Layout) --- */
/* ========================================= */
.about-story-container {
  max-width: 1200px;
  margin: 80px auto 150px auto;
  padding: 0 5%;
}

.about-story-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.about-story-row.align-top {
  align-items: center;
}

.about-story-row.reverse {
  flex-direction: row-reverse;
}

.story-text {
  flex: 1;
}

.story-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.story-image img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Specific image sizing to match the staggered editorial look */
.about-story-row:nth-child(1) .story-image img {
  width: 85%;
  object-fit: cover;
}

.about-story-row:nth-child(2) .story-image img {
  width: 65%;
  object-fit: cover;
}

.about-story-row:nth-child(3) .story-image img {
  width: 75%;
  object-fit: cover;
}

/* Typography for the Story Section */
.story-subtitle {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 15px;
}

.story-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #b0a392;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.story-text p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Unordered List Styling (Hyphen Bullets) */
.story-list {
  list-style: none; /* Removes default circular bullets */
  margin-bottom: 18px;
}

.story-list li {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  position: relative;
  padding-left: 20px; /* Gives space for the hyphen */
  margin-bottom: 10px; /* Adds space between list items */
}

.story-list li::before {
  content: "—"; /* Uses a dash as a stylish bullet */
  position: absolute;
  left: 0;
  color: #b0a392; /* Matches your brand color */
}

/* Indented Blocks for Row 3 */
.indent-text,
.indent-list {
  margin-left: 40px;
}

/* Mobile Adjustment for the background text */
@media (max-width: 600px) {
  .bg-script-text {
    font-size: 2rem;
  }
}

/* ========================================= */
/* --- Terms & Conditions Typography --- */
/* ========================================= */
.terms-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: #b0a392;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 400;
  letter-spacing: 2px;
}

@media (max-width: 600px) {
  .terms-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
}

.terms-body p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* ========================================= */
/* --- Parallax Testimonial Section --- */
/* ========================================= */
.parallax-section {
  background-attachment: fixed;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("assets/home/parallax-bg.jpg");
  background-position: center 3%;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 120px;
  padding: 250px 5%;
  text-align: center;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.testimonial p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.testimonial .signature {
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  color: #ffffff;
  margin-top: 15px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

/* ========================================= */
/* --- About the Artist Section --- */
/* ========================================= */
.about-artist {
  padding: 120px 5%;
  max-width: 1500px;
  margin: 0 auto;
}

.about-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.about-images {
  flex: 1.2;
}

.main-portrait {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-text {
  flex: 1;
  padding-right: 20px;
}

.about-text .subtitle {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: 4px;
  color: #b0a392;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
}

.about-text h2 {
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #555;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  text-transform: uppercase;
}

.about-text .signature {
  font-family: "Great Vibes", cursive;
  font-size: 3.5rem;
  color: #222;
  margin-bottom: 30px;
  line-height: 1;
}

.about-text p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-footer {
  margin-top: 100px;
  text-align: center;
}

.about-cta {
  font-size: 1.3rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #777;
}

.btn-book {
  display: inline-block;
  margin-top: 30px;
  padding: 18px 45px;
  background: linear-gradient(to bottom, #e8e2d9, #c4b5a3);
  color: #3b505a;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.btn-book:hover {
  background: linear-gradient(to bottom, #dcd5cc, #b8a794);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  cursor: pointer;
}

/* ========================================= */
/* --- Centered Narrative Block --- */
/* ========================================= */
.narrative-block {
  max-width: 900px;
  margin: 150px auto;
  text-align: center;
  padding: 0 20px;
}

.narrative-block .subtitle {
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 20px;
}

.narrative-block h2 {
  font-size: 2.2rem;
  line-height: 1.4;
  color: #222;
}

/* ========================================= */
/* --- Alternating Split Sections --- */
/* ========================================= */
.split-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 5%;
  max-width: 1600px;
  margin: 0 auto;
  gap: 120px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  padding: 0 20px;
}

.split-text h3 {
  font-size: 2.8rem;
  margin-bottom: 30px;
}

.split-text p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.8;
}

.split-image {
  flex: 1.2;
}

.split-image img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* ========================================= */
/* --- Scroll Animation --- */
/* ========================================= */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================= */
/* --- Step-Based Spotlight Gallery --- */
/* ========================================= */
.gallery-carousel {
  padding: 150px 0 120px 0;
  background-color: #e6e1da;
  overflow: hidden;
  position: relative;
}

.gallery-carousel::before {
  content: "Highly highly recommend Sara for any family or milestone shoot! She is AMAZING!!! She captures magic through her lens and also keeps the mood so light and airy while shooting.";
  position: absolute;
  bottom: 60px;
  left: -20px;
  width: 100%;
  max-width: 1400px;
  font-family: "Great Vibes", cursive;
  font-size: 4.5rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.2;
  z-index: 0;
  transform: rotate(-3deg);
  pointer-events: none;
}

.carousel-container {
  display: flex;
  gap: 80px;
  padding: 50px 50vw;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
  z-index: 1;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-container.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel-container.dragging,
.carousel-container.dragging .carousel-img {
  cursor: grabbing !important;
}

.carousel-img {
  height: 480px;
  width: 340px;
  object-fit: cover;
  flex-shrink: 0;
  scroll-snap-align: center;
  transform: scale(0.85);
  opacity: 0.6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease,
    box-shadow 0.6s ease;
}

.carousel-img.focused {
  transform: scale(1.15);
  opacity: 1;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.carousel-footer {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background-color: #ffffff;
  color: #555;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #faf9f7;
  color: #222;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ========================================= */
/* --- The Studio Editorial Section --- */
/* ========================================= */
.studio-editorial {
  padding: 150px 5%;
  background-color: #faf9f7;
  display: flex;
  justify-content: center;
}

.studio-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 100px;
}

.studio-collage {
  flex: 1;
  position: relative;
  min-height: 650px;
  width: 100%;
}

.studio-collage img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease;
}

.studio-collage img:hover {
  transform: translateY(-5px);
  z-index: 10;
}

.collage-img-1 {
  top: 0;
  left: 0;
  width: 65%;
  height: 400px;
  z-index: 2;
}

.collage-img-2 {
  top: 50px;
  right: 0;
  width: 45%;
  height: 300px;
  z-index: 1;
}

.collage-img-3 {
  bottom: 0;
  right: 15%;
  width: 55%;
  height: 350px;
  z-index: 3;
}

.studio-info {
  flex: 1;
  padding-right: 20px;
}

.studio-title {
  font-family: "Great Vibes", cursive;
  font-size: 5rem;
  color: #222;
  margin-bottom: 30px;
  line-height: 1;
  text-transform: none;
}

.studio-info p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 2;
  margin-bottom: 25px;
}

/* ========================================= */
/* --- Feature Testimonial Section (Slider) --- */
/* ========================================= */
.feature-testimonial {
  background-color: #a8a297;
  padding: 120px 5%;
  overflow: hidden;
}

.feature-slider-wrapper {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.test-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 4rem;
  color: #f7f5f0;
  cursor: pointer;
  z-index: 10;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.test-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  left: -20px;
}

.next-arrow {
  right: -20px;
}

.feature-test-track {
  width: 100%;
}

.feature-slide {
  display: none;
  animation: fadeSlideIn 0.6s ease-in-out;
}

.feature-slide.active {
  display: block;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-test-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 100px;
}

.feature-text-side {
  flex: 1;
  max-width: 450px;
}

.feature-text-side h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.8rem;
  color: #f7f5f0;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.feature-text-side p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.05rem;
  color: #222;
  line-height: 1.8;
  margin-bottom: 25px;
}

.feature-signature {
  font-family: "Great Vibes", cursive;
  font-size: 2.2rem;
  color: #222;
}

.feature-image-side {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.feature-image-side img {
  width: 100%;
  max-width: 450px;
  height: 600px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
  position: relative;
}

.cursive-overlay {
  position: absolute;
  bottom: -40px;
  left: -25%;
  width: 150%;
  font-family: "Great Vibes", cursive;
  font-size: 3.2rem;
  color: #f7f5f0;
  z-index: 3;
  transform: rotate(-5deg);
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

/* ========================================= */
/* --- What's Included Section --- */
/* ========================================= */
.whats-included-section {
  background-color: #ffffff;
  padding: 100px 0 120px 0;
  text-align: center;
}

.included-intro-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5%;
}

.included-intro {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 2;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.included-title {
  font-family: "Great Vibes", cursive;
  font-size: 4.5rem;
  color: #b0a392;
  margin-bottom: 40px;
  font-weight: 400;
}

.included-banner {
  background-color: #c4bcae;
  padding: 50px 5%;
  margin-bottom: 60px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 60px;
  column-gap: 30px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.included-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  text-align: center;
}

.icon-box {
  background-color: #ffffff;
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.icon-circle {
  width: 100px;
  height: 100px;
  border: 2px solid #c5a059;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-circle svg {
  width: 45px;
  height: 45px;
  color: #c5a059;
  stroke-width: 1.5;
  filter: drop-shadow(1px 2px 2px rgba(197, 160, 89, 0.2));
}

.included-item p {
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.6;
  margin-top: 5px;
}

.included-footer {
  text-align: center;
}

.btn-services {
  display: inline-block;
  background-color: #e6e1da;
  color: #333;
  padding: 15px 40px;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-services:hover {
  background-color: #dcd5cc;
  transform: translateY(-2px);
}

/* ========================================= */
/* --- Lightbox Modal --- */
/* ========================================= */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 15, 0.95);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: fadeZoomIn 0.3s ease;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-lightbox:hover {
  color: #b0a392;
}

@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========================================= */
/* --- Contact Form --- */
/* ========================================= */
.contact-editorial {
  background-color: #ffffff;
  padding: 120px 20px;
  text-align: center;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-container p.subtitle {
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 15px;
}

.contact-container h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  background-color: #faf9f7;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #222;
}

.submit-btn {
  padding: 15px;
  background-color: #222;
  color: #fff;
  border: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #444;
}

/* ========================================= */
/* --- Editorial Footer --- */
/* ========================================= */
.editorial-footer {
  background-color: #a39b8e;
  padding: 80px 5% 60px 5%;
  color: #f7f5f0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-social-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.journey-text {
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  flex: 1;
}

.social-center {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.ig-handle {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: #f7f5f0;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.ig-handle:hover {
  opacity: 0.7;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: #f7f5f0;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons svg {
  width: 20px;
  height: 20px;
}

.header-spacer {
  flex: 1;
}

.footer-gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
}

.footer-gallery img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.footer-gallery img:hover {
  transform: translateY(-5px);
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 80px;
}

.footer-nav a {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #f7f5f0;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  line-height: 2;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.8);
}

.footer-terms a {
  color: inherit;
  text-decoration: none;
}

.footer-copy {
  text-align: right;
  max-width: 600px;
}

.footer-copy p {
  margin-bottom: 5px;
}

/* ========================================= */
/* --- Global Mobile Responsiveness --- */
/* ========================================= */

@media (max-width: 1000px) {
  .studio-container {
    flex-direction: column;
    gap: 60px;
  }
  .studio-info {
    padding-right: 0;
  }
  .studio-collage {
    min-height: 550px;
  }

  .test-arrow {
    font-size: 3rem;
  }
  .prev-arrow {
    left: 0;
  }
  .next-arrow {
    right: 0;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .footer-gallery img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
    text-align: center;
    gap: 60px;
    padding: 80px 5%;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .about-split {
    flex-direction: column;
    gap: 80px;
  }

  .main-portrait {
    width: 90%;
  }

  .about-text {
    padding-right: 0;
    text-align: center;
  }

  .feature-test-container {
    flex-direction: column;
    gap: 60px;
    text-align: center;
    padding: 0 40px;
  }
  .feature-image-side img {
    height: 500px;
  }
  .cursive-overlay {
    font-size: 2.2rem;
    left: -10%;
    width: 120%;
    bottom: -20px;
  }
  .prev-arrow {
    left: -10px;
  }
  .next-arrow {
    right: -10px;
  }

  .footer-social-header {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .journey-text {
    font-size: 3.5rem;
  }
  .footer-gallery {
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-gallery img {
    width: 30%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  .footer-copy {
    text-align: center;
  }

  /* About Page Staggered Layout Fixes */
  .about-story-row,
  .about-story-row.reverse {
    flex-direction: column;
    gap: 50px;
    text-align: center;
    margin-bottom: 80px;
  }

  .about-story-row:nth-child(1) .story-image img,
  .about-story-row:nth-child(2) .story-image img,
  .about-story-row:nth-child(3) .story-image img {
    width: 100%;
  }

  .indent-text,
  .indent-list {
    margin-left: 0;
  }

  .story-list li {
    text-align: left;
  }

  .story-list {
    display: inline-block;
    text-align: left;
  }
  /* Mobile Fixes for Split Section */
  .mentorship-fit-section {
    flex-direction: column;
  }
  .fit-title,
  .fit-content {
    margin-left: 0;
  }
  .fit-content {
    flex-direction: column;
    text-align: center;
  }
  .fit-title {
    text-align: center;
  }
  .fit-cursive {
    white-space: normal;
  }
  .btn-black {
    margin-bottom: 40px;
  }

  .contact-split-layout {
    flex-direction: column;
    gap: 40px;
  }
  .contact-image-box {
    min-width: 0;
    width: 100%;
  }
  .contact-page-title {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
}

/* ========================================= */
/* --- About Page Closing CTA --- */
/* ========================================= */
.about-closing-cta {
  max-width: 900px;
  margin: 0 auto 100px auto;
  text-align: center;
  padding: 0 5%;
}

.closing-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #b0a392;
  text-align: left;
  margin-bottom: 20px;
}

.closing-intro-text {
  text-align: left;
  margin-bottom: 60px;
}

.about-closing-cta p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

.closing-title {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  color: #333;
  font-weight: 400;
  margin: 50px 0 30px 0;
}

.btn-learn-more {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 45px;
  background-color: #a89f91; /* Matches the elegant taupe button */
  color: #ffffff;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.btn-learn-more:hover {
  background-color: #8c8477;
}

.cta-divider {
  border: none;
  border-top: 1px solid #a89f91;
  margin-top: 60px;
  opacity: 0.5;
}

/* Specific image sizing for the 4th row to match the screenshot */
.about-story-row:nth-child(4) .story-image img {
  width: 70%;
  object-fit: cover;
}

@media (max-width: 600px) {
  body {
    padding-top: 150px;
  }

  .top-nav-split {
    flex-direction: column;
    gap: 15px;
    padding: 15px 5%;
  }
  .logo-center {
    order: -1;
    padding: 0;
    margin-bottom: 5px;
  }
  .nav-links-side {
    justify-content: center !important;
    gap: 15px;
    flex-wrap: wrap;
  }
  .nav-links-side a {
    font-size: 0.7rem;
  }

  .parallax-section {
    padding: 100px 5%;
    background-attachment: scroll;
  }
  .testimonial p {
    font-size: 0.9rem;
  }
  .testimonial .signature {
    font-size: 2rem;
  }

  .carousel-img {
    height: 380px;
    width: 260px;
  }
  .carousel-container {
    gap: 40px;
  }
  .gallery-carousel::before {
    font-size: 2.5rem;
  }

  .studio-collage {
    min-height: 450px;
  }
  .collage-img-1 {
    height: 280px;
    width: 70%;
  }
  .collage-img-2 {
    height: 220px;
    top: 20px;
  }
  .collage-img-3 {
    height: 250px;
    bottom: 20px;
    right: 5%;
    width: 60%;
  }
  .studio-title {
    font-size: 4rem;
  }

  .included-item {
    width: 100%;
  }
  .icon-box {
    width: 120px;
  }
  .icon-circle {
    width: 80px;
  }
  .icon-circle svg {
    width: 35px;
  }
  .included-title {
    font-size: 3.5rem;
  }

  .footer-nav {
    gap: 20px;
  }
  .closing-title {
    font-size: 2.2rem;
  }
  .closing-intro-text {
    text-align: center;
  }
}
/* --- Portfolio Page Styling --- */
.portfolio-page-wrapper {
  max-width: 1200px;
  margin: 180px auto 100px auto;
  padding: 0 5%;
  min-height: 50vh; /* Keeps the footer down until we add photos */
}

.portfolio-page-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  color: #b0a392;
  letter-spacing: 2px;
  margin-bottom: 80px;
  text-transform: uppercase;
}
/* ========================================= */
/* --- Portfolio Edge-to-Edge Layout --- */
/* ========================================= */

.portfolio-hero-edge {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: visible;
  z-index: 10;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-text-center {
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 15;
}

.hero-cursive {
  font-family: "Great Vibes", cursive;
  font-size: 4rem;
  color: #ffffff;
  display: block;
  margin-bottom: -35px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-straddle-title {
  font-family: "Playfair Display", serif;
  font-size: 8rem;
  color: #b0a392;
  letter-spacing: 12px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
}

.portfolio-content-edge {
  position: relative;
  background-color: #faf9f7;
  padding: 120px 5% 80px 5%;
  width: 100%;
  z-index: 5;
}

.portfolio-watermark {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
  color: #b0a392;
  line-height: 1.5;
  pointer-events: none;
}

/* Mobile Adjustments for Portfolio Typography */
@media (max-width: 768px) {
  .hero-straddle-title {
    font-size: 3.5rem;
    letter-spacing: 5px;
  }
  .hero-cursive {
    font-size: 2.5rem;
    margin-bottom: -15px;
  }
  .hero-text-center {
    bottom: -20px;
  }
  .portfolio-watermark {
    font-size: 1.2rem;
    max-width: 90%;
  }
  .portfolio-hero-edge {
    height: 50vh;
  }
}

/* Long titles like "CELEBRATIONS & MILESTONES" still overflow narrow
   phones at the 768px size above, since a single word can exceed the
   viewport width on its own even after wrapping. */
@media (max-width: 420px) {
  .hero-straddle-title {
    font-size: 2.4rem;
    letter-spacing: 2px;
  }
}

/* ========================================= */
/* --- Portfolio Category Grid --- */
/* ========================================= */

.portfolio-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Creates 2 equal columns */
  column-gap: 80px; /* Large space between left and right columns */
  row-gap: 80px; /* Large space between top and bottom rows */
  max-width: 900px; /* Constrains width so images don't get too massive on large screens */
  margin: 40px auto 0 auto;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none; /* Removes the default blue link underline */
  cursor: pointer;
}

.category-img-wrapper {
  width: 100%;
  aspect-ratio: 3 / 4; /* Forces a uniform vertical/portrait layout for all images */
  overflow: hidden;
  margin-bottom: 25px;
  background-color: #faf9f7;
}

.category-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease; /* Smooth hover transition */
}

/* Subtle image zoom on hover */
.category-card:hover .category-img-wrapper img {
  transform: scale(1.04);
}

.category-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: #b0a392; /* The elegant taupe/gold from your branding */
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
  transition: color 0.3s ease;
}

.category-card:hover .category-title {
  color: #8c8173; /* Darkens text slightly on hover */
}

/* Make it stack into a single column on mobile phones */
@media (max-width: 800px) {
  .portfolio-category-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 10px;
  }
}

/* ========================================= */
/* --- Services Intro Section Title --- */
/* ========================================= */
.section-title {
  font-size: 2.2rem;
  color: #222;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* ========================================= */
/* --- Portfolio Category Sub-Pages: Photo Gallery --- */
/* ========================================= */
.portfolio-gallery {
  column-count: 3;
  column-gap: 20px;
  max-width: 1400px;
  margin: 60px auto 0 auto;
  padding: 0 5% 100px 5%;
}

.portfolio-gallery img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  border-radius: 2px;
  cursor: pointer;
  break-inside: avoid;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: opacity 0.3s ease;
}

.portfolio-gallery img:hover {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .portfolio-gallery {
    column-count: 2;
  }
}

@media (max-width: 550px) {
  .portfolio-gallery {
    column-count: 1;
    padding: 0 8% 60px 8%;
  }
}

/* ========================================= */
/* --- Parallax CTA Section --- */
/* ========================================= */

.parallax-cta {
  position: relative;
  width: 100%;
  min-height: 60vh; /* Ensures the section is nice and tall */
  background-image: url("assets/portfolio-parallax.jpg"); /* Your background image */
  background-attachment: fixed; /* THIS creates the parallax effect! */
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px; /* Gives breathing room below the portfolio grid */
}

/* A soft dark overlay so the white text pops against any photo */
.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.parallax-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 550px; /* Controls how wide the text block can get */
  margin-left: auto; /* This forces the block all the way to the right side of the photo */
  margin-right: 8%; /* Gives it a little breathing room from the right edge */
  padding: 0 20px;
}

.cta-subtitle {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b0a392; /* The elegant taupe */
  margin-bottom: 20px;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 45px;
}

.btn-parallax {
  background-color: rgba(
    176,
    163,
    146,
    0.7
  ); /* Semi-transparent taupe to match screenshot */
  color: #ffffff;
  padding: 16px 50px;
  text-decoration: none;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn-parallax:hover {
  background-color: rgba(176, 163, 146, 1); /* Becomes solid taupe on hover */
}

/* Mobile Adjustments */
/* Mobile Adjustments */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2.2rem;
  }

  .parallax-cta {
    background-attachment: scroll; /* Mobile browsers sometimes struggle with parallax */
  }

  .parallax-cta-content {
    margin-left: auto;
    margin-right: auto; /* This overrides the right-alignment and centers the text on phones */
  }
}
/* ========================================= */
/* --- Packages & Services Grid Layout --- */
/* ========================================= */

.services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  position: relative;
  z-index: 10;
}

.services-intro p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.package-card {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.package-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.package-card img.focus-top {
  object-position: center 15%;
}

.package-content {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Pushes the button to the bottom if text lengths vary */
}

.package-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 15px;
}

.package-content p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.package-details {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.package-details span {
  display: flex;
  align-items: center;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  color: #555;
}

.package-details svg {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  color: #b0a392; /* Taupe accents for the icons */
}

.btn-book-card {
  align-self: flex-start;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b0a392;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.btn-book-card:hover {
  color: #8c8173;
  border-bottom: 1px solid #8c8173;
}

/* Mobile Responsiveness for the Grid */
@media (max-width: 1100px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr; /* 1 per row on phones */
  }
  .services-intro {
    padding: 0 15px;
  }
}
/* ========================================= */
/* --- AI Watermark Cropper --- */
/* ========================================= */

/* Add this class to any container holding an image */
.crop-watermark {
  overflow: hidden !important; /* Acts like a clipping mask */
}

/* This targets the image inside that container */
.crop-watermark img {
  transform: scale(1.06); /* Zooms the image in by 6% */
  transform-origin: top left; /* Anchors to the top-left, pushing the bottom-right corner completely out of frame */
  transition: transform 0.6s ease; /* Keeps hover animations smooth if you have them */
}

/* ========================================= */
/* --- Lightbox & Fullscreen Watermark Fix --- */
/* ========================================= */

.lightbox-modal {
  display: none; /* Hidden by default until clicked */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.92
  ); /* Dark, slightly transparent background */
  align-items: center;
  justify-content: center;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #ffffff;
  font-size: 45px;
  font-weight: 300;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.close-lightbox:hover {
  color: #b0a392; /* Taupe hover state */
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 1001;
  padding: 12px 18px;
  user-select: none;
  transition: color 0.3s ease;
}

.lightbox-arrow:hover {
  color: #b0a392;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

@media (max-width: 600px) {
  .lightbox-arrow {
    font-size: 1.8rem;
    padding: 8px 12px;
  }
  .lightbox-prev {
    left: 0;
  }
  .lightbox-next {
    right: 0;
  }
}

/* Make images on the About page look clickable */
.about-image-stack img,
.story-image img,
.workshop-grid img,
.fit-image img {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.about-image-stack img:hover,
.story-image img:hover,
.workshop-grid img:hover,
.fit-image img:hover {
  opacity: 0.85; /* Slight fade when hovering */
}
.story-greeting {
  font-family: "Great Vibes", cursive !important;
  font-size: 2.5rem !important; /* Force the size */
  color: #b0a392 !important;
  margin: 30px 0 !important;
  line-height: 1 !important; /* Tighten line height for large text */
  letter-spacing: 1px !important;
  display: block !important; /* Ensure it behaves like a block element */
  width: 100% !important; /* Force it to take the full width available */
}
/* ========================================= */
/* --- ABOUT PAGE UPGRADES (GRIDS & STACKS) --- */
/* ========================================= */

/* 1. Widen the entire section to use the empty space */
.about-story-container {
  max-width: 1500px !important;
}

/* 2. Increase text sizes for readability */
.story-title {
  font-size: 3.5rem !important;
}
.story-text p {
  font-size: 1.15rem !important;
  line-height: 1.6 !important;
}
.story-list li {
  font-size: 1.15rem !important;
  line-height: 1.6 !important;
}

/* 3. Give the photo column more space overall */
.about-story-row .story-image {
  flex: 1.3 !important;
}

/* 4. Vertical Photo Stack (Row 1) */
.vertical-photo-stack {
  display: flex !important;
  flex-direction: column !important; /* Strictly forces a vertical line */
  gap: 30px !important;
  width: 100% !important;
}
.vertical-photo-stack img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  border-radius: 2px !important;
}

/* Two images shown side-by-side within the stack instead of stacked */
.photo-pair {
  display: flex;
  gap: 30px;
  width: 100%;
}
.vertical-photo-stack .photo-pair img {
  width: 50% !important;
}

/* 5. Editorial Grids (Rows 2 & 3) */
.editorial-grid,
.editorial-grid-quad {
  display: grid !important; /* Strictly forces a grid, preventing horizontal blowout */
  gap: 20px !important;
  width: 100% !important;
}
.editorial-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}
.editorial-grid-quad {
  grid-template-columns: repeat(2, 1fr) !important;
}

.editorial-grid img,
.editorial-grid-quad img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  aspect-ratio: 4 / 5 !important; /* Uniform vertical shapes for small images */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05) !important;
  border-radius: 2px !important;
}

/* Make the wide image stretch across both grid columns */
.grid-span-2 {
  grid-column: span 2 !important;
  aspect-ratio: 16 / 9 !important; /* Cinematic wide shape */
}

/* 6. Fix for Row 4 Single Image */
.about-story-row:nth-child(4) .story-image img {
  width: 100% !important;
  height: auto !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Mobile adjustments to keep it looking good on phones */
@media (max-width: 768px) {
  .editorial-grid,
  .editorial-grid-quad {
    gap: 10px !important;
  }
  .grid-span-2 {
    aspect-ratio: 4 / 3 !important;
  }
}
/* Reduce the white space between Row 3 and Row 4 */
.about-story-row:nth-child(3) {
  margin-bottom: 40px !important; /* Reduced from 120px. Decrease this number to pull them even closer together. */
}
/* ========================================= */
/* --- FINAL TWEAKS: Spacing & Alignment --- */
/* ========================================= */

/* 1. Completely remove the gap under Row 3 */
.about-story-row:nth-child(3) {
  margin-bottom: 0px !important;
}

/* 2. Remove the awkward indentation so the text aligns perfectly flush left */
.indent-text,
.indent-list {
  margin-left: 0 !important;
}
/* Make the closing CTA text size match the rest of the page */
.about-closing-cta p {
  font-size: 1.15rem !important;
  line-height: 1.8 !important;
}

/* ========================================= */
/* --- Details Page: Process Steps --- */
/* ========================================= */
.process-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 5%;
}

.process-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px auto;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
}

.process-step.reverse {
  flex-direction: row-reverse;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step-image {
  flex: 1;
}

.process-step-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.process-step-text {
  flex: 1.2;
}

.process-step-number {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: #b0a392;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.process-step-text h3 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 20px;
}

.process-step-text p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

@media (max-width: 850px) {
  .process-step,
  .process-step.reverse {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
  }
}

/* ========================================= */
/* --- Details Page: FAQ Accordion --- */
/* ========================================= */
.faq-section {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 5% 100px 5%;
}

.faq-section .section-title {
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #e6e1da;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 25px 0;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: #333;
}

.faq-icon {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.5rem;
  color: #b0a392;
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.98rem;
  color: #555;
  line-height: 1.8;
  padding-bottom: 25px;
}

/* ========================================= */
/* --- Details Page: Pricing Note --- */
/* ========================================= */
.pricing-note-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 5% 100px 5%;
  text-align: center;
}

.pricing-note-section p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}
