:root {
  --dusk: #1C1C1C;
  --robin: #6a8ea8;
  --gold: #984216;
  --sunset: #984216;
  --bubblegum: #984216;
  --cream: #FDFAF7;
  --warm-white: #F6F3EE;
  --charcoal: #1C1C1C;
  --mid: #8D957E;
  --light: #C8BFB8;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--charcoal); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled { background: var(--dusk); padding: 18px 60px; }
.nav-logo {
  text-decoration: none;
  line-height: 1;
}
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-white); text-decoration: none; opacity: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--warm-white);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta::after { display: none !important; }
.nav-cta {
  border: 1px solid rgba(255,255,255,0.5) !important;
  padding: 0 20px !important;
  height: 36px !important;
  border-radius: 2px !important;
  opacity: 1 !important;
  transition: background 0.2s !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em !important;
  line-height: 1 !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.15) !important; }

/* HERO */
.hero {
  position: relative; height: 70vh; min-height: 520px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 70%;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 40%, transparent 70%), linear-gradient(to right, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.08) 40%, transparent 65%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 36px 36px; max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--robin); margin-bottom: 18px;
  opacity: 0; animation: fadeUp 0.9s 0.3s forwards;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 5.5vw, 6rem);
  font-weight: 300; line-height: 1.05; color: var(--warm-white);
  margin-bottom: 22px;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem; font-weight: 400; color: rgba(253,250,247,0.95);
  line-height: 1.55; max-width: 480px; margin-bottom: 44px;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-actions {
  display: flex; gap: 16px; align-items: center;
  opacity: 0; animation: fadeUp 0.9s 0.9s forwards;
}
.btn-primary {
  background: var(--gold); color: #fff;
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 36px; border: none; border-radius: 2px;
  text-decoration: none; cursor: pointer; display: inline-block;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: #7a3210; transform: translateY(-1px); }
.btn-ghost {
  color: rgba(253,250,247,0.75); font-size: 0.76rem; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none; padding: 16px 0;
  border-bottom: 1px solid rgba(253,250,247,0.3); transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--warm-white); border-color: var(--warm-white); }
.hero-award {
  position: absolute; right: 60px; bottom: 60px; z-index: 2; text-align: right;
  opacity: 0; animation: fadeIn 1s 1.1s forwards;
}
.hero-award-social { display: flex; gap: 14px; justify-content: flex-end; margin-top: 14px; }
.hero-award-line { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(253,250,247,0.5); margin-bottom: 4px; }
.hero-award-stars { color: #984216; font-size: 1rem; letter-spacing: 4px; }

/* SHARED SECTION */
section { padding: 120px 60px; }
.section-label { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--robin); margin-bottom: 18px; }
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.8vw, 3.8rem); font-weight: 300; line-height: 1.1; color: var(--charcoal);
}
.section-heading em { font-style: italic; color: var(--dusk); }

/* WOW + AWW */
.wow-aww {
  background: var(--warm-white);
  padding: 60px 60px 80px;
  max-width: 100%;
}
.wow-aww-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.wow-aww-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.wow-aww-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--mid);
  line-height: 1.4;
  max-width: 620px;
  margin: 0 auto 48px;
}
.wow-aww-cred {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 18px 36px;
  border: 1px solid rgba(29,58,69,0.15);
  border-radius: 2px;
}
.wow-aww-cred-item {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dusk);
}
.wow-aww-cred-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bubblegum);
  flex-shrink: 0;
}

/* PORTFOLIO PREVIEW */
.portfolio { background: var(--charcoal); padding: 0; position: relative; }
.portfolio .section-label { color: var(--robin); }
.portfolio .section-heading { color: var(--warm-white); }
.portfolio-intro { font-size: 1rem; font-weight: 300; color: rgba(253,250,247,0.6); line-height: 1.7; margin-top: 20px; max-width: 560px; }
.portfolio-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 300px;
  gap: 6px;
}
.pg { border-radius: 2px; overflow: hidden; background: #2a2a2a; cursor: pointer; position: relative; transition: transform 0.3s; }
.pg:hover { transform: scale(1.01); }
.pg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.3s; }
.pg-1 { grid-column: 1/3; grid-row: 1/2; }
.pg-2 { grid-column: 3/5; grid-row: 1/2; }
.pg-3 { grid-column: 5/8; grid-row: 1/2; }
.pg-4 { grid-column: 8/11; grid-row: 1/2; }
.pg-5 { grid-column: 11/13; grid-row: 1/2; }
.portfolio-cta { margin-top: 48px; display: flex; align-items: center; gap: 32px; }
.portfolio-cta p { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(253,250,247,0.4); }

