
/* PAGE HERO (subpages) */
.page-hero{
  padding:0 5% 90px;
  text-align:center;
  background-color:var(--paper);
}
.page-hero-eyebrow{
  display:block;
  font-size:0.78rem;
  letter-spacing:0.32em;
  text-transform:uppercase;
  font-weight:600;
  opacity:0.6;
  margin-bottom:18px;
}
.page-hero h1{
  font-size:clamp(2.2rem, 5vw, 3.6rem);
  text-transform:uppercase;
  font-weight:700;
}
.page-hero p{
  max-width:560px;
  margin:22px auto 0;
  opacity:0.75;
  line-height:1.7;
}

.page-hero-left{
  text-align:left;
  max-width:1100px;
  margin:0 auto;
  padding-bottom:60px;
}
.page-hero-left h1{
  font-size:clamp(1.7rem, 3.2vw, 2.4rem);
}
.page-hero-left p{
  margin:22px 0 0;
}

/* Individual wedding page hero (photo background) */
.wedding-hero-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:0 5% 90px;
}
.wedding-hero{
  position:relative;
  min-height:60vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:0;
  overflow:hidden;
}
.wedding-hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(39,40,43,0.4);
}
.wedding-hero-content{
  position:relative;
  z-index:1;
  color:var(--paper);
  opacity:1;
}
.wedding-hero .page-hero-eyebrow{
  margin-bottom:18px;
}

/* Wedding video embed */
.wedding-video-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:0 5% 90px;
}
.wedding-video{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background-color:var(--ink);
  overflow:hidden;
}
.wedding-video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* PLACEHOLDER CONTENT */
.placeholder-section{
  max-width:760px;
  margin:0 auto;
  padding:90px 24px 140px;
  text-align:center;
}
.placeholder-section p{
  line-height:1.8;
  opacity:0.8;
  margin-bottom:20px;
}
.placeholder-note{
  display:inline-block;
  margin-top:20px;
  padding:8px 18px;
  border:1px dashed var(--line);
  font-size:0.72rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  opacity:0.6;
}

/* PACKAGES — vertical, tabbed, compact layout (fits one screen) */
.packages-header{
  max-width:1100px;
  margin:0 auto;
  padding:0 5% 0;
}
.packages-header-inner{
  border-bottom:1px solid rgba(39,40,43,0.85);
}
.packages-eyebrow{
  display:block;
  font-size:0.7rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  font-weight:600;
  opacity:0.6;
  margin-bottom:8px;
}
.packages-title{
  font-size:clamp(1.7rem, 3.2vw, 2.4rem);
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:16px;
  transition:opacity 0.2s ease;
}
.packages-tabs{
  display:flex;
  gap:1.6rem;
  padding-bottom:12px;
}
.packages-tab{
  background:none;
  border:none;
  cursor:pointer;
  font-family:inherit;
  color:var(--ink);
  font-size:0.72rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-weight:500;
  padding:0 0 5px;
  border-bottom:1px solid transparent;
  opacity:0.6;
}
.packages-tab.active{
  opacity:1;
  border-color:var(--ink);
}

.package-panel{
  display:none;
  padding:26px 5% 40px;
  max-width:1100px;
  margin:0 auto;
  min-height:490px;
  flex-direction:column;
}
.package-panel.active{
  display:flex;
}
.package-row{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  padding:12px 0;
}
.package-row-label{
  flex:0 0 160px;
  font-size:0.9rem;
  opacity:0.9;
}
.package-row-value{
  flex:1 1 380px;
  font-size:0.9rem;
  line-height:1.4;
  opacity:0.9;
}
.package-row-value ul{
  list-style:none;
  padding:0;
  margin:0;
}
.package-row-value li{
  line-height:1.5;
}
.package-price-row{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  align-items:baseline;
  padding-top:20px;
  margin-top:auto;
  border-top:1px solid rgba(39,40,43,0.12);
}
.package-price-amount{
  flex:0 0 160px;
  font-size:1.2rem;
  font-weight:400;
}
.package-price-note{
  flex:1 1 380px;
  font-style:italic;
  opacity:0.7;
  font-size:0.85rem;
}

/* SIMPLE CONTACT FORM (placeholder) */
.contact-form{
  max-width:560px;
  margin:0 auto;
  padding:0 24px 140px;
  display:flex;
  flex-direction:column;
  gap:28px;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid rgba(39,40,43,0.2);
  background:transparent;
  font-family:inherit;
  font-size:0.95rem;
  color:var(--ink);
}
.contact-form select{
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2327282b' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  cursor:pointer;
}
.contact-form textarea{min-height:120px;resize:vertical;}
.form-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.form-group > label{
  font-size:1.05rem;
  font-weight:500;
}
.form-row{
  display:flex;
  gap:16px;
}
.form-field{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.form-sublabel{
  font-size:0.85rem;
  opacity:0.75;
}
.required{
  font-size:0.8rem;
  font-weight:400;
  opacity:0.5;
}
.form-note{
  font-size:0.82rem;
  opacity:0.7;
  margin-top:-2px;
}
.btn-submit{
  align-self:flex-start;
  border:none;
  cursor:pointer;
  font-family:inherit;
  margin-top:8px;
}

/* WEDDINGS GRID (chandlervisuals-style photo cards) */
.weddings-grid{
  max-width:1100px;
  margin:0 auto;
  padding:0 5% 150px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:56px 40px;
}
.wedding-card{
  text-align:center;
}
.wedding-card-image{
  aspect-ratio:4/5;
  width:100%;
  background-color:var(--ink);
  background-size:cover;
  background-position:center;
  position:relative;
  overflow:hidden;
}
.wedding-card-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(39,40,43,0.45);
}
.wedding-card-image span{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--paper);
  font-size:0.72rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
  opacity:0.75;
  z-index:1;
}
.wedding-card-link{
  display:block;
  margin-top:24px;
}
.btn-pill{
  display:inline-block;
  margin-top:16px;
  padding:12px 28px;
  border-radius:999px;
  background:var(--ink);
  color:var(--paper);
  font-size:0.7rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:600;
  transition:opacity 0.25s ease;
}
.btn-pill:hover{opacity:0.75;}

@media (max-width:820px){
  .weddings-grid{grid-template-columns:1fr; gap:48px;}
  .package-row-label{flex-basis:100%;}
  .package-price-amount{flex-basis:100%;}
  .packages-header{padding-top:150px;}
  .package-panel{padding-top:70px;}
  .form-row{flex-direction:column; gap:28px;}
}
