/* ===================================
   LUMING MARKETING — PREMIUM EDITION
   Reference: Luxury / Editorial Brand Design
   Hero: Split Panel · Animated Rings · Marquee
=================================== */

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

:root {
  --green: #0C5536;
  --green-dk: #083d27;
  --green-lt: #167a4e;
  --green-pale: #f0f5f1;
  --green-mist: #e6f0e9;
  --ivory: #F2EDE0;
  --ivory-dk: #e8e2d4;
  --gold: #C5A55A;
  --gold-lt: #d8bc78;
  --white: #ffffff;
  --off-white: #fafafa;
  --bg: #f8f8f6;
  --border: #e2e6e2;
  --border-lt: #eeefee;
  --text: #0e1a12;
  --text-2: #4e5e54;
  --text-3: #8fa097;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --t: all 0.38s var(--ease);
  --tf: all 0.18s var(--ease);
  --shadow-sm: 0 4px 20px rgba(12, 85, 54, 0.08);
  --shadow-md: 0 16px 48px rgba(12, 85, 54, 0.12);
  --shadow-lg: 0 32px 80px rgba(12, 85, 54, 0.16);
  --font-sans: 'Inter', 'PingFang SC', 'Noto Sans SC', sans-serif;
  --font-serif: 'Noto Serif SC', 'STSong', serif;
}

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

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(12, 85, 54, 0.2);
  border-radius: 2px;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ===================================
   SHARED LAYOUT
=================================== */
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 72px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--green);
  opacity: 0.45;
}

.section-tag.light {
  color: rgba(242, 237, 224, 0.7);
}

.section-tag.light::before,
.section-tag.light::after {
  background: rgba(242, 237, 224, 0.5);
}

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--ivory);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.78;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--t);
  border: none;
  outline: none;
  letter-spacing: 0.02em;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(12, 85, 54, 0.3);
}

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

.btn-outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.32s;
}

/* ===================================
   NAVIGATION
=================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-lt);
  box-shadow: 0 1px 24px rgba(12, 85, 54, 0.07);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  transition: var(--t);
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-serif);
  letter-spacing: 0.06em;
  color: rgba(242, 237, 224, 0.95);
  transition: color 0.38s;
}

.navbar.scrolled .logo-text {
  color: var(--text);
}

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

.nav-link {
  color: rgba(242, 237, 224, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--tf);
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link {
  color: var(--text-2);
}

.navbar.scrolled .nav-link:hover {
  color: var(--green);
  background: var(--green-pale);
}

.nav-link.nav-cta {
  background: var(--ivory);
  color: var(--green) !important;
  font-weight: 700;
  padding: 9px 22px;
  letter-spacing: 0.02em;
}

.nav-link.nav-cta:hover {
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.navbar.scrolled .nav-link.nav-cta {
  background: var(--green);
  color: #fff !important;
}

.navbar.scrolled .nav-link.nav-cta:hover {
  background: var(--green-dk);
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ivory);
  transition: var(--tf);
}

.navbar.scrolled .hamburger span {
  background: var(--text);
}

/* ===================================
   HERO — SPLIT EDITORIAL LAYOUT
=================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--green-dk);
}

/* Subtle diagonal texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 61, 39, 0.9) 0%, rgba(12, 85, 54, 0.75) 50%, rgba(8, 61, 39, 0.95) 100%);
  z-index: 0;
}

/* Large subtle radial glow */
.hero::after {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

/* --- Left Panel --- */
.hero-left {
  position: relative;
  z-index: 2;
  padding: 120px 56px 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(197, 165, 90, 0.85);
  margin-bottom: 36px;
}

.hero-eyebrow-line {
  flex: 0 0 32px;
  height: 1px;
  background: rgba(197, 165, 90, 0.4);
}

.hero-title {
  font-size: clamp(52px, 5.5vw, 80px);
  font-family: var(--font-serif);
  line-height: 1.1;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-title-em {
  display: block;
  font-style: normal;
  font-weight: 300;
  color: rgba(242, 237, 224, 0.7);
  letter-spacing: -0.01em;
}

.hero-title-strong {
  display: block;
  font-weight: 800;
  color: var(--ivory);
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 16px;
  color: rgba(242, 237, 224, 0.5);
  line-height: 1.9;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Inline stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(242, 237, 224, 0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px;
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-num sup {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-lt);
  vertical-align: super;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(242, 237, 224, 0.4);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(242, 237, 224, 0.15);
  flex-shrink: 0;
}

/* Hero CTA buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--ivory);
  color: var(--green-dk);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--t);
  letter-spacing: 0.01em;
}

.btn-hero-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.btn-hero-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover svg {
  transform: translateX(4px);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border: 1.5px solid rgba(242, 237, 224, 0.3);
  color: rgba(242, 237, 224, 0.75);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--t);
}

.btn-hero-ghost:hover {
  border-color: rgba(242, 237, 224, 0.7);
  color: var(--ivory);
  transform: translateY(-2px);
  background: rgba(242, 237, 224, 0.06);
}

/* --- Right Panel: Logo Stage --- */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 80px 120px 40px;
  gap: 28px;
}

.hero-logo-stage {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated decorative rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242, 237, 224, 0.08);
}

.hero-ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(197, 165, 90, 0.12);
  animation: ringRotate 16s linear infinite;
}

