/* ============================================
   ORNATE CHRISTMAS LIGHTING — MAIN STYLESHEET
   ============================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --black:       #0D0D0D;
  --green-dark:  #142E21;
  --green:       #1B3A2A;
  --green-light: #2A5240;
  --gold:        #C9A84C;
  --gold-light:  #E2C06A;
  --cream:       #FAF6EE;
  --warm-white:  #F5F0E8;
  --charcoal:    #1A1A1A;
  --gray:        #6B7280;
  --gray-light:  #E5E7EB;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --transition:  0.3s ease;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.2);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 600; }

p { line-height: 1.75; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

.section--dark {
  background: var(--black);
  color: var(--warm-white);
}

.section--green {
  background: var(--green);
  color: var(--warm-white);
}

.section--cream {
  background: var(--cream);
  color: var(--charcoal);
}

.section--dark-green {
  background: var(--green-dark);
  color: var(--warm-white);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--warm-white);
  border: 1.5px solid rgba(245, 240, 232, 0.4);
}

.btn--outline:hover {
  border-color: var(--warm-white);
  background: rgba(245, 240, 232, 0.08);
  transform: translateY(-2px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.nav.nav--scrolled {
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}


.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__logo img {
  height: 52px;
  width: auto;
  
  filter: brightness(1.1);
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--warm-white);
  line-height: 1.2;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex: 1;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 232, 0.8);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  flex-shrink: 0;
}

.nav__admin-link {
  font-size: 0.78rem !important;
  color: rgba(245,240,232,0.3) !important;
  letter-spacing: 0.04em;
}
.nav__admin-link:hover { color: rgba(245,240,232,0.6) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- PROMO BANNER ---------- */
.promo-banner {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 0.7rem 2rem;
  font-size: 0.88rem;
  font-weight: 600;
  position: relative;
  z-index: 99;
}

.promo-banner a {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.promo-banner__close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--black);
  opacity: 0.6;
  line-height: 1;
}

.promo-banner__close:hover { opacity: 1; }

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

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 13, 13, 0.82) 0%,
    rgba(27, 58, 42, 0.55) 60%,
    rgba(13, 13, 13, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 10rem 0 6rem;
}

.hero__content .section-label {
  opacity: 0;
}

.hero__headline {
  color: var(--warm-white);
  margin-bottom: 1.25rem;
  opacity: 0;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245, 240, 232, 0.85);
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--green-dark);
  padding: 2rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.trust-bar__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--warm-white);
}

.trust-item__icon {
  color: var(--gold);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-item__text {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ---------- SERVICES ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--green-dark);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.35);
}

.service-card--primary {
  border-color: rgba(201, 168, 76, 0.3);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.service-card__title {
  color: var(--warm-white);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.service-card__text {
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.7);
}

.service-card__list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ---------- HOW IT WORKS ---------- */
.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

.process__grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
  pointer-events: none;
}

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

.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 1.25rem;
}

.process-step__title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.5rem;
}

.process-step__text {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.6;
}

/* ---------- MID-PAGE CTA ---------- */
.mid-cta {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--black) 100%);
}

.mid-cta h2 {
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.mid-cta p {
  color: rgba(245, 240, 232, 0.7);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* ---------- GALLERY PREVIEW ---------- */
.gallery-preview {
  padding: 6rem 0;
}

.gallery-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  will-change: transform;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

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

/* ---------- WHY CHOOSE ORNATE ---------- */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}

.why__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-feature__icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--gold);
}

.why-feature__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.35rem;
}

.why-feature__text {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.65;
}

.why__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  background: var(--green);
  padding: 6rem 0;
  text-align: center;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--warm-white);
  max-width: 820px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.testimonial__attribution {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.6);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial__yelp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: all var(--transition);
}

.testimonial__yelp:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

/* ---------- FAQ ---------- */
.faq__list {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.faq-item:first-child {
  border-top: 1px solid rgba(201,168,76,0.15);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--warm-white);
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--gold);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--black);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.75;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: 8rem 0;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(27,58,42,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  color: var(--warm-white);
  margin-bottom: 1rem;
  position: relative;
}

.final-cta__slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--gold);
  margin-bottom: 2.5rem;
  position: relative;
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.final-cta__phone {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.5);
}

.final-cta__phone a {
  color: var(--gold);
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--green-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
  
}

.footer__brand-text {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.6);
  max-width: 280px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--warm-white);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer__contact-item span:first-child {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a,
.footer__contact-item p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  transition: color var(--transition);
  line-height: 1.5;
}

.footer__contact-item a:hover {
  color: var(--warm-white);
}

.footer__bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.4);
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--black) 0%, var(--green-dark) 100%);
  text-align: center;
}

.page-hero h1 {
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.7);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- SERVICES PAGE ---------- */
.services-detail {
  padding: 6rem 0;
}

.services-detail__primary {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 4rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(201,168,76,0.2);
}

.services-detail__primary h2 {
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.services-detail__primary p {
  color: rgba(245,240,232,0.75);
  max-width: 640px;
  margin-bottom: 2rem;
}

.services-detail__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.services-detail__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(245,240,232,0.8);
  font-weight: 500;
}

.services-detail__list li span {
  color: var(--gold);
}

.services-secondary__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ---------- GALLERY PAGE ---------- */
.gallery-page {
  padding: 4rem 0 6rem;
}

.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-masonry-item:hover img {
  transform: scale(1.04);
}

/* ---------- QUOTE PAGE ---------- */
.quote-section {
  padding: 4rem 0 6rem;
}

.quote-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.quote-info h3 {
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.quote-info p {
  color: rgba(245,240,232,0.7);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.quote-info__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.quote-info__item-icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.quote-info__item-text {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.6;
}

.quote-minimum-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: rgba(245,240,232,0.65);
}

.quote-minimum-note strong {
  color: var(--gold);
}

/* ---------- FORM STYLES ---------- */
.form {
  background: var(--green-dark);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

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

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(245,240,232,0.7);
  text-transform: uppercase;
}

.form__input,
.form__select,
.form__textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--warm-white);
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(245,240,232,0.3);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__select option {
  background: var(--green-dark);
  color: var(--warm-white);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.form__success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form__success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form__success h3 {
  color: var(--warm-white);
  margin-bottom: 0.75rem;
}

.form__success p {
  color: rgba(245,240,232,0.7);
  font-size: 0.95rem;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--warm-white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  background: none;
  border: none;
  line-height: 1;
}

.lightbox__close:hover { opacity: 1; }

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* ---------- MOBILE NAV ---------- */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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

.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--warm-white);
  transition: color var(--transition);
}

.nav__mobile a:hover {
  color: var(--gold);
}

.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--warm-white);
  cursor: pointer;
}

/* ---------- UTILITY ---------- */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
  .why__image {
    max-height: 400px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__content { padding: 8rem 0 5rem; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .gallery-grid .gallery-item:first-child {
    grid-row: span 1;
  }

  .gallery-masonry { columns: 2; }

  .form__row { grid-template-columns: 1fr; }

  .quote-form-wrapper {
    grid-template-columns: 1fr;
  }

  .services-secondary__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__brand { grid-column: span 1; }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .process__grid::before { display: none; }

  .trust-bar__grid {
    gap: 1.25rem 2rem;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__actions { flex-direction: column; }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-masonry { columns: 1; }
  .services-detail__primary { padding: 2rem 1.5rem; }
  .form { padding: 1.5rem; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__scroll { animation: none; }
}
