/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=80');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7,21,38,0.92) 0%, rgba(11,31,58,0.82) 50%, rgba(18,40,73,0.7) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,21,38,0.6) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 5% 80px;
  max-width: 760px;
  animation: fadeUp 1s ease both;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.75rem;
  animation: fadeUp 1s 0.1s ease both;
  opacity: 0;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.2s ease both;
  opacity: 0;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s 0.3s ease both;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.4s ease both;
  opacity: 0;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.5s ease both;
  opacity: 0;
}

.trust-item {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-icon { color: var(--gold); font-size: 0.65rem; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeUp 1s 0.8s ease both;
  opacity: 0;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* STATS BAR */
.stats-bar {
  background: var(--gold);
  padding: 1.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3rem;
  text-align: center;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11,31,58,0.7);
  margin-top: 0.25rem;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(11,31,58,0.2);
}

/* LEAD GEN FORM BANNER */
.lead-banner {
  background: var(--gold);
  padding: 1.1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lead-banner p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.lead-banner p span { font-weight: 400; opacity: 0.8; }

.lead-inline-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.lead-inline-form input {
  border: none;
  border-radius: 2px;
  padding: 0.6rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--navy);
  background: rgba(255,255,255,0.9);
  outline: none;
  width: 200px;
}

.lead-inline-form input::placeholder { color: rgba(11,31,58,0.5); }

.lead-inline-form button {
  background: var(--navy);
  color: var(--gold);
  border: none;
  padding: 0.6rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.lead-inline-form button:hover { background: var(--navy-light); }

/* INTRO */
.intro-section {
  padding: 7rem 5%;
  background: var(--off-white);
}

.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-image-col {
  position: relative;
}

.intro-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.intro-img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  padding: 1.5rem 2rem;
  border-radius: 2px;
  box-shadow: var(--shadow-gold);
}

.intro-img-badge .badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.intro-img-badge .badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11,31,58,0.75);
  margin-top: 0.2rem;
}

.intro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.intro-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  border-top: 3px solid var(--gold);
  padding: 1.75rem 1.5rem;
  border-radius: 2px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.intro-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.intro-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* SERVICES STRIP */
.services-strip {
  background: var(--navy);
  padding: 7rem 5%;
}

.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.strip-header {
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.service-card {
  background: var(--navy);
  padding: 2.5rem 2rem;
  text-decoration: none;
  display: block;
  position: relative;
  transition: background 0.25s;
  border-bottom: 2px solid transparent;
}

.service-card:hover {
  background: var(--navy-light);
  border-bottom-color: var(--gold);
}

.sc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.25s;
}

.service-card:hover .sc-num { color: rgba(201,168,76,0.5); }

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.sc-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateX(-6px);
}

.service-card:hover .sc-arrow { opacity: 1; transform: translateX(0); }

.strip-cta {
  margin-top: 3rem;
  text-align: center;
}

/* PACKAGES TEASER */
.packages-teaser {
  padding: 7rem 5%;
  background: var(--white);
}

.pkg-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.pkg-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.pkg-pill {
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.2s;
}

.pkg-pill.highlight {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.pkg-visual {
  background: var(--navy);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
}

.pkg-visual::before {
  content: 'All Packages Include';
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
}

.pkg-feature-list { display: flex; flex-direction: column; gap: 1.1rem; }

.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.5;
}

.pf-check {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* WHY CHOOSE SECTION WITH PHOTO */
.why-section {
  padding: 7rem 5%;
  background: var(--white);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-image-col { position: relative; }

.why-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}

.why-img-overlay {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--navy);
  padding: 2rem;
  max-width: 220px;
  border-left: 3px solid var(--gold);
}

.why-img-overlay p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.why-img-overlay cite {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
}

.why-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.why-item:last-child { border-bottom: none; }

.why-icon-box {
  width: 40px;
  height: 40px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  border-radius: 2px;
}

.why-item-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.why-item-text p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.55; }

/* AREAS */
.areas-section {
  padding: 5rem 5%;
  background: var(--off-white);
  text-align: center;
}

