/* =========================================
   IMPRINT STUDIOS — Global Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --charcoal:       #233d4d;
  --charcoal-dark:  #1a2e3b;
  --charcoal-light: #2e5066;
  --pumpkin:        #fe7200;
  --pumpkin-dark:   #d45f00;
  --pumpkin-light:  #ff9a44;
  --white:          #ffffff;
  --off-white:      #f2ede8;
  --text-light:     #c8d8e2;
  --text-muted:     #7a99aa;
  --border:         rgba(254, 114, 0, 0.2);
  --shadow:         0 8px 32px rgba(0, 0, 0, 0.35);
  --radius:         8px;
  --radius-lg:      16px;
}

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

img, video, iframe, svg {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--charcoal);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}

a {
  color: var(--pumpkin);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--pumpkin-light);
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.section-label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pumpkin);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-title span {
  color: var(--pumpkin);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
}

/* =========================================
   LAYOUT
   ========================================= */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

section:nth-child(even) {
  background-color: var(--charcoal-dark);
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--pumpkin);
  color: var(--white);
  border-color: var(--pumpkin);
}

.btn-primary:hover {
  background-color: var(--pumpkin-dark);
  border-color: var(--pumpkin-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 114, 0, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--pumpkin);
  color: var(--pumpkin);
  transform: translateY(-2px);
}

/* =========================================
   NAVIGATION
   ========================================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--charcoal-dark);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pumpkin);
  transition: width 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pumpkin);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =========================================
   HERO
   ========================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background-color: var(--charcoal);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(254,114,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(254,114,0,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254,114,0,0.12);
  border: 1px solid rgba(254,114,0,0.3);
  color: var(--pumpkin);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pumpkin);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title .line-accent {
  color: var(--pumpkin);
  display: block;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.hero-stat-card:hover {
  border-color: rgba(254,114,0,0.5);
  transform: translateY(-4px);
}

.hero-stat-card .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--pumpkin);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-location-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-location-card .icon {
  font-size: 1.8rem;
}

.hero-location-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.hero-location-card strong {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  display: block;
}

/* =========================================
   SERVICES OVERVIEW
   ========================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pumpkin);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.service-card:hover {
  border-color: rgba(254,114,0,0.4);
  background: rgba(254,114,0,0.04);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pumpkin);
}

.service-card .service-link::after {
  content: '→';
  transition: transform 0.2s;
}

.service-card:hover .service-link::after {
  transform: translateX(4px);
}

/* =========================================
   PROCESS
   ========================================= */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 2px;
  background: linear-gradient(to right, var(--pumpkin), rgba(254,114,0,0.2));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--charcoal-dark);
  border: 2px solid var(--pumpkin);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--pumpkin);
  margin: 0 auto 24px;
  transition: all 0.3s;
}

.process-step:hover .step-number {
  background: var(--pumpkin);
  color: var(--white);
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--white);
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* =========================================
   EVENT TYPES
   ========================================= */

.event-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.event-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: all 0.3s;
}

.event-card:hover {
  border-color: rgba(254,114,0,0.5);
  background: rgba(254,114,0,0.04);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.event-icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

.event-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--pumpkin);
}

.event-card p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.event-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.event-features li::before {
  content: '✦';
  color: var(--pumpkin);
  flex-shrink: 0;
  font-size: 0.65rem;
  margin-top: 5px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(254,114,0,0.4);
  transform: translateY(-4px);
}

.stars {
  color: var(--pumpkin);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--pumpkin);
  font-family: Georgia, serif;
  line-height: 0;
  vertical-align: -0.6em;
  margin-right: 4px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pumpkin), var(--pumpkin-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-info .name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.reviewer-info .via {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding: 28px 36px;
  background: rgba(254,114,0,0.06);
  border: 1px solid rgba(254,114,0,0.2);
  border-radius: var(--radius-lg);
}

.rating-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--pumpkin);
  line-height: 1;
}

.rating-details .stars { margin-bottom: 4px; }

.rating-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =========================================
   CTA BAND
   ========================================= */

