/* ============================================
   CARPATHIAN CRAFTS — Main Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg-primary: #0D0D0D;
  --bg-card: #1A1A1A;
  --bg-card-hover: #222222;
  --accent: #E8A030;
  --accent-hover: #F0B040;
  --accent-gradient: linear-gradient(135deg, #E8A030, #F0B040);
  --text-primary: #FFFFFF;
  --text-secondary: #999999;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1240px;
  --header-height: 72px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol {
  list-style: none;
}

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

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

button {
  cursor: pointer;
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Section spacing --- */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--accent);
  font-style: italic;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
  max-width: 100%;
  padding: 0 calc((100% - var(--container)) / 2 + 40px);
}

.header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: all var(--transition);
}

.header-phone:hover {
  background: rgba(37, 211, 102, 0.25);
  color: #25D366;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 4px;
  position: relative;
}

.lang-switcher a {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.lang-switcher a.active {
  background: var(--accent);
  color: #000;
}

.lang-switcher a:hover:not(.active) {
  background: rgba(255, 255, 255, 0.12);
}

/* Lang switcher — dropdown on mobile */
.lang-switcher .lang-dropdown {
  display: none;
}

@media (max-width: 767px) {
  .header .lang-switcher {
    gap: 0;
    padding: 0;
    background: none;
    position: relative;
  }

  .header .lang-switcher a:not(.active) {
    display: none;
    position: absolute;
  }

  .header .lang-switcher a.active {
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 6px;
    cursor: pointer;
  }

  .header .lang-switcher a.active::after {
    content: '▾';
    margin-left: 4px;
    font-size: 10px;
  }

  .header .lang-switcher.open a:not(.active) {
    display: block;
    right: 0;
    background: rgba(13, 13, 13, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  /* JS moves .active to first child, so 2nd/3rd are always the dropdown items */
  .header .lang-switcher.open a:nth-child(2) {
    top: calc(100% + 4px);
  }

  .header .lang-switcher.open a:nth-child(3) {
    top: calc(100% + 36px);
  }

  .header .lang-switcher.open a.active::after {
    content: '▴';
  }
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(13, 13, 13, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--accent);
}

.mobile-nav .lang-switcher {
  margin-top: 20px;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(13, 13, 13, 0.85) 0%,
    rgba(13, 13, 13, 0.5) 50%,
    rgba(13, 13, 13, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 620px;
}

.hero h1 strong {
  display: block;
  color: var(--accent);
  font-style: italic;
  font-size: 76px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 4px;
}

.hero-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.3);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.wa-icon {
  width: 1.4em;
  height: 1.4em;
  vertical-align: -0.3em;
  flex-shrink: 0;
}

.wa-icon--sm {
  width: 1.2em;
  height: 1.2em;
  vertical-align: -0.25em;
}

.btn-whatsapp {
  background: var(--accent-gradient);
  color: #000;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.3);
}

.btn-dark {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
}

.btn-dark:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
}

.features-strip .container {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.feature-item .feature-label {
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
  text-transform: uppercase;
  white-space: nowrap;
}

.feature-item .feature-text {
  color: var(--text-secondary);
  white-space: nowrap;
}

.feature-item .feature-check {
  color: var(--accent);
}

/* ============================================
   PORTFOLIO — PINTEREST GRID
   ============================================ */
.portfolio {
  padding: 100px 0;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.portfolio-header .section-subtitle {
  max-width: 400px;
}

.btn-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-see-all:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--transition), border-color var(--transition);
  border: 2px solid transparent;
}

.portfolio-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(232, 160, 48, 0.2);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

.portfolio-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  pointer-events: none;
}

.portfolio-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 1;
}

.portfolio-card-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 6px;
}

.portfolio-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.portfolio-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Pinterest layout — first row: 2 cards spanning 2 cols each, different heights */
.portfolio-card--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 420px;
}

.portfolio-card--medium {
  grid-column: span 2;
  min-height: 260px;
}

.portfolio-card--small {
  min-height: 220px;
}

/* ============================================
   SLIDER — FRESH INSTALLATIONS
   ============================================ */
.installations {
  padding: 80px 0;
}

.installations-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.installations-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.installations-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.slider-track.no-transition {
  transition: none;
}

.slider-card {
  flex: 0 0 calc(25% - 15px);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: box-shadow var(--transition), border-color var(--transition);
  border: 2px solid transparent;
}

.slider-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(232, 160, 48, 0.2);
}

.slider-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.slider-card:hover img {
  transform: scale(1.08);
}

.slider-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  pointer-events: none;
}

.slider-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(4px);
}

.slider-card-info .pin {
  color: var(--accent);
}

.slider-card-info .price {
  margin-left: auto;
  color: var(--accent);
  font-weight: 700;
}

/* Slider controls — overlaid on slider */
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  pointer-events: none;
  z-index: 2;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 20px;
  color: var(--text-primary);
  pointer-events: auto;
  background: rgba(13, 13, 13, 0.6);
  backdrop-filter: blur(4px);
}

.slider-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(13, 13, 13, 0.8);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 100px 0;
  text-align: center;
}

.pricing .section-title {
  margin-bottom: 8px;
}

