/*
Theme Name:  Create Culture Photography
Theme URI:   https://createculturephoto.com
Author:      Anthony Rodriguez
Description: Wedding & Elopement Photography Portfolio Theme
Version:     1.0
License:     GNU General Public License v2 or later
Text Domain: createculture
*/

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #FFFFFF;
  --off:   #F8F8F6;
  --light: #EFEFED;
  --sage:  #B5C4B1;
  --mid-sage: #8FA98A;
  --moss:  #6B8F68;
  --ink:   #000000;
  --mid:   #333333;
  --lt:    #888888;
}

html { scroll-behavior: auto; }
body { background: #ffffff; }

body {
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: #FFFFFF;
  color: #8aaf87;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* ─── HEADINGS use Georgia serif fallback ─── */
h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #8aaf87;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #EFEFED;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 4rem;
}
/* Push nav down when WordPress admin bar is visible */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar nav { top: 46px; } }
.nav-logo {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.75rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #8aaf87; text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #333333; text-decoration: none; font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: #000000; }
.nav-cta {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  background: #000000; color: #FFFFFF;
  padding: 0.55rem 1.5rem; text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: #6B8F68; }
.menu-btn {
  display: none; background: none; border: none;
  cursor: pointer; font-size: 1.4rem; color: #000000;
}

/* ─── MOBILE MENU ─── */
.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: #FFFFFF; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.8rem;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: Georgia, serif; font-size: clamp(1.2rem, 5vw, 2rem); font-style: italic;
  color: #8aaf87; text-decoration: none;
}
/* wp_nav_menu() wraps items in <ul><li> — flatten for mobile overlay */
.mob-links { list-style: none; display: contents; }
.mob-links li { display: contents; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 64px;
}
.hero-left {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: #FFFFFF;
}
.hero-tag-line {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: #8FA98A; font-weight: 400; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-tag-line::before { content:''; width:30px; height:1px; background:#B5C4B1; }
.hero h1 {
  font-size: clamp(3.2rem, 5.5vw, 6.5rem);
  font-weight: 400; line-height: 0.95; color: #000000;
}
.hero h1 em { font-style: italic; color: #6B8F68; }
.hero h1 strong { font-weight: 700; display: block; }
.hero-sub {
  margin-top: 1.8rem; font-size: 0.9rem; line-height: 1.9;
  color: #333333; font-weight: 300; max-width: 320px;
}
.hero-btns { margin-top: 2.5rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.btn-dark {
  padding: 0.85rem 2.2rem; background: #000000; color: #FFFFFF;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s; display: inline-block;
}
.btn-dark:hover { background: #6B8F68; }
.btn-line {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #333333; text-decoration: none; transition: color 0.2s;
}
.btn-line:hover { color: #000000; }
.hero-right {
  background: linear-gradient(150deg, #EFEFED 0%, #B5C4B1 50%, #8FA98A 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-icon { font-size: 6rem; opacity: 0.2; }




/* ─── MARQUEE ─── */
.marquee {
  overflow: hidden; background: #F8F8F6;
  border-top: 1px solid #EFEFED; border-bottom: 1px solid #EFEFED;
  padding: 0.75rem 0;
}
.marquee-inner { display: flex; width: max-content; animation: scroll 24s linear infinite; }
.marquee-item {
  padding: 0 2rem; white-space: nowrap;
  font-family: Georgia, serif; font-size: 0.95rem; font-style: italic;
  color: #333333; display: flex; align-items: center; gap: 2rem;
}
.dot { width: 4px; height: 4px; background: #B5C4B1; border-radius: 50%; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── LABEL ─── */
.label {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: #8FA98A; font-weight: 400; margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.label::before { content:''; width:26px; height:1px; background:#B5C4B1; }

/* ─── ABOUT ─── */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.about-img {
  background: linear-gradient(155deg, #B5C4B1 0%, #8FA98A 60%, #6B8F68 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img .icon { font-size: 7rem; opacity: 0.2; }
.about-name {
  position: absolute; top: 2rem; right: 0;
  background: #FFFFFF; padding: 0.6rem 1.2rem;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #6B8F68; border-left: 3px solid #B5C4B1;
}
.about-text { padding: 6rem 5rem; display: flex; flex-direction: column; justify-content: center; background: #F8F8F6; }
.about-text h2 {
  font-size: clamp(2rem, 3vw, 3.5rem); font-weight: 400; line-height: 1.15; color: #000000;
}
.about-text h2 em { font-style: italic; color: #6B8F68; }
.about-text p {
  margin-top: 1.4rem; font-size: 0.88rem; line-height: 1.95;
  color: #111111; font-weight: 400; max-width: 420px;
}
.stats { margin-top: 2.8rem; display: flex; gap: 2.5rem; }
.stat-n {
  font-family: Georgia, serif;
  font-size: 2.8rem; font-weight: 700; color: #000000; line-height: 1;
}
.stat-n em { color: #6B8F68; font-style: italic; }
.stat-l {
  font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #888888; margin-top: 0.25rem;
}

/* ─── SERVICES ─── */
.services { padding: 7rem 4rem; background: #F8F8F6; }
.services-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem;
}
.services-head h2 {
  font-size: clamp(2rem, 3vw, 3.5rem); font-weight: 400; color: #000000; line-height: 1.1;
}
.services-head h2 em { font-style: italic; color: #6B8F68; }
.services-head p { font-size: 0.83rem; color: #333333; max-width: 240px; line-height: 1.8; font-weight: 300; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #EFEFED; }
.svc {
  background: #FFFFFF; padding: 2.8rem 2.2rem;
  position: relative; transition: background 0.25s;
}
.svc:hover { background: #F8F8F6; }
.svc-n {
  font-family: Georgia, serif; font-size: 4rem; font-weight: 700;
  color: #EFEFED; line-height: 1; position: absolute; top: 1rem; right: 1.5rem;
}
.svc-icon { font-size: 1.5rem; margin-bottom: 1.4rem; }
.svc h3 { font-size: 1.5rem; font-weight: 700; color: #000000; line-height: 1.2; }
.svc h3 em { font-style: italic; font-weight: 400; color: #6B8F68; }
.svc p { margin-top: 0.7rem; font-size: 0.8rem; line-height: 1.85; color: #333333; font-weight: 300; }
.svc a {
  display: inline-block; margin-top: 1.5rem;
  font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #6B8F68; text-decoration: none;
}

/* ─── PRICING ─── */
.pricing { padding: 7rem 4rem; background: #FFFFFF; }
.pricing-head { text-align: center; margin-bottom: 4rem; }
.pricing-head .label { justify-content: center; }
.pricing-head h2 { font-size: clamp(2rem, 3vw, 3.5rem); font-weight: 400; color: #000000; }
.pricing-head h2 em { font-style: italic; color: #6B8F68; }
.pricing-head p {
  font-size: 0.85rem; color: #333333; margin-top: 0.8rem;
  font-weight: 300; line-height: 1.8; max-width: 460px; margin-left: auto; margin-right: auto;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; }
.pkg {
  border: 1px solid #EFEFED; padding: 3rem 2.5rem;
  background: #FFFFFF; position: relative;
}
.pkg + .pkg { border-left: none; }
.pkg.best {
  background: #000000;
  margin-top: -14px; margin-bottom: -14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2); z-index: 2;
}
.pkg-badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: #B5C4B1; color: #000000;
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.3rem 1rem; font-weight: 500; white-space: nowrap;
}
.pkg-name {
  font-family: Georgia, serif; font-size: 1.5rem; font-weight: 700;
  color: #8aaf87; margin-top: 0.4rem;
}
.pkg.best .pkg-name { color: #F8F8F6; }
.pkg-sub {
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #888888; font-weight: 300;
}
.pkg.best .pkg-sub { color: rgba(248,248,246,0.4); }
.pkg-price { margin: 1.6rem 0; display: flex; align-items: flex-start; gap: 0.15rem; }
.pkg-cur { font-size: 1rem; font-weight: 300; color: #6B8F68; margin-top: 0.5rem; }
.pkg.best .pkg-cur { color: #B5C4B1; }
.pkg-amt {
  font-family: Georgia, serif; font-size: 3.5rem; font-weight: 700;
  color: #8aaf87; line-height: 1;
}
.pkg.best .pkg-amt { color: #F8F8F6; }
.pkg-from {
  font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #888888; align-self: flex-end; padding-bottom: 0.25rem;
}
.pkg.best .pkg-from { color: rgba(248,248,246,0.35); }
.pkg-rule { height: 1px; background: #EFEFED; margin-bottom: 1.6rem; }
.pkg.best .pkg-rule { background: rgba(248,248,246,0.12); }
.pkg-feats { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.pkg-feats li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.82rem; color: #333333; line-height: 1.5; font-weight: 300;
}
.pkg.best .pkg-feats li { color: rgba(248,248,246,0.68); }
.ck {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: #B5C4B1; display: flex; align-items: center;
  justify-content: center; font-size: 0.52rem; color: #000000; margin-top: 1px;
}
.pkg.best .ck { background: rgba(181,196,177,0.22); color: #B5C4B1; }
.pkg-feats li strong { color: #000000; font-weight: 500; }
.pkg.best .pkg-feats li strong { color: #F8F8F6; }
.pkg-btn {
  display: block; text-align: center; padding: 0.85rem 1rem;
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; font-weight: 400; transition: all 0.22s;
}
.pkg:not(.best) .pkg-btn { border: 1px solid #000000; color: #000000; }
.pkg:not(.best) .pkg-btn:hover { background: #000000; color: #FFFFFF; }
.pkg.best .pkg-btn { background: #B5C4B1; color: #000000; border: 1px solid #B5C4B1; }
.pkg.best .pkg-btn:hover { background: #8FA98A; border-color: #8FA98A; }
.pricing-note {
  text-align: center; margin-top: 3.5rem;
  font-size: 0.8rem; color: #888888; font-weight: 300; line-height: 1.8;
}
.pricing-note a { color: #6B8F68; text-decoration: none; }

/* ─── PORTFOLIO ─── */
.portfolio { padding: 6rem 0 0; }
.port-head {
  padding: 0 4rem 2.5rem;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.port-head h2 { font-size: clamp(2rem, 3vw, 3.5rem); font-weight: 400; color: #000000; }
.port-head h2 em { font-style: italic; color: #6B8F68; }
.port-head a {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #6B8F68; text-decoration: none;
}
.port-scroll {
  display: flex; gap: 1rem; padding: 0 4rem 5rem;
  overflow-x: auto; scrollbar-width: none;
}
.port-scroll::-webkit-scrollbar { display: none; }
.port-item { flex: 0 0 340px; height: 480px; position: relative; overflow: hidden; }
.port-bg {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center;
  font-size: 4.5rem; transition: transform 0.5s;
}
.port-item:hover .port-photo { transform: scale(1.04); }
.pb1 { background: linear-gradient(140deg, #E8DCCF, #D6C5B0); }
.pb2 { background: linear-gradient(140deg, #B5C4B1, #8FA98A); }
.pb3 { background: linear-gradient(140deg, #D6C5B0, #F0F0EE); }
.pb4 { background: linear-gradient(140deg, #F0F0EE, #B5C4B1); }
.pb5 { background: linear-gradient(140deg, #E8DCCF, #B5C4B1); }
.pe { opacity: 0.18; }
.port-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  opacity: 0; transition: opacity 0.3s;
}
.port-item:hover .port-info { opacity: 1; }
.port-info span {
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #B5C4B1; display: block;
}
.port-info h4 { font-family: Georgia, serif; font-size: 1.1rem; color: #FFFFFF; margin-top: 0.2rem; }

/* ─── TESTIMONIALS ─── */
.testimonial { padding: 7rem 4rem; background: #000000; text-align: center; }
.testimonial blockquote {
  font-family: Georgia, serif; font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: 400; font-style: italic;
  color: #F8F8F6; line-height: 1.5; max-width: 820px; margin: 0 auto;
  min-height: 180px; display: block !important; text-align: center !important;
  transition: opacity 0.3s ease;
}
.testimonial blockquote em { color: #B5C4B1; font-style: normal; }
.testimonial cite {
  display: block; margin-top: 1.8rem;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #888888; font-style: normal;
}
.t-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.tdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #888888; cursor: pointer; transition: all 0.2s;
}
.tdot.on { background: #B5C4B1; width: 20px; border-radius: 3px; }

/* ─── PROCESS ─── */
.process { padding: 7rem 4rem; background: #FFFFFF; }
.process h2 {
  font-size: clamp(2rem, 3vw, 3.5rem); font-weight: 400; color: #000000;
  margin-bottom: 3.5rem; max-width: 440px; line-height: 1.15;
}
.process h2 em { font-style: italic; color: #6B8F68; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid #EFEFED; }
.step { padding: 2.2rem; border-right: 1px solid #EFEFED; }
.step-n {
  font-family: Georgia, serif; font-size: 3.8rem; font-weight: 700;
  color: #EFEFED; line-height: 1; margin-bottom: 1rem;
}
.step h3 { font-family: Georgia, serif; font-size: 1.2rem; font-weight: 700; color: #000000; margin-bottom: 0.6rem; }
.step p { font-size: 0.8rem; color: #333333; line-height: 1.85; font-weight: 300; }

/* ─── CTA ─── */
.cta {
  margin: 0 4rem 4rem; background: #B5C4B1; padding: 5rem 4rem;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
}
.cta .label { color: #000000; }
.cta .label::before { background: #000000; }
.cta h2 {
  font-size: clamp(2rem, 3.5vw, 4rem); font-weight: 400; color: #FFFFFF; line-height: 1;
}
.cta h2 em { font-style: italic; }
.cta h2 strong { font-weight: 700; display: block; }
.cta-r { text-align: right; min-width: 200px; }
.cta-r p { font-size: 0.8rem; color: #000000; line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem; }

/* ─── INSTAGRAM ─── */
.insta { padding: 0 4rem 6rem; background: #FFFFFF; }
.insta-top {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; color: #000;
}
.insta-top h3 { font-family: Georgia, serif; font-size: 1.3rem; font-style: italic; color: #333333; font-weight: 400; }
.insta-top a {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #6B8F68; text-decoration: none;
}
.insta-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.4rem; }
.ig-item {
  aspect-ratio: 1; display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; cursor: pointer;
  transition: opacity 0.2s;
}
.ig-item:hover { opacity: 0.82; }
.ig1 { background: linear-gradient(135deg, #E8DCCF, #D6C5B0); }
.ig2 { background: linear-gradient(135deg, #B5C4B1, #8FA98A); }
.ig3 { background: linear-gradient(135deg, #D6C5B0, #F0F0EE); }
.ig4 { background: linear-gradient(135deg, #8FA98A, #6B8F68); }
.ig5 { background: linear-gradient(135deg, #F0F0EE, #E8DCCF); }
.ige { opacity: 0.2; }

/* ─── FOOTER ─── */
footer { background: #000000; padding: 4.5rem 4rem 2rem; }
.foot-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.foot-logo {
  font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 0.75rem; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase; color: #F8F8F6;
}
.foot-brand p {
  margin-top: 1rem; font-size: 0.78rem;
  color: rgba(248,248,246,0.38); line-height: 1.85; font-weight: 300; max-width: 240px;
}
.foot-col h4 {
  font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: #B5C4B1; font-weight: 400; margin-bottom: 1.2rem;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.foot-col a {
  font-size: 0.78rem; color: rgba(248,248,246,0.42);
  text-decoration: none; font-weight: 300; transition: color 0.2s;
}
.foot-col a:hover { color: #F8F8F6; }
.foot-bot {
  padding-top: 1.8rem; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.foot-bot p { font-size: 0.68rem; color: rgba(248,248,246,0.22); }
.foot-social { display: flex; gap: 1.2rem; }
.foot-social a {
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(248,248,246,0.32); text-decoration: none; transition: color 0.2s;
}
.foot-social a:hover { color: #B5C4B1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  nav { padding: 1rem 2rem; }
  .hero-left { padding: 4rem 2.5rem; }
  .about-text { padding: 4rem 3rem; }
  .services, .pricing, .process, .insta { padding: 0 4rem 6rem; background: #FFFFFF; }
  .port-head, .port-scroll { padding-left: 2.5rem; padding-right: 2.5rem; }
  .cta { margin: 0 2.5rem 6rem; padding: 4rem 3rem; }
  footer { padding: 4rem 2.5rem 2rem; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pkg.best { margin-top: 0; margin-bottom: 0; }
  .pkg + .pkg { border-left: 1px solid #EFEFED; border-top: none; }
}
@media (max-width: 720px) {
  
  nav { padding: 0.9rem 1.5rem; 
  .hero-badge { display: none !important; }}
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 5rem 1.5rem 3rem; }
  .hero-right { height: 55vw; }
  .about { grid-template-columns: 1fr; }
  .about-img { height: 50vw; }
  .about-text { padding: 3rem 1.5rem; }
  .services, .pricing, .process { padding: 4.5rem 1.5rem; }
  .services-head { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .port-head, .port-scroll { padding-left: 1.5rem; padding-right: 1.5rem; }
  .testimonial { padding: 4.5rem 1.5rem; }
  .process .steps { grid-template-columns: 1fr 1fr; }
  .cta { margin: 0 1.5rem 5rem; padding: 3rem 2rem; grid-template-columns: 1fr; }
  .cta-r { text-align: left; }
  .insta { padding: 0 1.5rem 4rem; background: #FFFFFF; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-item:nth-child(n+4) { display: none; }
  footer { padding: 3rem 1.5rem 1.5rem; }
  .foot-top { grid-template-columns: 1fr; gap: 1.8rem; }
  .foot-bot { flex-direction: column; text-align: center; }

  /* ── Mobile overflow fixes ── */
  body { overflow-x: hidden; }

  /* About section — prevent heading overflow */
  .about-text h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); word-break: break-word; }
  .about-text p  { max-width: 100%; }

  /* Stats row — wrap on small screens */
  .stats { flex-wrap: wrap; gap: 1.5rem; }

  /* Instagram top bar — wrap & fix padding */
  .insta-top { flex-wrap: wrap; gap: 0.75rem; }
  .insta-top h3 { font-size: 1rem; }
  .insta-top a  { font-size: 0.65rem; }

  /* Hero left text — prevent overflow */
  .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-sub { max-width: 100%; }

  /* Process steps — single column on very small screens */
  .step { padding: 1.5rem 1rem; }

  /* CTA heading size */
  .cta h2 { font-size: clamp(1.8rem, 7vw, 3rem); }

  /* Footer nav links wrap */
  .foot-social { flex-wrap: wrap; justify-content: center; }
}

/* ─── HERO SLIDESHOW ─── */
.hero-right { position: relative; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Dot indicators */
.hero-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.4rem; z-index: 10;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: background 0.3s;
}
.hero-dot.active { background: #fff; }







.hero-badge {
  position: absolute; bottom: 2rem; left: 2rem;
  background: rgba(255,255,255,0.92); padding: 0.75rem 1.2rem;
  display: flex; flex-direction: row; align-items: center; gap: 0.5rem; z-index: 2;
}
.hero-badge span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: #000; font-weight: 600; }


/* ── GALLERY CARDS ── */
.portfolio { padding: 0 4rem 6rem; background: #ffffff; }
.gallery-card {
  cursor: pointer; margin-bottom: 2rem; overflow: hidden;
  position: relative;
}
.gallery-cover {
  position: relative; height: 520px; overflow: hidden;
}
.gallery-cover img { transition: transform 0.5s; }
.gallery-card:hover .gallery-cover img { transform: scale(1.03); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 2rem;
}
.gallery-info span {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #B5C4B1; display: block; margin-bottom: 0.3rem;
}
.gallery-info h3 {
  font-family: Georgia, serif; font-size: 2rem; font-weight: 400;
  color: #fff; margin: 0;
}
.gallery-count { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 0.3rem; }

/* ── LIGHTBOX ── */
.lb-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92); z-index: 10000;
}
.lb-backdrop.open { display: block; }
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 10001;
  flex-direction: column; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img-wrap {
  max-width: 90vw; max-height: 78vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img {
  max-width: 90vw; max-height: 78vh;
  object-fit: contain; display: block;
  transition: opacity 0.6s ease;
}
@media (max-width: 720px) {
  .lb-img-wrap { max-width: 90vw; max-height: 78vh; }
  .lb-img      { max-width: 90vw; max-height: 78vh; }
}
.lb-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 1.5rem; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10002; opacity: 1; border-radius: 50%;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }
/* Push close button below admin bar when logged in */
.admin-bar .lb-close { top: calc(1.5rem + 32px); }
@media screen and (max-width: 782px) { .admin-bar .lb-close { top: calc(1.5rem + 46px); } }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1.5rem; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; cursor: pointer; z-index: 10002;
  transition: background 0.2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
/* On mobile make prev/next bigger tap targets */
@media (max-width: 720px) {
  .lb-prev, .lb-next { width: 50px; height: 50px; font-size: 1.2rem; }
  .lb-close { width: 50px; height: 50px; font-size: 1.3rem; }
}
.lb-caption {
  display: flex; justify-content: space-between; align-items: center;
  width: 90vw; max-width: 800px; margin-top: 1rem;
  color: rgba(255,255,255,0.7); font-size: 0.8rem;
}
.lb-dots {
  display: flex; gap: 0.4rem; margin-top: 0.75rem;
}
.lb-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer; transition: background 0.2s;
}
.lb-dot.active { background: #fff; }

@media(max-width:720px) {
  .gallery-cover { height: 300px; }
  .portfolio { padding: 0 1.5rem 4rem; }
  .lb-prev { left: 0.25rem; }
  .lb-next { right: 0.25rem; }
}


/* Fix dark background gaps */
body, html { background: #ffffff !important; }
.portfolio { background: #ffffff !important; }
section { background: #ffffff; }
.insta { padding: 0 4rem 6rem; background: #FFFFFF; }
.footer { background: #000000; }
.cta { background: #B5C4B1; }
.testimonials { background: #000000; }
.services { background: #F8F8F6; }
.pricing { background: #ffffff; }
.process { background: #ffffff; }


.insta-top h3 { color: #000000; }
.insta-top a { color: #000000; }


#qText, #qAuth { transition: opacity 0.6s ease; }
.tdot { cursor: pointer; }








@media (max-width: 768px) {
  .hero-badge { display: none !important; }
  .hero-slide:nth-child(4) img { object-position: center 20%; }
}