/* WHAT TO EXPECT */
.expect { background: var(--charcoal); padding-top: 90px; padding-bottom: 90px; margin-bottom: -2px; }
.expect-timeline { display: none; }
.expect .section-label { color: var(--robin); }
.expect .section-heading { color: var(--warm-white); }
.expect .section-heading em { color: var(--robin); }
.expect-layout {
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 0 80px;
  align-items: start;
}
.expect-left {}
.expect-intro {
  font-size: 0.97rem; font-weight: 300; color: rgba(253,250,247,0.55);
  line-height: 1.85; margin-top: 28px;
}
.expect-intro strong { color: rgba(253,250,247,0.9); font-weight: 500; }
.expect-right { margin-left: -20px; }
.expect-process-label {
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--robin); margin-bottom: 36px;
}
@media (max-width: 767px) {
  .expect-process-label { display: none; }
}
.expect-steps {
  display: flex;
  flex-direction: column;
}
.expect-step {
  display: flex;
  gap: 0;
  padding-bottom: 44px;
  position: relative;
}
.expect-step:last-child { padding-bottom: 0; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300;
  color: var(--robin);
  line-height: 1;
  text-align: right;
  padding-right: 16px;
  padding-top: 2px;
  width: 48px;
  flex-shrink: 0;
}
.step-rail-seg {
  width: 1px;
  background: rgba(255,255,255,0.08);
  position: relative;
  flex-shrink: 0;
}
.step-rail-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bubblegum);
  position: absolute;
  left: -4px;
  top: 6px;
}
.step-content { padding-left: 28px; }
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--warm-white);
  margin-bottom: 12px; line-height: 1.2;
}
.step-body { font-size: 0.97rem; font-weight: 300; color: rgba(253,250,247,0.48); line-height: 1.85; }
@media (max-width: 767px) {
  .expect-layout { grid-template-columns: 1fr; gap: 32px; }
  .expect-steps { display: none !important; }
  .expect-timeline { display: flex !important; }
}

/* PACKAGES */
.packages { background: var(--cream); padding-top: 90px; padding-bottom: 90px; }
.packages-grid { margin-top: 60px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: start; }

.pkg-perk-highlight { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 3px; padding: 18px 20px; margin-bottom: 24px; text-align: center; }
.pkg-perk-highlight .pkg-perk-label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--robin); margin-bottom: 14px; }
.pkg-perk-list { list-style: none; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.pkg-perk-list li { font-size: 0.88rem; font-weight: 300; color: var(--warm-white); line-height: 1.5; }

/* DEAL BANNER */
.deal-banner { background: #E4D6C5; padding: 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.deal-banner-mobile-inner { display: none; }
.deal-banner-mobile-perks { display: none; }
.deal-perks-desktop { display: flex; gap: 28px; margin-top: 24px; }
.deal-perk-desktop { display: flex; align-items: center; gap: 9px; }
.deal-perk-desktop-text { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(28,28,28,0.7); }
.deal-eyebrow { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.deal-headline { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: var(--charcoal); line-height: 1.15; }
.deal-sub { font-size: 0.9rem; font-weight: 300; color: rgba(28,28,28,0.75); margin-top: 10px; }
.deal-btn { background: var(--charcoal); color: #fff; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 18px 44px; border-radius: 2px; text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: opacity 0.2s; font-weight: 500; margin-right: 60px; }
.deal-btn:hover { opacity: 0.9; }

/* ABOUT */
.about { background: var(--warm-white); padding-top: 90px; padding-bottom: 90px; text-align: center; }
.about-intro { font-size: 1rem; font-weight: 300; color: var(--mid); line-height: 1.85; max-width: 780px; margin: 20px auto 0; }

.mobile-photo-strip { display: none; }
.mobile-photo-strip div { cursor: pointer; }
/* LIGHTBOX */
.strip-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
}
@media (min-width: 768px) { .strip-lightbox { display: none !important; } }
.strip-lightbox.open { display: flex; }
.strip-lightbox img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain; border-radius: 2px;
  display: block;
}
.strip-lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: white; font-size: 2rem; line-height: 1;
  background: none; border: none; cursor: pointer;
  opacity: 0.7;
}
.strip-lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: white; font-size: 2rem; line-height: 1;
  background: none; border: none; cursor: pointer;
  opacity: 0.7; padding: 16px;
}
.strip-lightbox-prev { left: 8px; }
.strip-lightbox-next { right: 8px; }
.faq { background: var(--cream); padding-top: 48px; padding-bottom: 95px; text-align: center; padding-left: 60px; padding-right: 60px; }
.faq-list { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; max-width: 100%; text-align: left; }
.faq-item { border-bottom: 1px solid #E0D9D2; }
.faq-q {
  width: 100%; background: none; border: none; padding: 22px 0;
  text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--charcoal);
}
.faq-q:hover { color: var(--dusk); }
.faq-icon { font-size: 1.2rem; color: var(--robin); transition: transform 0.3s; flex-shrink: 0; margin-left: 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 22px; font-size: 0.95rem; font-weight: 300; color: var(--mid); line-height: 1.8; }
.faq-item.open .faq-a { display: block; }
.faq-more { margin-top: 44px; grid-column: 1 / -1; }
.faq-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--dusk);
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.faq-more-btn:hover { background: var(--dusk); }
.faq-more-btn-text {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dusk);
  font-family: 'DM Sans', sans-serif;
  transition: color 0.2s;
}
.faq-more-btn-arrow {
  font-size: 0.85rem;
  color: var(--robin);
  transition: transform 0.2s;
}
.faq-more-btn:hover .faq-more-btn-text { color: var(--warm-white); }
.faq-more-btn:hover .faq-more-btn-arrow { transform: translateX(3px); }

