/* ============================================
   LWIN & MEE STUDIO — GLOBAL STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #0d0d0d;
  color: #f5f0e8;
  transition: background 0.5s ease, color 0.5s ease;
}

body.day-mode {
  background: #f7f4ef;
  color: #1a1612;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 36px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.5s, border-color 0.5s;
}

.site-nav.day {
  background: rgba(247,244,239,0.9);
  border-bottom-color: rgba(0,0,0,0.06);
}

.nav-inner {
  width: 100%; display: flex;
  align-items: center; justify-content: flex-start;
}
.nav-logo { margin-right: auto; }
.nav-links { order: 2; }
.nav-right { order: 3; margin-left: 20px; }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700;
  letter-spacing: 0.04em; color: #f5f0e8;
  transition: color 0.5s; white-space: nowrap;
}

.site-nav.day .nav-logo { color: #1a1612; }
.nav-logo .amp, .footer-logo .amp { color: #c9a84c; font-style: italic; margin: 0 3px; }

.nav-links {
  display: flex; gap: 28px; align-items: center;
}

.nav-links .nav-link {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer;
  color: rgba(245,240,232,0.5); transition: color 0.3s;
  position: relative;
}

.site-nav.day .nav-links .nav-link { color: rgba(26,22,18,0.5); }
.nav-links .nav-link:hover { color: #c9a84c; }

.nav-links .nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: #c9a84c; transition: width 0.3s;
}
.nav-links .nav-link:hover::after { width: 100%; }

.nav-link--cta {
  background: #c9a84c; color: #111 !important;
  padding: 8px 18px; border-radius: 2px;
  font-weight: 600; letter-spacing: 0.08em;
  transition: background 0.25s !important;
}
.nav-link--cta:hover { background: #e0c06a !important; }
.nav-link--cta::after { display: none !important; }

.toggle-wrap { display: flex; align-items: center; gap: 8px; }
.toggle-icon { font-size: 13px; user-select: none; }
.toggle-track {
  width: 42px; height: 22px; border-radius: 11px;
  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.1);
  position: relative; cursor: pointer;
  transition: background 0.4s, border-color 0.4s;
}
.toggle-track.day-mode { background: rgba(201,168,76,0.25); border-color: rgba(201,168,76,0.7); }
.toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #c9a84c;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.toggle-track.day-mode .toggle-thumb { transform: translateX(20px); }

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

.btn-primary {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 34px; border-radius: 2px; cursor: pointer; border: none;
  background-color: #c9a84c; color: #ffffff; display: inline-block;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover { background-color: #e0c06a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.4); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 32px; border-radius: 2px; cursor: pointer; display: inline-block;
  background-color: transparent; color: #ffffff; border: 2px solid #ffffff;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
}
.btn-secondary:hover { background-color: rgba(255,255,255,0.1); transform: translateY(-2px); }

body.day-mode .btn-secondary { color: #111; border-color: #111; }
body.day-mode .btn-secondary:hover { background-color: rgba(0,0,0,0.06); }

.btn-full { width: 100%; text-align: center; }

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

.hero-wrap {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; padding: 80px 24px 60px;
  cursor: default;
  transition: background 0.5s ease;
  background: #0d0d0d;
}
body.day-mode .hero-wrap { background: #f7f4ef; }

.bg-layer {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
body.day-mode .hero-grid {
  background-image:
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
}
.top-glow {
  position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%); width: 600px; height: 350px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.13) 0%, transparent 70%);
  transition: opacity 0.5s;
}
body.day-mode .top-glow { opacity: 0; }
.mouse-glow {
  position: absolute; width: 420px; height: 420px;
  border-radius: 50%; transform: translate(-50%, -50%);
  opacity: 0; transition: opacity 0.2s ease; pointer-events: none;
  background: radial-gradient(circle, rgba(201,168,76,0.38) 0%, rgba(201,168,76,0.12) 35%, transparent 70%);
}

.hero-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: #c9a84c;
  margin-bottom: 28px; display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 32px; height: 1px;
  background: #c9a84c; opacity: 0.6; transition: width 0.4s;
}
.hero-wrap:hover .hero-eyebrow::before,
.hero-wrap:hover .hero-eyebrow::after { width: 52px; }

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 68px); font-weight: 900;
  line-height: 1.1; margin-bottom: 10px; max-width: 700px;
  color: #f5f0e8; transition: color 0.5s;
}
body.day-mode .hero-headline { color: #1a1612; }
.hero-headline em { font-style: italic; color: #c9a84c; }

.hero-sub {
  font-size: 16px; font-weight: 300; max-width: 440px;
  line-height: 1.75; margin: 20px 0 40px;
  color: rgba(245,240,232,0.6); transition: color 0.5s;
}
body.day-mode .hero-sub { color: rgba(26,22,18,0.65); }

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center; position: relative; z-index: 10;
}

.hero-bottom {
  position: relative; z-index: 10; width: 100%;
  display: flex; align-items: center; justify-content: center; margin-top: 56px;
}
.label-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  border: 1px solid rgba(201,168,76,0.4); color: #c9a84c;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 2px; white-space: nowrap;
  background: #1a1a1a; transition: background 0.5s;
}
body.day-mode .label-tag { background: #ede8e0; color: #a07830; border-color: rgba(160,120,48,0.5); }
.trust-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.trust-pill {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.08);
  color: rgba(245,240,232,0.35); transition: color 0.3s;
}
body.day-mode .trust-pill { color: rgba(26,22,18,0.45); border-right-color: rgba(0,0,0,0.1); }
.trust-pill:hover { color: rgba(201,168,76,0.9); }
.trust-pill:last-child { border-right: none; }

.scroll-hint {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, #c9a84c, transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }
.scroll-label {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,240,232,0.3); transition: color 0.5s;
}
body.day-mode .scroll-label { color: rgba(26,22,18,0.3); }

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

.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.5s, border-color 0.5s;
}
body.day-mode .page-hero {
  background: #f7f4ef;
  border-bottom-color: rgba(0,0,0,0.06);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 900;
  line-height: 1.1; margin: 16px 0 20px;
  color: #f5f0e8; transition: color 0.5s;
}
body.day-mode .page-hero h1 { color: #1a1612; }
.page-hero h1 em { font-style: italic; color: #c9a84c; }
.page-hero p {
  font-size: 16px; font-weight: 300; max-width: 500px;
  margin: 0 auto; line-height: 1.75;
  color: rgba(245,240,232,0.6); transition: color 0.5s;
}
body.day-mode .page-hero p { color: rgba(26,22,18,0.65); }

/* ============================================
   SECTIONS
   ============================================ */

