/* ==========================================================================
   Premium Prestige Painting — styles.css
   ========================================================================== */

:root {
  --orange: #f57f25;
  --orange-dark: #d9651a;
  --orange-light: #f7944a;
  --blue: #55abe6;
  --blue-dark: #3a8bcb;
  --green: #a8ce45;
  --green-dark: #8fb53a;
  --white: #ffffff;
  --off-white: #faf7f2;
  --gray-light: #eae4dc;
  --gray: #7a7268;
  --dark: #26211c;
  --dark-2: #322c26;
  --shadow: 0 10px 30px rgba(38, 33, 28, 0.12);
  --shadow-lg: 0 20px 50px rgba(38, 33, 28, 0.18);
  --radius: 14px;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --bg: #ffffff;
  --bg-soft: #faf7f2;
  --surface: #ffffff;
  --card-bg: #faf7f2;
  --border: #eae4dc;
  --text: #26211c;
  --muted: #7a7268;
  --input-bg: #faf7f2;
}

/* Dark mode */
html[data-theme='dark'] {
  --bg: #171310;
  --bg-soft: #211b17;
  --surface: #211b17;
  --card-bg: #26201c;
  --border: #3b322b;
  --text: #f2ede7;
  --muted: #b6aca1;
  --input-bg: #26201c;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(245, 127, 37, 0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 127, 37, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 1.2rem 0;
}

.site-header.scrolled {
  background: var(--bg);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
  padding: 0.6rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 48px;
  flex-shrink: 0;
}

.brand-logo {
  width: 38px;
  height: 48px;
  display: block;
}

.footer-brand .brand-logo {
  width: 46px;
  height: 60px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.brand-tag {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: var(--blue);
}

.site-header.scrolled .brand-tag {
  color: var(--blue-dark);
}

.site-header.scrolled .brand-name {
  color: var(--text);
}

.main-nav {
  display: flex;
  gap: 1.6rem;
}

.main-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color 0.25s ease;
}

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

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

.main-nav a.active {
  color: var(--orange);
}

.site-header.scrolled .main-nav a {
  color: var(--text);
}

.site-header.scrolled .main-nav a.active,
.site-header.scrolled .main-nav a:hover {
  color: var(--orange-dark);
}