.reviews { background: var(--dusk); padding: 60px 60px 40px; }
.reviews .section-label { color: var(--robin); margin-top: 10px; display: block; }
.reviews .section-heading { color: var(--warm-white); }
.reviews .section-heading em { color: var(--warm-white); }
.reviews-desktop-heading { display: block; }
.reviews-mobile-heading { display: none; }
.reviews-grid { margin-top: 40px; }
.review-carousel-mobile { text-align: center; padding: 0 20px 0; }
.review-carousel { position: relative; text-align: center; padding: 0 80px 0; }
.review-carousel-track { overflow: hidden; }
.review-carousel-slide { display: none; }
.review-carousel-slide.active { display: block; }
.review-carousel-arrows { display: flex; justify-content: center; align-items: center; gap: 32px; margin-top: 24px; }
.review-carousel-arrow { background: none; border: none; color: rgba(253,250,247,0.45); width: 40px; height: 40px; cursor: pointer; font-size: 1.4rem; transition: color 0.2s; display: flex; align-items: center; justify-content: center; }
.review-carousel-arrow:hover { color: var(--robin); }
.review-carousel-dots { display: none; }
.review-hero-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.55rem, 2.3vw, 2.3rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 28px;
}
.review-hero-text strong { font-style: normal; font-weight: 400; color: var(--robin); }
.review-hero-author { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(253,250,247,0.45); }
.review-hero-stars { color: #D4A017; font-size: 1rem; letter-spacing: 4px; margin-bottom: 24px; }
.review-sub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 0; }
.review-card { background: transparent; border: none; border-right: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.1); padding: 36px 40px; transition: background 0.3s; }
.review-card:nth-child(2) { border-right: none; }
.review-card:hover { background: rgba(255,255,255,0.04); }
.review-stars { color: var(--robin); font-size: 0.85rem; letter-spacing: 4px; margin-bottom: 18px; }
.review-text { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 300; color: rgba(253,250,247,0.95); line-height: 1.75; margin-bottom: 22px; }
.review-text strong { font-weight: 500; color: #fff; }
.review-author { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(253,250,247,0.5); }
.reviews-cta { margin-top: 24px; margin-bottom: 24px; text-align: center; padding-bottom: 0; }
.reviews-cta a { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--warm-white); text-decoration: none; border-bottom: 1px solid rgba(253,250,247,0.4); padding-bottom: 3px; transition: border-color 0.2s; }
.reviews-cta a:hover { border-color: var(--warm-white); }
.knot-row { margin-top: 44px; text-align: center; }
@media (min-width: 768px) { .knot-row { display: none !important; } }
.knot-row p { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(253,250,247,0.38); margin-bottom: 12px; }
.knot-badge { display: inline-flex; align-items: center; gap: 10px; padding: 12px 28px; border: 1px solid rgba(255,255,255,0.14); border-radius: 30px; font-size: 0.76rem; color: rgba(253,250,247,0.65); letter-spacing: 0.08em; }
.knot-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--bubblegum); flex-shrink: 0; }

/* CTA / CONTACT */
.contact-cta { background: var(--charcoal); padding: 0; overflow: hidden; }
.contact-cta .section-heading { color: var(--warm-white); font-size: clamp(2.8rem, 5vw, 5rem); }
.contact-cta .section-heading em { color: var(--robin); }
.contact-sub-line { font-size: 0.85em; display: block; margin-top: 8px; }
.contact-mobile-label { display: none; }
.contact-mobile-divider { display: none; }
.cta-sub { font-size: 1rem; font-weight: 300; color: rgba(253,250,247,0.95); line-height: 1.7; margin-top: 20px; max-width: 500px; }
.cta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; min-height: 800px; }
.cta-form-col { padding: 60px 52px 80px; display: flex; flex-direction: column; justify-content: flex-start; min-width: 0; overflow: hidden; }
.hb-p-5ddd52d6544f84023a5d5cc4-5 { max-width: 100% !important; width: 100% !important; }
.cta-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(4, 1fr); gap: 0; align-self: stretch; }
.cta-photo-grid-item { overflow: hidden; background: #2a2a2a; }
.cta-photo-grid-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(253,250,247,0.45); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px; padding: 13px 15px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 300; color: var(--warm-white); outline: none; transition: border-color 0.2s;
  appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(253,250,247,0.25); }