.cta-band {
  background: linear-gradient(135deg, var(--pumpkin) 0%, var(--pumpkin-dark) 100%);
  padding: 80px 0;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background: var(--white);
  color: var(--pumpkin);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--off-white);
  border-color: var(--off-white);
  color: var(--pumpkin-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* =========================================
   FOOTER
   ========================================= */

footer {
  background-color: var(--charcoal-dark);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pumpkin);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-contact-item .icon {
  color: var(--pumpkin);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--pumpkin);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: var(--pumpkin);
  color: var(--pumpkin);
  background: rgba(254,114,0,0.1);
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */

.page-hero {
  padding: 96px 0 72px;
  background: var(--charcoal-dark);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(254,114,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 span {
  color: var(--pumpkin);
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin-top: 16px;
}

.page-hero .container {
  display: flex;
  align-items: center;
  gap: 56px;
}

.page-hero-text {
  flex: 1;
  min-width: 0;
}

.page-hero-img-wrap {
  flex: 0 0 400px;
  max-width: 40%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  display: none;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.page-hero-img-wrap.has-img {
  display: block;
}

.page-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .page-hero .container { flex-direction: column; gap: 32px; }
  .page-hero-img-wrap   { max-width: 100%; width: 100%; flex: none; height: 220px; }
}

/* =========================================
   SERVICES PAGE
   ========================================= */

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.service-full-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.service-full-card:hover {
  border-color: rgba(254,114,0,0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}

.service-card-header {
  background: linear-gradient(135deg, rgba(254,114,0,0.15), rgba(254,114,0,0.05));
  padding: 36px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-card-header .icon {
  font-size: 2.4rem;
}

.service-card-header h3 {
  font-size: 1.4rem;
}

.service-card-body {
  padding: 32px 36px;
}

.service-card-body p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  background: rgba(254,114,0,0.1);
  border: 1px solid rgba(254,114,0,0.25);
  color: var(--pumpkin-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

/* =========================================
   GALLERY PAGE
   ========================================= */

.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--pumpkin);
  color: var(--pumpkin);
  background: rgba(254,114,0,0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-item:nth-child(3n+1) {
  grid-row: span 1;
}

.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item:hover {
  border-color: rgba(254,114,0,0.5);
  transform: scale(1.02);
}

.gallery-placeholder {
  text-align: center;
  padding: 32px;
}

.gallery-placeholder .ph-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.4;
}

.gallery-placeholder p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(254,114,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay-text {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =========================================
   ABOUT PAGE
   ========================================= */

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}

.about-image-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(254,114,0,0.1) 0%, transparent 60%);
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.value-card:hover {
  border-color: rgba(254,114,0,0.4);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--pumpkin);
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  margin-top: 64px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(254,114,0,0.1);
  border: 1px solid rgba(254,114,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--pumpkin);
}

.contact-info-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}

.contact-form h3 {
  margin-bottom: 32px;
  font-size: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pumpkin);
  box-shadow: 0 0 0 3px rgba(254,114,0,0.12);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a99aa' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group select option {
  background: var(--charcoal-dark);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 500px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .event-split { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 1; aspect-ratio: 1; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-values { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--charcoal-dark);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
  }
  .navbar { position: relative; }
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
  .rating-summary { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { aspect-ratio: 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */

.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.in-view {
  opacity: 1;
  transform: none;
}

/* =========================================
   GALLERY LIGHTBOX
   ========================================= */

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#lightbox.open {
  opacity: 1;
  pointer-events: all;
}

#lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

#lb-img-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

#lb-img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  display: block;
}

#lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

#lb-close:hover { background: rgba(255, 255, 255, 0.25); }

#lb-prev, #lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}

#lb-prev { left: 20px; }
#lb-next { right: 20px; }

#lb-prev:hover, #lb-next:hover {
  background: rgba(254, 114, 0, 0.45);
  border-color: var(--pumpkin);
}

#lb-caption {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
  max-width: 80vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

#lb-counter {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.gallery-item:has(img) { cursor: zoom-in; }

@media (max-width: 600px) {
  #lb-prev { left: 8px; }
  #lb-next { right: 8px; }
  #lb-prev, #lb-next { width: 40px; height: 40px; font-size: 1.2rem; }
}

/* =========================================
   FAQ ACCORDION
   ========================================= */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item.open {
  border-color: rgba(254, 114, 0, 0.45);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--pumpkin); }

.faq-item.open .faq-question { color: var(--pumpkin); }

.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(254, 114, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease, background 0.2s, border-color 0.2s;
}

.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  background: var(--pumpkin);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-chevron::before { width: 10px; height: 1.5px; }
.faq-chevron::after  { width: 1.5px; height: 10px; }

.faq-item.open .faq-chevron {
  background: rgba(254, 114, 0, 0.15);
  border-color: var(--pumpkin);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
}

/* =========================================
   MOBILE RESPONSIVENESS FIXES
   ========================================= */

/* ── 900px — tablets / large phones ─────── */
@media (max-width: 900px) {
  /* Page hero stacks earlier */
  .page-hero .container    { flex-direction: column; gap: 28px; }
  .page-hero-img-wrap      { max-width: 100%; width: 100%; flex: none; height: 200px; }
  .page-hero h1            { font-size: clamp(2rem, 5vw, 3rem); }

  /* Contact layout single column */
  .contact-layout          { grid-template-columns: 1fr; gap: 40px; }

  /* Services grids single column earlier */
  .services-full-grid      { grid-template-columns: 1fr; gap: 24px; }
  .services-grid           { grid-template-columns: 1fr; }
  .event-split             { grid-template-columns: 1fr; }

  /* About page */
  .about-intro             { grid-template-columns: 1fr; gap: 40px; }
  .about-values            { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .studio-grid             { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Footer collapses earlier */
  .footer-grid             { grid-template-columns: 1fr; gap: 28px; }
}

/* ── 768px — phones (existing + additions) ── */
@media (max-width: 768px) {
  /* Hide nav CTA and phone — hamburger menu takes over */
  .nav-cta                 { display: none; }
  .nav-phone               { display: none !important; }

  /* Prevent nav from overflowing viewport */
  .nav-inner               { overflow: hidden; }

  /* Mobile menu height limit */
  .nav-links.open          { max-height: calc(100vh - 72px); overflow-y: auto; }

  /* Section title sizing */
  .section-title           { font-size: clamp(1.4rem, 4vw, 2rem); }
}

/* ── 600px — small phones ─────────────────── */
@media (max-width: 600px) {
  /* Form rows always single column */
  .form-row                { grid-template-columns: 1fr; }

  /* About values single column */
  .about-values            { grid-template-columns: 1fr; }

  /* FAQ answer inner padding tightened */
  .faq-answer-inner        { padding: 0 20px 18px; padding-top: 14px; }
  .faq-question            { padding: 18px 20px; font-size: 0.88rem; }
}

/* ── 480px — smallest phones ──────────────── */
@media (max-width: 480px) {
  /* Typography */
  h1                       { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  h2                       { font-size: clamp(1.4rem, 6vw, 2rem); }

  /* Section padding tighter */
  section                  { padding: 48px 0; }

  /* Hero stat grid — single column */
  .hero-stat-grid          { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-stat-card          { padding: 16px 14px; }
  .stat-number             { font-size: 1.6rem; }
  .stat-label              { font-size: 0.7rem; }

  /* Contact form padding */
  .contact-form            { padding: 24px 18px; border-radius: 12px; }

  /* Process steps */
  .step-number             { width: 52px; height: 52px; font-size: 1rem; }

  /* Tags smaller */
  .tag                     { font-size: 0.7rem; padding: 3px 8px; }

  /* Gallery filters */
  .filter-btn              { padding: 6px 12px; font-size: 0.72rem; }

  /* Rating summary */
  .rating-summary          { padding: 20px 16px; gap: 16px; }

  /* Footer bottom stacks */
  .footer-bottom           { flex-direction: column; text-align: center; gap: 12px; }

  /* Hamburger tap target */
  .nav-hamburger           { padding: 10px; }

  /* Contact info items tighter */
  .contact-info-item       { gap: 14px; margin-bottom: 24px; }
  .contact-icon-box        { width: 44px; height: 44px; flex-shrink: 0; }

  /* Page hero text */
  .page-hero               { padding: 56px 0 44px; }
  .page-hero p             { font-size: 0.95rem; }

  /* Prevent any element from blowing past viewport width */
  .hero-badge              { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
  .hero-description        { max-width: 100%; }
  .section-subtitle        { max-width: 100%; }

  /* CTA band */
  .cta-band                { padding: 56px 0 !important; }
}

/* ── 375px — very small phones ────────────── */
@media (max-width: 375px) {
  .container               { padding: 0 16px; }
  .hero-stat-grid          { grid-template-columns: 1fr; }
  .hero-stat-card          { padding: 14px 12px; }
}

/* =========================================
   HERO OVERFLOW FIX
   grid items default to min-width:auto which
   lets content blow past the track width
   ========================================= */

.hero-grid > *,
.hero-stat-grid > *,
.services-grid > *,
.testimonials-grid > *,
.event-split > *,
.process-steps > *,
.footer-grid > *,
.about-values > *,
.about-intro > * {
  min-width: 0;
}

/* Hero badge must not exceed its container on mobile */
.hero-badge {
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
}

/* Ensure hero children never exceed viewport */
@media (max-width: 768px) {
  .hero-grid,
  .hero-content,
  .hero-visual,
  .hero-stat-grid,
  .hero-stat-card,
  .hero-location-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-badge {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    padding: 5px 10px;
  }

  .hero-description {
    max-width: 100%;
  }
}

/* =========================================
   STAT CARD FONT FIX (mobile)
   ========================================= */

@media (max-width: 480px) {
  .hero-stat-card .stat-number {
    font-size: clamp(1rem, 5vw, 1.4rem);
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

/* =========================================
   PAGE TRANSITIONS
   ========================================= */

body {
  opacity: 0;
  transition: opacity 0.25s ease;
}

body.page-loaded {
  opacity: 1;
}

body.page-out {
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* =========================================
   BACK TO TOP BUTTON
   ========================================= */

#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pumpkin);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  pointer-events: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#back-to-top:hover {
  background: var(--pumpkin-dark);
}

#back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  #back-to-top {
    bottom: 20px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
}
}