.header-call {
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* Call button over the dark hero (unscrolled header) */
.site-header:not(.scrolled) .header-call {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.site-header:not(.scrolled) .header-call:hover {
  background: var(--white);
  color: var(--dark);
}

/* Theme toggle */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.theme-toggle:hover {
  color: var(--orange);
  border-color: var(--orange);
  transform: rotate(15deg);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle .icon-moon {
  display: block;
}

.theme-toggle .icon-sun {
  display: none;
}

html[data-theme='dark'] .theme-toggle .icon-moon {
  display: none;
}

html[data-theme='dark'] .theme-toggle .icon-sun {
  display: block;
}

.site-header.scrolled .theme-toggle {
  color: var(--text);
}

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

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

.site-header.scrolled .nav-toggle span {
  background: var(--text);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(85, 171, 230, 0.18), transparent 42%),
    radial-gradient(circle at 82% 88%, rgba(245, 127, 37, 0.28), transparent 48%),
    radial-gradient(circle at 65% 20%, rgba(168, 206, 69, 0.08), transparent 35%),
    linear-gradient(160deg, #26211c 0%, #2e2620 55%, #3a2b1f 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, 0.02) 18px 19px);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 5rem;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffd9b8;
  background: rgba(245, 127, 37, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.45rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.hero-sub {
  max-width: 620px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-badges span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   Highlights strip
   ========================================================================== */

.strip {
  background: var(--orange);
  color: var(--white);
  position: relative;
  z-index: 3;
  box-shadow: 0 6px 24px rgba(245, 127, 37, 0.4);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--orange);
  padding: 1.3rem 1.4rem;
}

.strip-icon {
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  flex-shrink: 0;
}

.strip-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.strip-item div span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: 5.5rem 0;
  background: var(--bg);
}

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 1.6rem;
  background: var(--surface);
  color: var(--orange);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1.2rem;
}

.card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

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

/* About */
.about {
  background: var(--bg-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p:not(.section-eyebrow) {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.about-list {
  list-style: none;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.7rem;
}

.about-list li {
  position: relative;
  padding-left: 1.8rem;
  font-weight: 500;
}

.about-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--white);
  background: var(--orange);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.about-visual {
  position: relative;
  min-height: 380px;
}

.visual-card-main {
  position: absolute;
  inset: 0;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
}

.visual-swatch {
  flex: 1;
  position: relative;
}

.visual-swatch.blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.visual-swatch.green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.visual-swatch.orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.visual-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0 14px,
    rgba(255, 255, 255, 0.06) 14px 16px
  );
}

.visual-card-side {
  position: absolute;
  right: -30px;
  bottom: -30px;
  background: var(--dark);
  color: var(--white);
  padding: 1.8rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 230px;
}

.big-number {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}

.visual-card-side p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1140px;
  margin: 2.5rem auto 0;
  padding: 0 4%;
}

.gallery-item {
  position: relative;
  height: 270px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(38, 33, 28, 0.18);
  border: 4px solid var(--white);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.4rem 1.1rem 1rem;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--white);
  background: linear-gradient(transparent, rgba(15, 12, 9, 0.8));
}

.gallery-card::before {
  background: linear-gradient(160deg, #2a3c53 0%, #55abe6 60%, #f57f25 100%);
}

.gallery-interior::before {
  background: linear-gradient(160deg, #bcdcf3 0%, #85c1ea 45%, #55abe6 100%);
}

.gallery-exterior::before {
  background: linear-gradient(160deg, #fcd1ab 0%, #f8a45f 45%, #f57f25 100%);
}

.gallery-commercial::before {
  background: linear-gradient(160deg, #5a554f 0%, #37322c 50%, #26211c 100%);
}

.gallery-concrete::before {
  background: linear-gradient(160deg, #d8e7ae 0%, #c0d874 45%, #a8ce45 100%);
}

.gallery-trim::before {
  background: linear-gradient(160deg, #7f5a3b 0%, #5c3f26 50%, #3b2716 100%);
}

/* Testimonials */
.testimonials {
  background: var(--dark);
  color: var(--white);
}

.testimonials .section-eyebrow {
  color: var(--orange-light);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}

.testimonial {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}

.stars {
  color: var(--orange);
  letter-spacing: 3px;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.testimonial footer {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
}

/* Contact */
.contact {
  background: var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info p:not(.section-eyebrow) {
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245, 127, 37, 0.3);
}

.contact-row strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-row a,
.contact-row span {
  font-weight: 600;
  color: var(--text);
}

.contact-row a:hover {
  color: var(--orange-dark);
}

.quote-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow);
}

.quote-form h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.6rem;
}

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

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--input-bg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.3s ease;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 127, 37, 0.18);
  background: var(--surface);
}

.form-field input.invalid,
.form-field textarea.invalid {
  border-color: var(--orange-dark);
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  min-height: 1.4em;
}

.form-status.success {
  color: #1a7f37;
}

.form-status.error {
  color: var(--orange-dark);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand .brand-mark {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange-dark);
}

/* Gallery lightbox */
.gallery-item {
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 12, 9, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
  padding: 2rem;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-body {
  text-align: center;
  max-width: min(1100px, 94vw);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.lightbox.open .lightbox-body {
  transform: scale(1);
}

.lightbox-content {
  background: var(--white);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  display: inline-block;
}

.lightbox-content .gallery-item {
  width: min(1000px, 90vw);
  height: auto;
  aspect-ratio: 4 / 3;
  border: none;
  border-radius: 8px;
  box-shadow: none;
}

.lightbox-content .gallery-item img {
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 1.1rem;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: var(--white);
  font-size: 1.15rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 5;
}

.lightbox-close:hover {
  background: var(--orange-dark);
  transform: scale(1.08);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-visual {
    min-height: 320px;
    max-width: 480px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-call {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem;
    gap: 1.8rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.3);
    z-index: 1001;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    font-size: 1.15rem;
    color: var(--white) !important;
  }

  .main-nav a::after {
    background: var(--orange);
  }

  .nav-toggle {
    z-index: 1002;
  }

  .hero {
    min-height: 92vh;
  }

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

  .section {
    padding: 4rem 0;
  }

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

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

  .visual-card-side {
    right: 10px;
    bottom: -20px;
  }

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

  .gallery-item {
    height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