.form-group select option { background: var(--charcoal); color: var(--warm-white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--robin); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { background: var(--gold); color: var(--dusk) !important; color: var(--warm-white); font-family: 'DM Sans', sans-serif; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 17px 40px; border: none; border-radius: 2px; cursor: pointer; align-self: flex-start; transition: background 0.25s, transform 0.2s; }
.form-submit:hover { background: #7a3210; transform: translateY(-1px); }
.contact-details { padding-top: 8px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-detail-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(253,250,247,0.4); margin-bottom: 4px; }
.contact-detail-val { font-size: 0.92rem; font-weight: 300; color: rgba(253,250,247,0.72); line-height: 1.55; }

/* FOOTER */
footer { background: var(--dusk); padding: 72px 60px 48px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
/* Col 1: Brand */
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 300; letter-spacing: 0.18em; color: var(--warm-white); margin-bottom: 20px; line-height: 1; }
.footer-logo em { font-style: italic; text-transform: none; letter-spacing: 0.1em; }
.footer-contact-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.footer-contact-link { font-size: 0.8rem; font-weight: 300; color: rgba(253,250,247,0.5); text-decoration: none; transition: color 0.2s; letter-spacing: 0.03em; }
.footer-contact-link:hover { color: var(--robin); }
.footer-social { display: flex; gap: 18px; align-items: center; }
.footer-social-icon { color: rgba(253,250,247,0.35); text-decoration: none; display: flex; align-items: center; justify-content: center; transition: color 0.2s, transform 0.2s; }
.footer-social-icon:hover { color: var(--robin); transform: scale(1.15); }
/* Col 2 + 3: Nav split into two columns */
.footer-nav-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(253,250,247,0.3); margin-bottom: 18px; }
.footer-nav-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav-links a { font-size: 0.82rem; font-weight: 300; color: rgba(253,250,247,0.55); text-decoration: none; transition: color 0.2s; }
.footer-nav-links a:hover { color: var(--robin); }
/* Col 4: Where We Shoot */
.footer-service-area { font-size: 0.82rem; font-weight: 300; color: rgba(253,250,247,0.45); line-height: 1.85; }
.footer-service-area strong { color: rgba(253,250,247,0.6); font-weight: 400; display: block; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 12px; }
/* Bottom bar */
.footer-bottom { display: flex; flex-direction: column; align-items: center; padding-top: 0; gap: 0; }
.footer-bottom-row { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.footer-copy { font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(253,250,247,0.22); text-align: left; width: 100%; }
.footer-anchor { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-style: italic; color: var(--robin); }
.footer-knot-badges { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 16px; flex-wrap: wrap; }
.footer-knot-badges .knot-badge-img { height: 52px; }

/* HERO SOCIAL ICONS */
.hero-social { display: none; }
.hero-social-link {
  color: rgba(253,250,247,0.55);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
}
.hero-social-link:hover { color: var(--warm-white); transform: scale(1.15); }

/* FOOTER SOCIAL ICONS */
.footer-mobile-social {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
}
.footer-social-link {
  color: rgba(253,250,247,0.4);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.footer-social-link:active { color: var(--robin); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-mobile-social { display: none !important; }
  section { padding: 80px 24px; }
  .hero-award { display: none; }
  .wow-aww, .cta-layout { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .pg-1 { grid-column: 1/3; grid-row: auto; height: 260px; }
  .pg-2, .pg-3, .pg-4, .pg-5 { grid-column: span 1; height: 200px; }
  .packages-grid, 
  .deal-banner { flex-direction: column; padding: 48px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .portfolio { padding: 0; }
  .reviews { padding: 80px 24px; }
  .contact-cta { padding: 0; }
}

.photo-strip {
  display: flex;
  width: 100%;
  height: 280px;
}
.photo-strip .sp {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.photo-strip .sp::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  pointer-events: none;
}
.photo-strip .sp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {

  /* NAV */
  nav { padding: 18px 20px !important; }
  nav.scrolled { padding: 14px 20px !important; }
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; margin-left: auto; }
  .hero-mobile-social { display: flex !important; position: absolute !important; bottom: 16px !important; left: 20px !important; gap: 14px !important; }

  /* HERO */
  .hero { height: 72vh !important; min-height: 480px !important; align-items: stretch !important; }
  .hero-img img { object-position: center 30% !important; }
  .hero-content { padding: 58px 20px 0 !important; display: flex !important; flex-direction: column !important; justify-content: flex-start !important; align-self: stretch !important; }
  .hero-eyebrow { display: none !important; }
  #hero-eyebrow { display: none !important; }
  .hero-headline { font-size: 2.6rem !important; line-height: 1.05 !important; margin-bottom: 10px !important; }
  .hero-sub { font-size: 0.95rem !important; margin-bottom: 0 !important; max-width: 100% !important; white-space: nowrap !important; }
  .hero-actions { display: grid !important; grid-template-columns: 1fr !important; gap: 10px !important; width: 160px !important; margin-top: auto !important; margin-bottom: -12px !important; }
  .hero-actions .btn-primary { text-align: center !important; }
  .hero-actions .btn-ghost { text-align: center !important; border-bottom: none !important; padding: 10px 0 !important; position: relative !important; }
  .hero-actions .btn-ghost::after { content: '' !important; position: absolute !important; bottom: 4px !important; left: 50% !important; transform: translateX(-50%) !important; width: 60% !important; height: 1px !important; background: rgba(253,250,247,0.3) !important; }
  .btn-primary {
    padding: 12px 18px !important;
    font-size: 0.65rem !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
  .btn-ghost {
    font-size: 0.65rem !important;
    padding: 12px 0 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
  .hero-award { display: none !important; }
  .hero-social { display: none !important; }

  /* PHOTO STRIP */
  .photo-strip { height: 160px !important; }
  .sp-desktop-only { display: none !important; }
  .faq-list { grid-template-columns: 1fr !important; gap: 0 !important; }
  .faq { text-align: left !important; }
  .faq-more { text-align: center; }

  /* SECTIONS */
  section { padding: 60px 20px !important; }
  .wow-aww { grid-template-columns: 1fr !important; gap: 36px !important; }
  .portfolio { padding: 36px 0 0 !important; }
  .reviews { padding: 60px 20px !important; }
  .contact-cta { padding: 0 !important; }
  .packages-grid { display: none !important; }
  .packages-grid + 
  
  
  
  /* TEAM — MOBILE SCROLL (mirrors Featured Weddings) */
  
  

  
  
  
  
  
  
  
  
  
  /* Ryan's face sits a touch lower in the crop */
  
  
  
  
  
  

  /* MOBILE PACKAGE TABS */
  
  
  
  
  
  
  
  /* Featured panel gets the green treatment */
  
  .review-hero { display: none !important; }
  .review-sub-grid { display: none !important; }
  /* REVIEWS — MOBILE REDESIGN */
  .review-card-mobile {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .review-card-mobile:first-child { border-top: none; }
  .reviews-mobile-heading { display: block !important; color: var(--warm-white); margin-bottom: 32px; text-align: center; }
  .reviews-desktop-heading { display: none !important; }
  .reviews-mobile-heading em { color: var(--warm-white); }
  .review-carousel-mobile .review-hero-text { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 400; }
  .review-carousel-track { min-height: 220px; position: relative; }
  .review-carousel-slide { position: absolute; top: 0; left: 0; width: 100%; }
  .review-carousel-slide.active { position: relative; }
  .about .section-heading { font-size: clamp(1.9rem, 7vw, 2.4rem); }

  .review-card-mobile-stars {
    color: var(--robin);
    font-size: 0.78rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
  }

  .review-card-mobile-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    font-style: normal;
    color: rgba(253,250,247,0.88);
    line-height: 1.75;
    margin-bottom: 16px;
  }
  .review-card-mobile-text strong {
    font-style: normal;
    font-weight: 400;
    color: var(--robin);
  }

  .review-card-mobile-footer {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .review-card-mobile-dot { display: none; }
  .review-card-mobile-author {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253,250,247,0.38);
  }

  /* More Reviews Button — mobile */
  .reviews-more-btn-wrap {
    margin-top: 28px;
    text-align: center;
  }
  .reviews-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border: 1px solid rgba(253,250,247,0.2);
    border-radius: 3px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253,250,247,0.7);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    font-family: 'DM Sans', sans-serif;
  }
  .reviews-more-btn:hover {
    border-color: var(--robin);
    color: var(--warm-white);
    background: rgba(240,142,127,0.08);
  }
  .reviews-more-btn-arrow {
    font-size: 0.9rem;
    color: var(--robin);
    transition: transform 0.2s;
  }
  .reviews-more-btn:hover .reviews-more-btn-arrow {
    transform: translateX(3px);
  }

  /* Hide desktop reviews CTA on mobile — replaced by carousel link */
  .reviews-cta { display: block !important; }

  /* KNOT BADGES — MOBILE */
  .knot-row { display: none !important; }

  /* WHAT TO EXPECT — TIMELINE STRIP */
  section.expect { padding: 52px 24px 60px !important; }
  .expect-intro { padding: 0 !important; font-size: 0.92rem !important; line-height: 1.75 !important; }
  .expect-steps { display: none !important; }
  .expect-timeline { display: flex !important; }

  /* Timeline strip styles */
  .expect-timeline {
    display: none;
    flex-direction: column;
    position: relative;
    padding-left: 52px;
  }
  .expect-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(255,255,255,0.12);
  }
  .expect-tl-step {
    position: relative;
    padding-bottom: 36px;
  }
  .expect-tl-step:last-child { padding-bottom: 0; }
  .expect-tl-dot {
    position: absolute;
    left: -44px;
    top: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--robin);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--warm-white);
    flex-shrink: 0;
    z-index: 1;
  }
  .expect-tl-label {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--robin);
    margin-bottom: 28px;
  }
  .expect-tl-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--warm-white);
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .expect-tl-body {
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(253,250,247,0.52);
    line-height: 1.75;
  }
  .cta-layout { grid-template-columns: 1fr !important; gap: 0 !important; }
  .mobile-photo-strip { display: grid !important; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 0; }
  .cta-photo-grid { display: none !important; }
  .cta-form-col { padding: 11px 20px 36px !important; }
  .contact-mobile-label { display: block !important; text-align: left; color: var(--warm-white) !important; margin-top: 0; margin-bottom: 12px; }
  .contact-mobile-divider { display: flex !important; justify-content: center; gap: 6px; margin: 24px 0 16px; align-items: center; }
  .contact-mobile-divider::before { content: "· · ·"; color: var(--robin); font-size: 1.2rem; letter-spacing: 6px; }
  /* DEAL BANNER — MOBILE REDESIGN */
  .deal-banner {
    flex-direction: column !important;
    padding: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    align-items: stretch !important;
    gap: 0 !important;
  }
  .deal-banner-mobile-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 52px 28px 40px;
    position: relative;
    z-index: 1;
  }
  .deal-banner-mobile-inner .deal-eyebrow {
    font-size: 0.58rem !important;
    letter-spacing: 0.28em !important;
    margin-bottom: 16px !important;
    color: rgba(255,255,255,0.6) !important;
  }
  .deal-banner-mobile-inner .deal-headline {
    font-size: 2.4rem !important;
    line-height: 1.1 !important;
    margin-bottom: 14px !important;
    color: #fff !important;
  }
  .deal-banner-mobile-inner .deal-sub {
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
    color: rgba(255,255,255,0.78) !important;
    max-width: 300px !important;
    margin: 0 auto 32px !important;
  }
  .deal-banner-mobile-inner .deal-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 18px 24px !important;
    margin: 0 !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.18em !important;
    border-radius: 2px !important;
  }
  .deal-banner-mobile-perks {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .deal-banner-mobile-perk {
    flex: 1;
    padding: 20px 12px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .deal-banner-mobile-perk:last-child { border-right: none; }
  .deal-perk-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }
  .deal-perk-text {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
  }
  /* Hide desktop layout children on mobile, show mobile wrapper */
  .deal-banner > div:not(.deal-banner-mobile-inner):not(.deal-banner-mobile-perks) { display: none !important; }
  .deal-banner > a.deal-btn { display: none !important; }
  .deal-banner-mobile-inner,
  .deal-banner-mobile-perks { display: flex; }

  /* FOOTER — MOBILE REDESIGN */
  footer { padding: 0 !important; background: var(--dusk) !important; }
  .footer-top { display: none !important; }
  .footer-bottom { display: none !important; }

  .footer-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--dusk);
  }

  /* Top band: logo + tagline */
  .footer-mobile-brand {
    padding: 52px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .footer-mobile-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    color: var(--warm-white);
    line-height: 1;
  }
  .footer-mobile-logo em {
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.12em;
  }
  .footer-mobile-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
  }
  .footer-mobile-contact-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(253,250,247,0.55);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .footer-mobile-contact-link:active { color: var(--robin); }
  .footer-mobile-contact-sep {
    width: 1px;
    height: 14px;
    background: rgba(253,250,247,0.2);
    flex-shrink: 0;
  }
  /* Nav links: 2-column grid */
  .footer-mobile-nav {
    padding: 36px 28px 32px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .footer-mobile-nav-label {
    font-size: 0.58rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(253,250,247,0.25);
    margin-bottom: 20px;
  }
  .footer-mobile-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    list-style: none;
  }
  .footer-mobile-nav-grid li a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(253,250,247,0.6);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-mobile-nav-grid li a:active { color: var(--robin); }

  /* Service area */
  .footer-mobile-area {
    padding: 28px 28px 32px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .footer-mobile-area-label {
    font-size: 0.58rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(253,250,247,0.25);
    margin-bottom: 10px;
  }
  .footer-mobile-area-text {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(253,250,247,0.38);
    line-height: 1.8;
  }

  /* Bottom: tagline + copyright */
  .footer-mobile-bottom {
    padding: 28px 28px 36px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .footer-mobile-anchor {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-style: italic;
    color: var(--robin);
  }
  .footer-mobile-copy {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(253,250,247,0.18);
  }

  /* PORTFOLIO GRID */
  .portfolio-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
  }
  .pg-1 { grid-column: 1/3 !important; height: 240px !important; }
  .pg-2, .pg-3, .pg-4, .pg-5 { grid-column: span 1 !important; height: 180px !important; }

  /* TYPOGRAPHY */
  h1 { font-size: clamp(2.2rem, 8vw, 3rem) !important; }
  h2 { font-size: clamp(2rem, 7.5vw, 2.8rem) !important; }

  /* CONTACT — MOBILE */
  .contact-cta { padding: 0 !important; }
  .contact-cta .section-heading {
    font-size: clamp(1.9rem, 7.5vw, 2.6rem) !important;
    line-height: 1.25 !important;
    text-align: left !important;
  }
  .contact-cta .section-heading br { display: block; content: ''; margin-bottom: 6px; }
  .cta-sub {
    font-size: 0.92rem !important;
    line-height: 1.72 !important;
    margin-top: 16px !important;
    max-width: 100% !important;
    text-align: left !important;
  }
  .cta-layout { margin-top: 28px !important; }
}