.areas-inner {
  max-width: 800px;
  margin: 0 auto;
}

.areas-inner .gold-line { margin: 1rem auto 1.5rem; }
.areas-inner .section-subtitle { margin: 0 auto 2.5rem; }

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.area-tag {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--navy);
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-weight: 500;
  transition: all 0.2s;
}

.area-tag:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

/* FAQ */
.faq-section {
  background: var(--navy-mid);
  padding: 6rem 5%;
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-header { margin-bottom: 3rem; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--gold); }
.faq-q span {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.75;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .intro-inner, .pkg-inner { grid-template-columns: 1fr; gap: 3rem; }
  .intro-cards { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 0.5rem 1.5rem; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .intro-cards { grid-template-columns: 1fr; }
  .hero-trust { gap: 1rem; }
}

/* LEAD GEN FULL SECTION */
.lead-section {
  position: relative;
  padding: 7rem 5%;
  overflow: hidden;
}

.lead-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.15) saturate(0.3);
}

.lead-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.97) 0%, rgba(11,31,58,0.92) 100%);
}

.lead-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.lead-promises {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.lp-item span { color: var(--gold); }

.lead-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  border-top: 3px solid var(--gold);
  border-radius: 2px;
  padding: 2.5rem;
}

.lf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lf-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.lf-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.lf-group input,
.lf-group select,
.lf-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.lf-group input::placeholder,
.lf-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.lf-group input:focus,
.lf-group select:focus,
.lf-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}

.lf-group select option { background: var(--navy); color: var(--white); }

.lf-group textarea { resize: vertical; min-height: 100px; }

.lf-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}

.lf-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.lf-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.lf-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* RESPONSIVE ADDITIONS */
@media (max-width: 768px) {
  .lead-inner { grid-template-columns: 1fr; gap: 3rem; }
  .lf-row { grid-template-columns: 1fr; }
  .intro-image-col { display: none; }
  .why-image-col { display: none; }
  .intro-inner { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
}

/* HERO PHOTO */
.hero { position:relative; min-height:100vh; display:flex; align-items:center; overflow:hidden; }
.hero-photo { position:absolute; inset:0; }
.hero-photo img { width:100%; height:100%; object-fit:cover; }
.hero-photo-overlay { position:absolute; inset:0; background:linear-gradient(105deg, rgba(7,21,38,0.88) 0%, rgba(11,31,58,0.65) 50%, rgba(18,40,73,0.4) 100%); }

/* PHOTO SERVICES GRID */
.photo-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* WHY SECTION */
.why-section { position:relative; padding:8rem 5%; overflow:hidden; }
.why-photo { position:absolute; inset:0; }
.why-overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(7,21,38,0.94) 0%, rgba(11,31,58,0.88) 100%); }
.why-content { position:relative; z-index:2; max-width:1200px; margin:0 auto; }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin-top:3rem; }
.why-item { border-left:2px solid var(--gold); padding-left:1.5rem; }
.wi-icon { color:var(--gold); font-size:1.2rem; margin-bottom:0.75rem; }
.why-item h3 { font-family:'Cormorant Garamond',serif; font-size:1.2rem; color:var(--white); margin-bottom:0.5rem; }
.why-item p { font-size:0.85rem; color:rgba(255,255,255,0.55); line-height:1.65; }

/* CTA PHOTO BANNER */
.cta-photo-banner { position:relative; padding:8rem 5%; text-align:center; overflow:hidden; }
.cta-photo-overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(7,21,38,0.92) 0%, rgba(11,31,58,0.85) 100%); }
.cta-photo-banner .cta-inner p { color:rgba(255,255,255,0.65); }

@media (max-width:1024px) {
  .photo-services-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px) {
  .photo-services-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
}

/* SEO CONTENT SECTION */
.seo-content-section { padding: 5rem 5%; background: var(--off-white); }
.seo-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.seo-block h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 1rem; }
.seo-block p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
@media (max-width: 768px) { .seo-inner { grid-template-columns: 1fr; gap: 2rem; } }
