/* ===== INNER PAGES CSS ===== */

/* PAGE HERO */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,40,20,0.85) 0%, rgba(20,40,20,0.4) 70%);
}
.page-hero .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ✅ overrides any global centering */
  text-align: left;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ✅ forces children to left */
}
.breadcrumb {
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* ✅ LEFT ALIGNED */
  gap: 10px;
}
.breadcrumb a { color: var(--gold); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 12px;
  text-align: left; /* ✅ LEFT ALIGNED */
}
.page-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  text-align: left; /* ✅ LEFT ALIGNED */
}

/* TWO COL */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.two-col-grid.align-center { align-items: center; }

/* IMG STACK */
.img-stack { position: relative; padding: 30px 30px 0 0; }
.img-stack-main {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-stack-main img { width: 100%; height: 480px; object-fit: cover; }
.img-stack-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 200px; height: 200px;
  border-radius: 8px;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}
.img-stack-accent img { width: 100%; height: 100%; object-fit: cover; }

/* MV SECTION */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mv-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mv-card-featured {
  background: var(--sage);
  color: var(--white);
}
.mv-card-featured h3,
.mv-card-featured p { color: rgba(255,255,255,0.9); }

.mv-icon { font-size: 2rem; margin-bottom: 20px; }
.mv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--sage-dark);
  margin-bottom: 16px;
}
.mv-card p { font-size: 0.93rem; color: var(--bark); line-height: 1.8; }

/* WHY LIST */
.why-list { display: grid; gap: 24px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--linen);
}
.why-num {
  font-family: 'futura', serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  min-width: 44px;
  font-weight: 300;
}
.why-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--sage-dark);
  margin-bottom: 8px;
}
.why-item p { font-size: 0.9rem; color: var(--bark); line-height: 1.7; margin: 0; }

/* GALLERY */
.gallery-strip { overflow: hidden; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 280px;
}
.gallery-item { overflow: hidden; }
.gallery-item.tall { grid-row: span 1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }

/* SERVICES PAGE */
.services-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px;
  border: 1.5px solid var(--linen);
  background: var(--white);
  border-radius: 30px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  color: var(--bark);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.full-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.svc-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.svc-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.svc-card:hover .svc-img img { transform: scale(1.06); }

.svc-label {
  position: absolute;
  top: 16px; left: 16px;
  background: #1b4611;
  color: white;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.svc-body { padding: 28px; }
.svc-body h3 {
  font-size: 1.35rem;
  color: var(--sage-dark);
  margin-bottom: 10px;
}
.svc-body p { font-size: 0.9rem; color: var(--bark); line-height: 1.75; margin-bottom: 20px; }

.svc-pricing {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.price-pill {
  background: var(--linen);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  color: #1b4611;
}
.price-pill strong { font-weight: 600; }

.svc-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1b4611;
  font-weight: 500;
  transition: gap 0.3s;
}
.svc-book:hover { gap: 10px; }

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: 2.2rem;
  color: var(--sage-dark);
  margin-bottom: 16px;
}
.contact-info > p {
  font-size: 0.95rem;
  color: var(--bark);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-items { display: grid; gap: 20px; margin-bottom: 40px; }
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--linen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--sage-dark);
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.9rem;
  color: var(--bark);
  line-height: 1.6;
  margin: 0;
}
.contact-item a { color: var(--sage); }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 44px; height: 44px;
  border: 1.5px solid var(--linen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
  color: var(--bark);
}
.social-link:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
  transform: translateY(-2px);
}

.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 {
  font-size: 1.8rem;
  color: var(--sage-dark);
  margin-bottom: 8px;
}
.contact-form-card > p {
  font-size: 0.9rem;
  color: var(--bark);
  margin-bottom: 30px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.map-embed {
  margin-top: 72px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-embed iframe { display: block; }

/* ===== RESPONSIVE INNER ===== */
@media (max-width: 1024px) {
  .full-services-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 40px; }
  .img-stack-accent { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 200px 200px; }
  .gallery-item:last-child { display: none; }
  .page-hero { height: 320px; }
}
@media (max-width: 600px) {
  .full-services-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
}