.portfolio-carousel-wrap { position:relative; width:100%; overflow:hidden; background:var(--charcoal); }
.carousel-track { display:flex; align-items:center; gap:0; transition:transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94); will-change:transform; touch-action: none; }
.carousel-slide { flex:0 0 auto; padding:0; }
.carousel-slide img { height:70vh; width:auto; max-height:70vh; object-fit:contain; display:block; border-radius:0; color:transparent; background:var(--charcoal); }
.carousel-btn { position:absolute; top:50%; transform:translateY(-50%); z-index:10; background:rgba(28,28,28,0.65); border:none; color:#FDFAF7; width:52px; height:52px; border-radius:50%; font-size:1.2rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background 0.2s; backdrop-filter:blur(4px); }
.carousel-btn:hover { background:rgba(28,28,28,0.9); }
.carousel-btn-prev { left:20px; }
.carousel-btn-next { right:20px; }
.carousel-dots { display:flex; justify-content:center; gap:6px; padding:18px 0 18px; background:var(--charcoal); }
.carousel-dot { width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,0.18); cursor:pointer; transition:background 0.2s,transform 0.2s; }
.carousel-dot.active { background:var(--robin); transform:scale(1.3); }
.portfolio-cta { background:var(--charcoal); padding:0 60px 60px; display:flex; align-items:center; gap:32px; }
.portfolio-cta p { font-size:0.8rem; letter-spacing:0.12em; text-transform:uppercase; color:rgba(253,250,247,0.4); }
@media(max-width:767px){
  .carousel-slide{flex:0 0 auto;} .carousel-slide img{height:65vw;width:auto;}
  .carousel-btn{display:none;}
  .portfolio-cta{padding:0 20px 48px;flex-direction:column;align-items:flex-start;gap:16px;}
}