.hero-ring-2 {
  width: 80%;
  height: 80%;
  border-color: rgba(242, 237, 224, 0.08);
  animation: ringRotate 24s linear infinite reverse;
}

.hero-ring-3 {
  width: 60%;
  height: 60%;
  border-style: dashed;
  border-color: rgba(197, 165, 90, 0.1);
  animation: ringRotate 36s linear infinite;
}

/* Accent dots on ring 1 */
.hero-ring-1::before,
.hero-ring-1::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-ring-1::before {
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-ring-1::after {
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-logo-img {
  width: 190px;
  height: 190px;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(197, 165, 90, 0.15);
  animation: logoGlow 6s ease-in-out infinite;
}

@keyframes logoGlow {

  0%,
  100% {
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(197, 165, 90, 0.15);
  }

  50% {
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.4), 0 0 40px rgba(197, 165, 90, 0.12), 0 0 0 1px rgba(197, 165, 90, 0.25);
  }
}

.hero-brand-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(242, 237, 224, 0.4);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-brand-cn {
  font-family: var(--font-serif);
  letter-spacing: 0.15em;
}

.hero-brand-divider {
  opacity: 0.4;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(242, 237, 224, 0.3);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(242, 237, 224, 0.35), transparent);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

/* ===================================
   MARQUEE STRIP
=================================== */
.marquee-strip {
  background: var(--green);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-content span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(242, 237, 224, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee-dot {
  color: rgba(197, 165, 90, 0.5) !important;
  font-size: 8px !important;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

/* ===================================
   SERVICES
=================================== */
.services {
  padding: 128px 56px;
  max-width: 1340px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: var(--t);
  cursor: default;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.service-card:hover {
  background: var(--green-pale);
}

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

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--green);
  margin-bottom: 20px;
  opacity: 0.8;
}

.service-title {
  font-size: 18px;
  font-family: var(--font-serif);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.service-features li {
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ===================================
   NUMBERS / STATS
=================================== */
.numbers {
  position: relative;
  padding: 120px 56px;
  overflow: hidden;
  background: var(--green);
}

.numbers-bg {
  position: absolute;
  inset: 0;
}

.numbers-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  mix-blend-mode: luminosity;
}

.numbers-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 61, 39, 0.5) 0%, transparent 50%, rgba(8, 61, 39, 0.5) 100%);
}

/* Big soft circle */
.numbers-overlay::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.numbers-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item {
  background: rgba(8, 61, 39, 0.5);
  padding: 52px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: var(--t);
  backdrop-filter: blur(4px);
}

.stat-item:hover {
  background: rgba(8, 61, 39, 0.8);
}

.stat-number {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-unit {
  font-size: 20px;
  font-weight: 500;
  color: var(--gold-lt);
  margin-top: 4px;
}

.stat-label {
  font-size: 12px;
  color: rgba(242, 237, 224, 0.45);
  margin-top: 14px;
  letter-spacing: 0.08em;
}

/* ===================================
   ABOUT
=================================== */
.about {
  padding: 128px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.about-logo-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-wrap::before {
  content: '';
  position: absolute;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: ringExpand 5s ease-in-out infinite;
}

@keyframes ringExpand {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.3;
  }
}

.about-logo {
  width: 210px;
  height: 210px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.about-logo-glow {
  display: none;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.about-tag {
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-2);
  background: var(--white);
  transition: var(--tf);
}

.about-tag:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
}

.about-text .section-title {
  text-align: left;
}

.about-text .section-tag {
  margin-bottom: 16px;
}

.about-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-lt);
}