.pricing .section-subtitle {
  margin: 0 auto 60px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: left;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card--popular {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

.pricing-card--popular img {
  height: 300px;
}

.pricing-card--popular:hover {
  transform: scale(1.08);
}

.pricing-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
}

.pricing-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.pricing-card-body {
  padding: 24px;
}

.pricing-card-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card-size {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.pricing-card-price {
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-card-price strong {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-card--popular .pricing-card-price strong {
  color: var(--accent);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 100px 0;
}

.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.why-us-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
}

.why-us-badge .number {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.why-us-badge .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.why-us-content .section-title {
  margin-bottom: 40px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-us-item {
  display: flex;
  gap: 16px;
}

.why-us-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--accent);
}

.why-us-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-us-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   BEFORE / AFTER
   ============================================ */
.before-after {
  padding: 80px 0;
  text-align: center;
}

.before-after .section-title {
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 16px;
  font-size: 38px;
}

.before-after-subtitle {
  font-size: 17px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.before-after-cta {
  margin-top: 40px;
}

.before-after-cta .btn {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.before-after-item {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.before-after-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-item--before img {
  filter: grayscale(100%);
}

.before-after-label {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  background: rgba(13, 13, 13, 0.8);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.before-after-item--before .before-after-label {
  left: 20px;
}

.before-after-item--after .before-after-label {
  right: 20px;
  background: var(--accent);
  color: #000;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact .section-title {
  margin-bottom: 16px;
}

.contact .section-subtitle {
  margin: 0 auto 48px;
  text-align: center;
}

.contact-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color var(--transition);
}

.contact-form input::placeholder {
  color: var(--text-secondary);
}

.contact-form input:focus {
  border-color: var(--accent);
}

.contact-form .btn {
  justify-content: center;
  padding: 18px;
  font-size: 16px;
}

.contact-disclaimer {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand .header-logo {
  margin-bottom: 24px;
}

.footer-brand h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
}

.footer-brand h3 span {
  color: var(--accent);
}

.footer-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-menu h4,
.footer-contacts h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 24px;
}

.footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-menu a {
  font-size: 15px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-menu a:hover {
  color: var(--text-primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-bottom-links {
  display: flex;
  gap: 32px;
}

.footer-bottom-links a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
}

/* ============================================
   INNER PAGES — Gallery
   ============================================ */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.page-hero .section-title {
  margin-bottom: 16px;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212, 160, 23, 0.08);
}

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

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
  aspect-ratio: 4/3;
}

.gallery-card:hover {
  transform: scale(1.02);
}

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

.gallery-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  pointer-events: none;
}

.gallery-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 1;
}

.gallery-card-title {
  font-size: 16px;
  font-weight: 600;
}

.gallery-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================
   INNER PAGES — Project / Category
   ============================================ */
.project-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.project-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.project-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

.project-hero-content {
  position: relative;
  z-index: 1;
  padding: 40px;
  width: 100%;
}

.project-hero-content .breadcrumb {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.project-hero-content .breadcrumb a {
  color: var(--accent);
}

.project-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-hero-content .project-meta {
  font-size: 14px;
  color: var(--text-secondary);
}

.project-body {
  padding: 60px 0;
}

.project-description {
  max-width: 800px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 48px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.project-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
  cursor: pointer;
}

.project-gallery img:hover {
  transform: scale(1.03);
}

.project-cta {
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
}

.project-cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET (768px)
   ============================================ */
@media (max-width: 1199px) {
  .header {
    padding: 0 24px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero h1 strong {
    font-size: 62px;
  }

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

  .portfolio-card--large {
    grid-column: span 2;
    min-height: 320px;
  }

  .slider-card {
    flex: 0 0 calc(33.333% - 14px);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .why-us .container {
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

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

/* ============================================
   RESPONSIVE — MOBILE (768px)
   ============================================ */
@media (max-width: 767px) {
  :root {
    --header-height: 60px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .header {
    padding: 0 16px;
  }

  .header-nav,
  .header-phone {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h1 strong {
    font-size: 44px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .features-strip .container {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .portfolio-header {
    flex-direction: column;
    gap: 16px;
  }

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

  .portfolio-card--large {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 260px;
  }

  .portfolio-card--medium {
    grid-column: span 1;
    min-height: 220px;
  }

  .slider-wrapper {
    padding: 0 16px;
  }

  .installations-header {
    padding: 0 16px;
  }

  .slider-card {
    flex: 0 0 calc(80% - 10px);
  }

  .pricing-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
    scrollbar-width: none;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .pricing-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .pricing-card--popular {
    transform: none;
  }

  .pricing-card--popular:hover {
    transform: none;
  }

  .pricing-card--popular img {
    height: 240px;
  }

  .why-us .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-us-image {
    order: -1;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .before-after-item {
    height: 250px;
  }

  .contact-form {
    padding: 0 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .gallery-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

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

  .project-hero-content h1 {
    font-size: 30px;
  }

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

  .footer-buttons {
    flex-direction: column;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 479px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero h1 strong {
    font-size: 36px;
  }

  .section-title {
    font-size: 26px;
  }

  .pricing-card-price strong {
    font-size: 28px;
  }
}