/* fw-grid mobile handled in unified block */

/* FEATURED WEDDINGS — MOBILE SCROLL */

@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* CANDID SECTION */

@media (max-width: 767px) {
  
  
  
  
  
  
}

/* PORTFOLIO STRADDLING TAB */
.portfolio-tab-wrap {
  position: relative;
  height: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
}
.portfolio-tab {
  position: absolute;
  top: -18px;
  opacity: 0;
  animation: fadeIn 0.3s 0.5s forwards;
  background: var(--bubblegum);
  color: #FDFAF7;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(152,66,22,0.4);
}

@media (max-width: 767px) {
  .wow-aww { padding: 48px 24px 48px !important; }
  .wow-aww-inner { max-width: 100% !important; }
  .wow-aww-heading { font-size: 2.2rem !important; }
  .wow-aww-body { font-size: 1.25rem !important; }

  .wow-aww-cred {
    flex-direction: column !important;
    gap: 12px !important;
    padding: 16px 20px !important;
    text-align: center !important;
  }
  .wow-aww-cred-dot { display: none !important; }
  .wow-aww-cred-item { font-size: 0.68rem !important; letter-spacing: 0.1em !important; }

  .portfolio-tab-wrap { display: flex; justify-content: center; }
  .portfolio-tab {
    font-size: 0.6rem !important;
    padding: 7px 18px !important;
    letter-spacing: 0.2em !important;
  }

  .carousel-dots { flex-wrap: wrap !important; gap: 4px !important; padding: 10px 20px 25px !important; }
  .carousel-dot { width: 5px !important; height: 5px !important; }
}

@media (max-width: 767px) {
  .portfolio-carousel-wrap {
    margin-left: -24px !important;
    margin-right: -24px !important;
    width: calc(100% + 48px) !important;
  }
}