.section-dark {
  padding: 100px 24px;
  background: #0d0d0d;
  transition: background 0.5s;
}
body.day-mode .section-dark { background: #f7f4ef; }

.section-alt {
  padding: 100px 24px;
  background: #111111;
  transition: background 0.5s;
}
body.day-mode .section-alt { background: #ede8e0; }

.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  margin: 12px 0 16px; color: #f5f0e8; transition: color 0.5s;
}
body.day-mode .section-header h2 { color: #1a1612; }
.section-header p {
  font-size: 16px; font-weight: 300; max-width: 480px;
  margin: 0 auto; line-height: 1.75;
  color: rgba(245,240,232,0.6); transition: color 0.5s;
}
body.day-mode .section-header p { color: rgba(26,22,18,0.6); }

.section-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: #c9a84c;
}

.section-cta { text-align: center; margin-top: 48px; }

/* ============================================
   HOME — AUDIENCE CARDS
   ============================================ */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.audience-card {
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; padding: 44px 36px;
  display: flex; flex-direction: column;
  transition: background 0.5s, border-color 0.3s, transform 0.2s;
}
body.day-mode .audience-card { background: #fff; border-color: rgba(0,0,0,0.08); }
.audience-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }

.audience-card--featured { border-color: #c9a84c; }

.audience-icon { color: #c9a84c; font-size: 18px; letter-spacing: 4px; margin-bottom: 20px; }

.audience-card h3 {
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700;
  color: #f5f0e8; margin-bottom: 16px; transition: color 0.5s;
}
body.day-mode .audience-card h3 { color: #1a1612; }

.audience-card p {
  font-size: 15px; font-weight: 300; line-height: 1.75;
  color: rgba(245,240,232,0.6); flex: 1; margin-bottom: 20px; transition: color 0.5s;
}
body.day-mode .audience-card p { color: rgba(26,22,18,0.6); }

/* ============================================
   HOME — PACKAGE CARDS
   ============================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pkg-card {
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; padding: 36px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.5s, border-color 0.3s, transform 0.2s;
}
body.day-mode .pkg-card { background: #fff; border-color: rgba(0,0,0,0.08); }
.pkg-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }

.pkg-card--featured {
  border-color: #c9a84c; position: relative;
}

.pkg-badge {
  display: inline-block; background: #c9a84c; color: #111;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 2px;
  margin-bottom: 8px; width: fit-content;
}

.pkg-icon { color: #c9a84c; font-size: 18px; letter-spacing: 4px; }

.pkg-card h3 {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  color: #f5f0e8; transition: color 0.5s;
}
body.day-mode .pkg-card h3 { color: #1a1612; }

.pkg-card p {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(245,240,232,0.6); flex: 1; transition: color 0.5s;
}
body.day-mode .pkg-card p { color: rgba(26,22,18,0.6); }

.pkg-price {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 700; color: #c9a84c;
}

/* ============================================
   HOME — HOW IT WORKS
   ============================================ */

.steps {
  display: flex; align-items: flex-start;
  gap: 0; flex-wrap: wrap; justify-content: center;
}

.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 260px; flex: 1;
}

.step-number {
  font-family: 'Playfair Display', serif; font-size: 48px;
  font-weight: 900; color: #c9a84c; opacity: 0.3;
  line-height: 1; margin-bottom: 16px;
}

.step-content h3 {
  font-family: 'Playfair Display', serif; font-size: 18px;
  font-weight: 700; margin-bottom: 10px;
  color: #f5f0e8; transition: color 0.5s;
}
body.day-mode .step-content h3 { color: #1a1612; }

.step-content p {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(245,240,232,0.6); transition: color 0.5s;
}
body.day-mode .step-content p { color: rgba(26,22,18,0.6); }

.step-connector {
  flex: 0 0 60px; height: 1px;
  background: rgba(201,168,76,0.3); margin-top: 28px;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  padding: 80px 24px;
  background: #c9a84c;
}

.cta-banner-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}

.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px); font-weight: 900;
  color: #111; margin-bottom: 8px;
}

.cta-text p {
  font-size: 15px; font-weight: 300;
  color: rgba(17,17,17,0.7); max-width: 480px;
}

.cta-banner .btn-primary {
  background: #111; color: #fff !important; white-space: nowrap;
}
.cta-banner .btn-primary:hover { background: #2a2a2a; }

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

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.package-card {
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; padding: 40px 32px;
  display: flex; flex-direction: column; gap: 24px;
  transition: background 0.5s, border-color 0.3s;
  position: relative;
}
body.day-mode .package-card { background: #fff; border-color: rgba(0,0,0,0.08); }
.package-card--featured { border-color: #c9a84c; }

.package-tier {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: #c9a84c;
}

.package-price {
  font-family: 'Playfair Display', serif; font-size: 36px;
  font-weight: 900; color: #f5f0e8; transition: color 0.5s;
}
body.day-mode .package-price { color: #1a1612; }
.package-price span { font-size: 20px; opacity: 0.6; }

.package-desc {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(245,240,232,0.6); transition: color 0.5s;
}
body.day-mode .package-desc { color: rgba(26,22,18,0.6); }

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

.package-features li {
  font-size: 14px; color: rgba(245,240,232,0.7);
  padding-left: 20px; position: relative; transition: color 0.5s;
}
body.day-mode .package-features li { color: rgba(26,22,18,0.7); }
.package-features li::before {
  content: '✓'; position: absolute; left: 0; color: #c9a84c; font-weight: 600;
}

.maintenance-card {
  max-width: 500px; margin: 0 auto; text-align: center;
  background: #1a1a1a; border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px; padding: 48px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  transition: background 0.5s;
}
body.day-mode .maintenance-card { background: #fff; }

.maintenance-price {
  font-family: 'Playfair Display', serif; font-size: 48px;
  font-weight: 900; color: #c9a84c;
}
.maintenance-price span { font-size: 28px; opacity: 0.7; }
.maintenance-price small { font-size: 16px; color: rgba(201,168,76,0.7); }

.maintenance-features { text-align: left; width: 100%; }

/* ============================================
   WORK / PORTFOLIO PAGE
   ============================================ */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.portfolio-card {
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: background 0.5s, border-color 0.3s, transform 0.2s;
}
body.day-mode .portfolio-card { background: #fff; border-color: rgba(0,0,0,0.08); }
.portfolio-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }

.portfolio-img {
  height: 220px; display: flex;
  align-items: center; justify-content: center;
}

.placeholder-img { background: #222; transition: background 0.5s; }
body.day-mode .placeholder-img { background: #e8e3db; }

.coming-soon-img { background: rgba(201,168,76,0.1); border: 2px dashed rgba(201,168,76,0.3); }

.placeholder-content {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(245,240,232,0.3); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.5s;
  text-align: center;
  padding: 0 12px; 
}
body.day-mode .placeholder-content { color: rgba(26,22,18,0.3); }
.coming-soon-img .placeholder-content { color: #c9a84c; }
.placeholder-icon { font-size: 36px; }

.portfolio-info {
  padding: 24px 28px;
  display: flex; flex-direction: column; flex: 1;
}

.portfolio-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: #c9a84c;
}

.portfolio-info h3 {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 700; margin: 8px 0 10px;
  color: #f5f0e8; transition: color 0.5s;
}
body.day-mode .portfolio-info h3 { color: #1a1612; }

.portfolio-info p {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(245,240,232,0.6); margin-bottom: 0; flex: 1; transition: color 0.5s;
}
body.day-mode .portfolio-info p { color: rgba(26,22,18,0.6); }

.portfolio-package {
  font-size: 12px; font-weight: 500; color: rgba(201,168,76,0.7);
  letter-spacing: 0.05em;
}

.portfolio-package-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px; margin-top: 14px;
}
body.day-mode .portfolio-package-row { border-top-color: rgba(0,0,0,0.08); }

.btn-view-demo {
  display: inline-block;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.btn-view-demo:hover {
  background: #c9a84c;
  color: #111;
}

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

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

@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

.about-text { display: flex; flex-direction: column; gap: 20px; }

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px); font-weight: 900;
  color: #f5f0e8; margin: 12px 0; transition: color 0.5s;
}
body.day-mode .about-text h2 { color: #1a1612; }

.about-text p {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: rgba(245,240,232,0.65); transition: color 0.5s;
}
body.day-mode .about-text p { color: rgba(26,22,18,0.65); }

.about-visual { display: flex; flex-direction: column; gap: 20px; }

.about-card {
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: background 0.5s, border-color 0.3s;
}
body.day-mode .about-card { background: #fff; border-color: rgba(0,0,0,0.08); }
.about-card:hover { border-color: rgba(201,168,76,0.3); }

.about-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 700; color: #c9a84c; flex-shrink: 0;
}
.about-avatar--mee { background: rgba(201,168,76,0.1); }

.about-info h3 {
  font-family: 'Playfair Display', serif; font-size: 18px;
  font-weight: 700; color: #f5f0e8; margin-bottom: 4px; transition: color 0.5s;
}
body.day-mode .about-info h3 { color: #1a1612; }

.about-info span {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #c9a84c; display: block; margin-bottom: 8px;
}

.about-info p {
  font-size: 13px; font-weight: 300; line-height: 1.7;
  color: rgba(245,240,232,0.6); transition: color 0.5s;
}
body.day-mode .about-info p { color: rgba(26,22,18,0.6); }

.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.value-card {
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; padding: 32px 24px;
  transition: background 0.5s, border-color 0.3s, transform 0.2s;
}
body.day-mode .value-card { background: #fff; border-color: rgba(0,0,0,0.08); }
.value-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }

.value-icon { color: #c9a84c; font-size: 20px; margin-bottom: 14px; }

.value-card h3 {
  font-family: 'Playfair Display', serif; font-size: 18px;
  font-weight: 700; color: #f5f0e8; margin-bottom: 10px; transition: color 0.5s;
}
body.day-mode .value-card h3 { color: #1a1612; }

.value-card p {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(245,240,232,0.6); transition: color 0.5s;
}
body.day-mode .value-card p { color: rgba(26,22,18,0.6); }

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

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-form-wrap h2,
.contact-info h2 {
  font-family: 'Playfair Display', serif; font-size: 28px;
  font-weight: 700; color: #f5f0e8; margin-bottom: 32px; transition: color 0.5s;
}
body.day-mode .contact-form-wrap h2,
body.day-mode .contact-info h2 { color: #1a1612; }

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

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

.form-group label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,240,232,0.5); transition: color 0.5s;
}
body.day-mode .form-group label { color: rgba(26,22,18,0.5); }

.form-group input,
.form-group select,
.form-group textarea {
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px; padding: 12px 16px; font-family: 'Inter', sans-serif;
  font-size: 14px; color: #f5f0e8; outline: none; width: 100%;
  transition: border-color 0.3s, background 0.5s, color 0.5s;
}
body.day-mode .form-group input,
body.day-mode .form-group select,
body.day-mode .form-group textarea {
  background: #fff; border-color: rgba(0,0,0,0.12); color: #1a1612;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #c9a84c; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,232,0.25); }
body.day-mode .form-group input::placeholder,
body.day-mode .form-group textarea::placeholder { color: rgba(26,22,18,0.3); }

.form-group select option { background: #1a1a1a; color: #f5f0e8; }

.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; color: #c9a84c;
}

.contact-detail span {
  font-size: 10px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: #c9a84c; display: block; margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  font-size: 14px; font-weight: 300;
  color: rgba(245,240,232,0.7); transition: color 0.5s;
}
body.day-mode .contact-detail p,
body.day-mode .contact-detail a { color: rgba(26,22,18,0.7); }
.contact-detail a:hover { color: #c9a84c; }

.contact-community {
  margin-top: 40px; padding: 28px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
}

.contact-community h3 {
  font-family: 'Playfair Display', serif; font-size: 18px;
  font-weight: 700; color: #f5f0e8; margin-bottom: 10px; transition: color 0.5s;
}
body.day-mode .contact-community h3 { color: #1a1612; }

.contact-community p {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(245,240,232,0.6); margin-bottom: 16px; transition: color 0.5s;
}
body.day-mode .contact-community p { color: rgba(26,22,18,0.6); }

/* Contact community — standalone section block */
.contact-community-block {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px; padding: 44px 48px;
}

.contact-community-text { flex: 1; min-width: 220px; }

.contact-community-text h2 {
  font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700;
  color: #f5f0e8; margin: 10px 0 12px; transition: color 0.5s;
}
body.day-mode .contact-community-text h2 { color: #1a1612; }

.contact-community-text p {
  font-size: 15px; font-weight: 300; line-height: 1.75;
  color: rgba(245,240,232,0.6); margin: 0; transition: color 0.5s;
}
body.day-mode .contact-community-text p { color: rgba(26,22,18,0.6); }

@media (max-width: 600px) {
  .contact-community-block { flex-direction: column; align-items: flex-start; padding: 32px 28px; }
}

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

.site-footer {
  padding: 60px 24px;
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.05);
  transition: background 0.5s, border-color 0.5s;
}
body.day-mode .site-footer {
  background: #e8e3db;
  border-top-color: rgba(0,0,0,0.08);
}

.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px; text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 700; color: #f5f0e8; transition: color 0.5s;
}
body.day-mode .footer-logo { color: #1a1612; }

.footer-tagline {
  font-size: 13px; font-weight: 300;
  color: rgba(245,240,232,0.4); transition: color 0.5s;
}
body.day-mode .footer-tagline { color: rgba(26,22,18,0.4); }

.footer-links {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  margin: 8px 0;
}

.footer-links a {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,240,232,0.4); transition: color 0.3s;
}
body.day-mode .footer-links a { color: rgba(26,22,18,0.4); }
.footer-links a:hover { color: #c9a84c; }

.footer-copy {
  font-size: 11px; color: rgba(245,240,232,0.25); transition: color 0.5s;
}
body.day-mode .footer-copy { color: rgba(26,22,18,0.25); }

/* ============================================
   BROWSER MOCKUPS — SERVICES PAGE
   ============================================ */

.pkg-mockup { margin: 16px 16px 0; }

.mock-browser {
  background: #fff; border-radius: 6px; overflow: hidden;
  border: 1px solid #e0dbd3;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.mock-bar {
  background: #f0ede8; padding: 6px 8px;
  display: flex; align-items: center; gap: 4px;
  border-bottom: 1px solid #e0dbd3;
}

.mock-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.d1 { background: #ff6b6b; }
.d2 { background: #ffd93d; }
.d3 { background: #6bcb77; }

.mock-url {
  flex: 1; margin-left: 6px; background: #fff;
  border-radius: 2px; padding: 2px 6px;
  font-size: 9px; color: #bbb;
  border: 0.5px solid #e8e4df; font-family: monospace;
}

.mock-body { background: #fff; display: flex; flex-direction: column; }

.mock-nav-strip {
  height: 18px; background: #1a1a1a;
  display: flex; align-items: center; padding: 0 6px;
}
.mock-nav-rich { justify-content: space-between; }
.mock-nav-logo { width: 32px; height: 5px; background: #c9a84c; border-radius: 1px; }
.mock-nav-links { display: flex; gap: 4px; align-items: center; }
.mock-nav-link { width: 14px; height: 3px; background: rgba(255,255,255,0.3); border-radius: 1px; }
.mock-nav-cta { width: 20px; height: 10px; background: #c9a84c; border-radius: 1px; }

.mock-hero-strip { padding: 8px 6px; display: flex; align-items: center; background: #f7f4ef; }
.mock-hero-rich { background: #111; }
.mock-hero-full { background: #111; justify-content: space-between; }

.mock-hero-text { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.mock-hero-img { width: 40px; height: 36px; background: #2a2a2a; border-radius: 2px; flex-shrink: 0; }

.mock-line { height: 4px; border-radius: 1px; background: #e0dbd3; }
.mock-line-dk { background: rgba(255,255,255,0.2); }

.w80 { width: 80%; } .w70 { width: 70%; }
.w60 { width: 60%; } .w50 { width: 50%; }
.w40 { width: 40%; } .w35 { width: 35%; }

.mock-btns-row { display: flex; gap: 3px; margin-top: 3px; }
.mock-btn-sm { width: 28px; height: 8px; background: #c9a84c; border-radius: 1px; margin-top: 4px; }
.mock-btn-gold { background: #c9a84c; }
.mock-btn-outline { background: transparent; border: 0.5px solid rgba(255,255,255,0.4); }

.mock-trust-bar {
  height: 10px; background: #f0ede8;
  border-top: 0.5px solid #e8e4df; border-bottom: 0.5px solid #e8e4df;
}

.mock-three-cols { display: flex; gap: 3px; padding: 5px 6px; }
.mock-col-card { flex: 1; height: 28px; background: #f5f2ee; border-radius: 2px; border: 0.5px solid #e8e4df; }
.mock-col-featured { border-color: #c9a84c; background: #fdf8f0; }

.mock-shop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; padding: 5px 6px; }
.mock-shop-item { height: 22px; background: #f5f2ee; border-radius: 2px; border: 0.5px solid #e8e4df; }

.mock-booking-strip {
  display: flex; gap: 5px; padding: 5px 6px;
  background: #fafafa; border-top: 0.5px solid #e8e4df; align-items: center;
}
.mock-booking-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.mock-calendar { width: 32px; height: 26px; background: #fff; border: 0.5px solid #e8e4df; border-radius: 2px; flex-shrink: 0; }

.mock-footer-strip { height: 12px; background: #1a1a1a; }
.mock-footer-rich { height: 16px; background: #111; }
/* ── Services Page: Intro Block ── */
.pkg-intro {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 1rem;
}

.pkg-intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-family: 'Playfair Display', serif;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.pkg-intro-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  line-height: 1.7;
}

.pkg-trust-line {
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.85;
  letter-spacing: 0.02em;
}

/* ── Button Hover Interactions ── */
.btn-primary {
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: var(--gold);
  color: #0f0d00;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ── Maintenance: Center feature list inside card ── */
.maintenance-features-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.maintenance-features-wrap .maintenance-features {
  text-align: left;
}
/* ── Services Page Overrides ── */

/* Outline buttons on Starter + Full Custom */
.package-card:not(.package-card--featured) .btn-primary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.package-card:not(.package-card--featured) .btn-primary:hover {
  background: var(--gold);
  color: #0f0d00;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.25);
}

/* Filled gold button on Growth Site */
.package-card--featured .btn-primary {
  background: var(--gold);
  color: #0f0d00;
  border: 1px solid var(--gold);
}

.package-card--featured .btn-primary:hover {
  background: #e0c070;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
}

/* Package tier — serif name style */
.package-tier {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.25rem;
  text-transform: none;
  letter-spacing: 0;
}

.package-card--featured .package-tier {
  color: var(--gold);
}

/* Tighten gap between packages and maintenance */
.section-alt {
  padding-top: 2rem;
}

/* Maintenance card — center the feature list */
.maintenance-card {
  text-align: center;
}

.maintenance-features-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.maintenance-features-wrap .maintenance-features {
  text-align: left;
  display: inline-block;
}
/* ── Fix: Gold trust line ── */
.pkg-trust-line {
  color: #c9a84c !important;
  opacity: 0.9;
}

/* ============================================
   SERVICES — DISCOUNT CALLOUT
   ============================================ */

.service-discount-callout {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  background: #1a1a1a; border: 1px solid rgba(201,168,76,0.35);
  border-radius: 4px; padding: 40px 44px;
  transition: background 0.5s;
}
body.day-mode .service-discount-callout { background: #fff; }

.service-discount-icon {
  color: #c9a84c; font-size: 28px; letter-spacing: 4px; flex-shrink: 0;
}

.service-discount-text { flex: 1; min-width: 220px; }

.service-discount-text h3 {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  color: #f5f0e8; margin-bottom: 10px; transition: color 0.5s;
}
body.day-mode .service-discount-text h3 { color: #1a1612; }

.service-discount-text p {
  font-size: 14px; font-weight: 300; line-height: 1.75;
  color: rgba(245,240,232,0.6); margin: 0; transition: color 0.5s;
}
body.day-mode .service-discount-text p { color: rgba(26,22,18,0.6); }

@media (max-width: 600px) {
  .service-discount-callout { flex-direction: column; align-items: flex-start; padding: 32px 28px; }
}

/* ── Fix: Outline buttons — Starter & Full Custom ── */
.package-card:not(.package-card--featured) .btn-primary {
  background: transparent !important;
  color: #c9a84c !important;
  border: 1px solid #c9a84c !important;
  font-weight: 600;
}

.package-card:not(.package-card--featured) .btn-primary:hover {
  background: #c9a84c !important;
  color: #0f0d00 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.25);
}

/* ── Fix: Solid gold button — Growth Site ── */
.package-card--featured .btn-primary {
  background: #c9a84c !important;
  color: #0f0d00 !important;
  border: 1px solid #c9a84c !important;
  font-weight: 600;
}

.package-card--featured .btn-primary:hover {
  background: #e0c070 !important;
  color: #0f0d00 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
}
/* ── Package cards: tiered sizing ── */
.packages-grid {
  grid-template-columns: 0.9fr 1.15fr 0.9fr !important;
  align-items: start;
}
/* ── Card hierarchy: layered depth effect ── */
.packages-grid {
  align-items: start !important;
}

.package-card.package-card--starter {
  transform: translateY(20px);
  z-index: 1;
  opacity: 0.93;
}

.package-card.package-card--starter .btn-primary {
  margin-top: 0;
}

.package-card--featured {
  transform: translateY(0px) !important;
  z-index: 3 !important;
  box-shadow: 0 6px 28px rgba(201,168,76,0.13), 0 2px 8px rgba(0,0,0,0.4) !important;
}

.package-card.package-card--custom {
  transform: translateY(11px);
  z-index: 2;
  opacity: 0.97;
}

/* ============================================
   WORK PAGE — PORTFOLIO SHOWCASE
   ============================================ */

/* Featured card */
.pf-featured {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 28px;
  min-height: 420px;
  transition: border-color 0.3s;
}
.pf-featured:hover { border-color: rgba(201,168,76,0.3); }
body.day-mode .pf-featured { border-color: rgba(0,0,0,0.08); }

.pf-featured-img {
  width: 55%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.pf-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.pf-featured:hover .pf-featured-img img { transform: scale(1.03); }

.pf-featured-tag {
  position: absolute; top: 20px; left: 20px;
  background: #c9a84c; color: #111;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 2px;
}

.pf-featured-info {
  flex: 1;
  padding: 48px 44px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 16px;
  background: #1a1a1a;
  transition: background 0.5s;
}
body.day-mode .pf-featured-info { background: #fff; }

.pf-featured-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px); font-weight: 900;
  color: #f5f0e8; line-height: 1.15;
  transition: color 0.5s;
}
body.day-mode .pf-featured-info h2 { color: #1a1612; }
.pf-featured-info h2 em { color: #c9a84c; font-style: italic; }

.pf-featured-info p {
  font-size: 15px; font-weight: 300; line-height: 1.75;
  color: rgba(245,240,232,0.65); transition: color 0.5s;
}
body.day-mode .pf-featured-info p { color: rgba(26,22,18,0.65); }

.pf-featured-details {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.pf-featured-details li {
  font-size: 13px; font-weight: 400;
  color: rgba(245,240,232,0.55);
  padding-left: 16px; position: relative;
  transition: color 0.5s;
}
body.day-mode .pf-featured-details li { color: rgba(26,22,18,0.55); }
.pf-featured-details li::before {
  content: '✦'; position: absolute; left: 0;
  font-size: 8px; color: #c9a84c; top: 2px;
}

.pf-featured-row {
  display: flex; align-items: center; gap: 20px; margin-top: 8px;
}

.pf-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: #c9a84c;
}

/* 4-card grid */
.pf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.pf-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column;
  background: #1a1a1a;
  transition: background 0.5s, border-color 0.3s, transform 0.2s;
}
body.day-mode .pf-card { background: #fff; border-color: rgba(0,0,0,0.08); }
.pf-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }

.pf-card-img {
  height: 220px; overflow: hidden; position: relative;
}
.pf-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s;
}
.pf-card:hover .pf-card-img img { transform: scale(1.05); }

.pf-card-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,0.6); color: #c9a84c;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px;
  backdrop-filter: blur(4px);
}

.pf-card-info {
  padding: 24px 28px; display: flex;
  flex-direction: column; flex: 1; gap: 8px;
}

.pf-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: #f5f0e8; transition: color 0.5s;
}
body.day-mode .pf-card-info h3 { color: #1a1612; }

.pf-card-info p {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(245,240,232,0.6); flex: 1; transition: color 0.5s;
}
body.day-mode .pf-card-info p { color: rgba(26,22,18,0.6); }

.pf-card-row {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: 8px;
}

/* CTA card */
.pf-cta-card {
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  padding: 60px 40px;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  background: rgba(201,168,76,0.04);
}

.pf-cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px); font-weight: 900;
  color: #f5f0e8; transition: color 0.5s;
}
body.day-mode .pf-cta-card h2 { color: #1a1612; }

.pf-cta-card p {
  font-size: 15px; font-weight: 300; line-height: 1.75;
  color: rgba(245,240,232,0.6); max-width: 480px;
  transition: color 0.5s;
}
body.day-mode .pf-cta-card p { color: rgba(26,22,18,0.6); }

/* ============================================
   MOBILE — HAMBURGER NAV
   ============================================ */

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

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f5f0e8;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.site-nav.day .nav-hamburger span { background: #1a1612; }

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   MOBILE — STEPS AUTO-CYCLE
   ============================================ */

.steps-mobile { display: none; }

.steps-mobile-track {
  position: relative;
  min-height: 180px;
}

.step-mobile-card {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 28px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  animation: stepFadeIn 0.5s ease;
}

.step-mobile-card.active { display: flex; }

body.day-mode .step-mobile-card { background: #fff; border-color: rgba(0,0,0,0.08); }

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-mobile-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 900;
  color: #c9a84c; opacity: 0.35;
  line-height: 1; margin-bottom: 16px;
}

.step-mobile-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: #f5f0e8; margin-bottom: 10px;
  transition: color 0.5s;
}
body.day-mode .step-mobile-card h3 { color: #1a1612; }

.step-mobile-card p {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(245,240,232,0.6); transition: color 0.5s;
}
body.day-mode .step-mobile-card p { color: rgba(26,22,18,0.6); }

.steps-mobile-dots {
  display: flex; justify-content: center;
  gap: 8px; margin-top: 20px;
}

.steps-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer; transition: background 0.3s, transform 0.3s;
}

.steps-dot.active {
  background: #c9a84c;
  transform: scale(1.3);
}

/* ============================================
   MOBILE — AUDIENCE CAROUSEL
   ============================================ */

.audience-carousel-wrap {
  display: none;
}

/* ============================================
   MOBILE — ALL BREAKPOINTS
   ============================================ */

@media (max-width: 768px) {

  /* Nav */
  .nav-hamburger { display: flex; }

  /* On mobile, toggle-wrap was inside nav-links — now it's in nav-right, always visible */
  .nav-links .toggle-wrap { display: none; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(16px);
    padding: 80px 32px 40px;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .site-nav.day .nav-links { background: rgba(247,244,239,0.97); }
  .nav-links.open { display: flex; }

  .nav-links .nav-link {
    font-size: 15px;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(245,240,232,0.75);
  }

  .site-nav.day .nav-links .nav-link { color: rgba(26,22,18,0.7); border-bottom-color: rgba(0,0,0,0.06); }

  /* Get a Quote button in mobile menu */
  .nav-links .nav-link--cta {
    margin-top: 24px;
    background: #c9a84c;
    color: #111 !important;
    padding: 12px 24px;
    border-radius: 2px;
    text-align: center;
    width: 100%;
    border-bottom: none !important;
    font-weight: 600;
  }

  /* Steps — hide desktop, show mobile cycle */
  .steps, .steps .step-connector { display: none; }
  .steps-mobile { display: block; }

  /* Audience cards — hide grid, show carousel */
  .audience-grid { display: none; }
  .audience-carousel-wrap { display: block; }

  /* CTA banner — stack and tighten */
  .cta-banner-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-banner { padding: 52px 20px; }
  .cta-banner .btn-primary { width: 100%; text-align: center; }

  /* Footer links — tighten gap */
  .footer-links { gap: 16px; }

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

  .audience-carousel .audience-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
  }

  .audience-carousel .audience-card--featured {
    border-color: #c9a84c;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .carousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: background 0.3s;
  }

  .carousel-dot.active { background: #c9a84c; }

  /* Services packages grid — stack on mobile */
  .packages-grid {
    grid-template-columns: 1fr !important;
  }

  .package-card.package-card--starter,
  .package-card.package-card--custom,
  .package-card--featured {
    transform: none !important;
    opacity: 1 !important;
  }

  /* Work page — featured card stacks */
  .pf-featured { flex-direction: column; min-height: unset; }
  .pf-featured-img { width: 100%; height: 240px; }
  .pf-featured-info { padding: 28px 24px; }
  .pf-featured-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pf-featured-row .btn-primary { width: 100%; text-align: center; }

  /* Work page — 4-card grid becomes 1 column */
  .pf-grid { grid-template-columns: 1fr; }
  .pf-card-img { height: 200px; }
  .pf-card-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-view-demo { width: 100%; text-align: center; }

  /* Work page CTA card */
  .pf-cta-card { padding: 40px 24px; }

  /* Old portfolio grid (keep for safety) */
  .work-grid,
  .demo-cards-grid,
  .portfolio-grid {
    grid-template-columns: 1fr !important;
  }

  /* Maintenance card — tighter padding */
  .maintenance-card { padding: 36px 24px; }
  .maintenance-price { font-size: 36px; }

  /* Services discount callout button full width */
  .service-discount-callout .btn-primary { width: 100%; text-align: center; }

  /* Section padding — tighter on mobile */
  .section-dark,
  .section-alt { padding: 64px 20px; }

  .page-hero { padding: 120px 20px 60px; }

  /* Hero actions stack */
  .hero-actions { flex-direction: column; align-items: center; }

  /* Trust pills — hide on small screens */
  .trust-row { display: none; }
}

@media (max-width: 480px) {
  .site-nav { padding: 16px 20px; }
  .hero-bottom { margin-top: 32px; }

  /* Tighter container padding */
  .container { padding: 0 16px; }

  /* Tighter section padding */
  .section-dark, .section-alt { padding: 48px 16px; }

  /* Page hero — reduce top padding on small phones */
  .page-hero { padding: 100px 16px 40px; }

  /* Nav logo — shrink slightly so it never wraps */
  .nav-logo { font-size: 14px; }

  /* All inline-block buttons inside cards go full width */
  .audience-card .btn-secondary,
  .audience-card .btn-primary,
  .pf-cta-card .btn-primary { width: 100%; text-align: center; }

  /* Package mockup — reduce margins */
  .pkg-mockup { margin: 8px 8px 0; }

  /* Services discount callout button full width */
  .service-discount-callout .btn-primary { width: 100%; text-align: center; }

  /* CTA banner button full width */
  .cta-banner .btn-primary { width: 100%; text-align: center; }

  /* Work page featured card tighter on very small screens */
  .pf-featured-info { padding: 20px 16px; }
  .pf-card-info { padding: 18px 16px; }
  .pf-cta-card { padding: 32px 16px; }
}