.highlight-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.highlight-icon {
  font-size: 14px;
  color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
}

.highlight-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.highlight-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.highlight-item span {
  font-size: 13px;
  color: var(--text-2);
}

/* ===================================
   PORTFOLIO
=================================== */
.portfolio {
  padding: 128px 56px;
  background: var(--bg);
}

.portfolio .section-header {
  margin-bottom: 56px;
}

.portfolio-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-lt);
  transition: var(--t);
  box-shadow: var(--shadow-sm);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.portfolio-visual {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
  position: relative;
  overflow: hidden;
}

.portfolio-card:hover .portfolio-visual {
  transform: scale(1.06);
}

.pv-1 {
  background: linear-gradient(135deg, #094830, #0C5536, #1a7252);
}

.pv-2 {
  background: linear-gradient(135deg, #073425, #0C5536, #0f6847);
}

.pv-3 {
  background: linear-gradient(135deg, #5c3d00, #9a7030, #C5A55A);
}

.pv-1::after {
  content: '💄';
}

.pv-2::after {
  content: '🎮';
}

.pv-3::after {
  content: '🍜';
}

.pv-1::after,
.pv-2::after,
.pv-3::after {
  font-size: 58px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.portfolio-info {
  padding: 26px;
}

.portfolio-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  border: 1px solid rgba(12, 85, 54, 0.12);
  padding: 4px 10px;
  border-radius: 100px;
}

.portfolio-info h3 {
  font-size: 17px;
  font-family: var(--font-serif);
  font-weight: 700;
  margin: 12px 0 8px;
  color: var(--text);
}

.portfolio-info p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

.portfolio-info strong {
  color: var(--green);
  font-weight: 700;
}

/* ===================================
   CONTACT
=================================== */
.contact {
  padding: 128px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title {
  text-align: left;
}

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

.contact-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--green-pale);
  border: 1px solid rgba(12, 85, 54, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-item>div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.contact-item span {
  font-size: 13px;
  color: var(--text-2);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: var(--tf);
  width: 100%;
  appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(12, 85, 54, 0.07);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230C5536' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--bg);
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: #fff;
  color: var(--text);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: var(--green-pale);
  border: 1px solid rgba(12, 85, 54, 0.15);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-size: 14px;
}

.form-success svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-success.active {
  display: flex;
}

/* ===================================
   FOOTER
=================================== */
.footer {
  background: var(--text);
  padding: 72px 56px 36px;
}

/* Top accent line */
.footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 165, 90, 0.4), transparent);
  margin-bottom: 72px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-logo span {
  font-size: 17px;
  font-family: var(--font-serif);
  font-weight: 700;
  color: rgba(242, 237, 224, 0.9);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(242, 237, 224, 0.4);
  margin-bottom: 6px;
}

.footer-company {
  font-size: 12px;
  color: rgba(242, 237, 224, 0.2);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(242, 237, 224, 0.45);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.footer-col a {
  font-size: 13px;
  color: rgba(242, 237, 224, 0.25);
  text-decoration: none;
  transition: var(--tf);
}

.footer-col a:hover {
  color: rgba(242, 237, 224, 0.7);
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(242, 237, 224, 0.18);
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 140px 48px 60px;
    text-align: center;
    align-items: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-right {
    padding: 0 48px 120px;
  }

  .hero-scroll-indicator {
    left: 50%;
    transform: translateX(-50%);
  }

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

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

  .about-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-visual {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .nav-container {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 270px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 90px 28px 28px;
    gap: 4px;
    transform: translateX(100%);
    transition: var(--t);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    display: flex;
    transform: translateX(0);
  }

  .nav-link {
    padding: 12px 18px;
    font-size: 16px;
    border-radius: var(--radius-sm);
    color: var(--text-2) !important;
  }

  .nav-link:hover {
    color: var(--green) !important;
    background: var(--green-pale);
  }

  .hamburger {
    display: flex;
  }

  .services,
  .numbers,
  .about,
  .portfolio,
  .contact {
    padding: 80px 24px;
  }

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

  .contact-form-wrap {
    padding: 26px 20px;
  }

  .footer {
    padding: 48px 24px 28px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat {
    padding: 0 16px;
  }

  .hero-logo-stage {
    width: 240px;
    height: 240px;
  }

  .hero-logo-img {
    width: 150px;
    height: 150px;
  }

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

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-title {
    font-size: 42px;
  }
}