.knot-badges-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}
.knot-badge-img {
  height: 75px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.knot-badge-img:hover { opacity: 1; }

/* PRE-PACKAGES STRIP */
.packages-duo {
  display: flex;
  width: 100%;
  height: 280px;
  font-size: 0;
  line-height: 0;
  background: var(--charcoal);
  margin-bottom: -2px;
}
.packages-duo-cell {
  flex: 1;
  overflow: hidden;
  background: #2a2a2a;
}
.packages-duo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.packages-duo-cell picture {
  display: block;
  width: 100%;
  height: 100%;
}
.packages-duo-cell.mobile-hide { display: flex; }
@media (max-width: 767px) {
  .packages-duo { height: auto; }
  .packages-duo-cell { aspect-ratio: 2/3; }
  .packages-duo-cell.mobile-hide { display: none; }
}

/* REVIEWS PHOTO STRIP */
.reviews-photo-strip {
  display: flex;
  width: 100%;
  height: 280px;
  margin-top: -1px;
}
.rps-cell {
  flex: 1;
  overflow: hidden;
  background: #2a2a2a;
  position: relative;
}
.rps-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .reviews-photo-strip { display: none !important; }
}

/* HAMBURGER + MOBILE MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--warm-white);
  transition: transform 0.3s, opacity 0.3s;
}
.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); }
@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-menu.open { display: flex; animation: menuFadeIn 0.3s ease forwards; }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--warm-white);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.mobile-menu-close:hover { opacity: 1; }
.mobile-menu-links { list-style: none; text-align: center; }
.mobile-menu-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-menu-links a {
  display: block;
  padding: 14px 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--warm-white);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu-links a:active { color: var(--robin); }
.mobile-menu-cta {
  margin-top: 32px;
  text-decoration: none;
  background: var(--gold); color: var(--dusk) !important;
  color: var(--warm-white) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  padding: 16px 40px !important;
  border-radius: 2px;
}
.mobile-menu-social {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  align-items: center;
  justify-content: center;
}
.mobile-menu-social a {
  color: rgba(253,250,247,0.45);
  text-decoration: none;
  display: flex;
  transition: color 0.2s;
}
.mobile-menu-social a:active { color: var(--robin); }
.hero-mobile-social { display: none !important; }

/* EXTENDED FAMILIES */
.extended-families { background: var(--charcoal); padding: 0; }
.extended-split {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 700px;
}
.extended-text {
  padding: 80px 56px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.extended-families .section-label { color: var(--robin); }
.extended-families .section-heading { color: var(--warm-white); margin-bottom: 28px; }
.extended-families .section-heading em { color: var(--robin); }
.extended-body p {
  font-size: 0.97rem; font-weight: 300; color: rgba(253,250,247,0.92);
  line-height: 1.85; margin-bottom: 16px;
}
.extended-cta { display: inline-block !important; margin-top: 28px; width: fit-content !important; align-self: flex-start !important; }
.extended-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-content: start;
}
.em-cell { overflow: hidden; background: #2a2a2a; aspect-ratio: 1/1; }
.em-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.em-cell:hover img { transform: scale(1.03); }

/* FAMILY SESSIONS */
.family-sessions { background: var(--warm-white); padding: 0; }
.family-split {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 700px;
}
.family-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-content: start;
}
.fm-cell { overflow: hidden; background: #2a2a2a; aspect-ratio: 1/1; }
.fm-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.fm-cell:hover img { transform: scale(1.03); }
.family-text {
  padding: 56px 60px 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.family-sessions .section-label { color: var(--robin); }
.family-sessions .section-heading { color: var(--charcoal); margin-bottom: 28px; }
.family-sessions-body p {
  font-size: 0.97rem; font-weight: 300; color: var(--charcoal);
  line-height: 1.85; margin-bottom: 16px;
}
.family-sessions-byline {
  font-size: 0.65rem; letter-spacing: 0.12em;
  color: var(--robin); margin-top: 8px; font-style: normal;
  font-family: 'DM Sans', sans-serif;
}
.family-cta { display: inline-block !important; margin-top: 28px; width: fit-content !important; align-self: flex-start !important; }
@media (max-width: 767px) {
  .family-split { grid-template-columns: 1fr; }
  .family-mosaic { grid-template-columns: 1fr 1fr; }
  .family-text { padding: 60px 20px; }
}

@media (max-width: 767px) {
  .extended-families { padding: 60px 20px; }
  .extended-holly-note { padding: 24px 20px; }
  .extended-holly-note p { font-size: 1.1rem; }
  .family-sessions { padding: 60px 20px; }
  .family-sessions-inner { max-width: 100%; }
}

@media (max-width: 767px) {
  .extended-text { padding: 60px 20px 40px; }
  .extended-row { flex-wrap: wrap; }
  .er-cell { flex: 0 0 33.333%; }
}
/* HOLLY NOTE SECTION */
.holly-note-section {
  background: #E4D6C5;
  padding: 60px 60px;
  text-align: center;
}
.holly-note-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 48px; font-family: 'DM Sans', sans-serif;
}
.holly-note-body {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 300;
  color: #1C1C1C;
  line-height: 1.85;
  max-width: 920px;
  margin: 0 auto;
}
.holly-note-body p { margin-bottom: 28px; }
.holly-note-body p:last-child { margin-bottom: 0; }
.holly-note-divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 36px auto;
}
.holly-note-byline {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(28,28,28,0.4); font-family: 'DM Sans', sans-serif;
  margin-top: 36px;
}
@media (max-width: 767px) {
  .holly-note-section { padding: 60px 20px; }
  .holly-note-body { font-size: 1.3rem; }
}

/* INVESTMENT SECTION */
.packages { background: var(--warm-white); padding: 100px 60px; }
.investment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.investment-text .section-label { color: var(--robin); }
.investment-text .section-heading { color: var(--charcoal); margin-bottom: 28px; }
.investment-body {
  font-size: 1rem; font-weight: 300; color: var(--charcoal);
  line-height: 1.85; margin-bottom: 20px;
}
.investment-cta { margin-top: 12px; width: fit-content; }
.investment-details { display: flex; flex-direction: column; gap: 40px; padding-top: 8px; }
.investment-item-label {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-family: 'DM Sans', sans-serif;
}
.investment-list { list-style: none; padding: 0; margin: 0; }
.investment-list li {
  font-size: 0.95rem; font-weight: 300; color: var(--charcoal);
  line-height: 1.7; padding: 8px 0;
  border-bottom: 0.5px solid rgba(28,28,28,0.12);
}
.investment-list li:last-child { border-bottom: none; }
.investment-list li::before { content: "—"; color: var(--gold); margin-right: 10px; }
@media (max-width: 767px) {
  .packages { padding: 60px 20px; }
  .investment-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ABOUT */
.about { padding: 0 !important; }
.about-hero { width: 100%; height: 75vh; min-height: 480px; overflow: hidden; }
.about-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 70%; display: block; }
.about-content { background: var(--warm-white); padding: 52px 60px; }
.about-header { margin-bottom: 48px; }
.about-content .section-label { color: var(--robin); }
.about-content .section-heading { color: var(--charcoal); }
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.about-col p {
  font-size: 0.97rem; font-weight: 300; color: var(--charcoal);
  line-height: 1.85; margin-bottom: 20px; text-align: left;
}
.about-col p:last-child { margin-bottom: 0; }
@media (max-width: 767px) {
  .about-hero { height: 60vw; min-height: 280px; }
  .about-content { padding: 60px 20px; }
  .about-cols { grid-template-columns: 1fr; gap: 0; }
}

.extended-row { display: flex; width: 100%; }
.er-cell { flex: 1; overflow: hidden; position: relative; aspect-ratio: 1/1; background: #2a2a2a; }
.er-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Extended CTA centered below two columns */
.extended-full .extended-cta-wrap { text-align: center; padding: 0 60px 40px; }

/* Constrain extended families text width */

/* Extended CTA back inside text, centered */
.extended-full .extended-text { display: flex; flex-direction: column; align-items: center; }
.extended-full .extended-body { width: 100%; }

.extended-full .extended-cta { margin-bottom: 42px !important; }

.fm-cell:nth-child(5) img { object-position: 30% center; }

.fm-cell:nth-child(6) img { object-position: 40% 25%; transform: scale(1.15); transform-origin: 40% 25%; }

.extended-families .section-heading { margin-bottom: 36px !important; margin-top: 12px !important; }

/* packages-duo image adjustments */
.packages-duo-cell:nth-child(3) img { object-position: center 90%; }
.packages-duo-cell:nth-child(4) img { object-position: 100% center; }

/* ABOUT CAROUSEL */
.about-carousel-wrap { position: relative; width: 100%; overflow: hidden; background: var(--charcoal); height: 280px; }
.about-carousel-track { display: flex; height: 100%; transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }
.about-carousel-slide { flex: 0 0 25%; height: 100%; overflow: hidden; }
.about-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(28,28,28,0.85); border: 2px solid rgba(255,255,255,0.6); color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.about-carousel-btn:hover { background: rgba(28,28,28,0.9); }
.about-carousel-prev { left: 16px; }
.about-carousel-next { right: 16px; }
@media (max-width: 767px) {
  .about-carousel-wrap { height: 160px; }
  .about-carousel-slide { flex: 0 0 50%; }
  .about-carousel-btn { width: 34px; height: 34px; font-size: 0.85rem; }
}

.about-carousel-hint {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--robin); font-family: 'DM Sans', sans-serif;
  padding: 12px 0 10px 60px;
  background: var(--warm-white);
}
@media (max-width: 767px) {
  .about-carousel-hint { padding-left: 20px; }
}

/* About carousel image adjustments */
.about-carousel-slide:nth-child(2) img { transform: scale(1.2); transform-origin: center center; }
.about-carousel-slide:nth-child(8) img { object-position: center 20%; }

/* About hero tab */
.about-hero-tab {
  display: inline-block;
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 10px 24px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}
@media (max-width: 767px) {
  .about-hero-tab { left: 50%; }
}

.about-col p strong { font-weight: 700; color: var(--charcoal); }

.footer-bottom-row { padding-top: 16px; }
.footer-anchor { white-space: nowrap; }

.investment-details { padding-left: 40px; }

/* Prevent flash of hidden elements on load */
.footer-mobile { display: none; }
.reviews-mobile-wrap { display: none; }


/* Extended families layout fixes */
.extended-full .extended-text { padding: 52px 60px 0 !important; max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.extended-full .extended-body { width: 100%; column-count: 2; column-gap: 48px; }
.extended-families .section-heading { margin-bottom: 36px !important; margin-top: 12px !important; }
@media (max-width: 767px) {
  .faq { padding-left: 20px !important; padding-right: 20px !important; }
  .extended-full .extended-body { column-count: 1; }
  .extended-full .extended-text { padding: 40px 20px 0 !important; }
}

.extended-full .extended-cta { align-self: center !important; margin-top: 32px !important; margin-bottom: 42px !important; width: auto !important; padding: 14px 36px !important; }

.extended-full .extended-cta { margin-bottom: 56px !important; }
