=/* ── Local Fonts ── */
@font-face {
  font-family: 'Fraunces';
  src: url('/fonts/fraunces-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Fraunces';
  src: url('/fonts/fraunces-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
}

/* ── Variables ── */
:root {
  --bg:         #0e1411;
  --surface:    #141c18;
  --surface2:   #1b2621;
  --border:     #24352d;

  --teal:       #2a7a4e;
  --teal-dim:   rgba(31, 90, 58, 0.15);
  --teal-mid:   #2e7a52;

  --orange:     #f28c28;
  --orange-dim: rgba(242, 140, 40, 0.15);
  --orange-mid: #d96a1f;

  --white:      #f4f8f4;
  --muted:      #8fa79a;

  --font-head:  'Fraunces', serif;
  --font-body:  'Outfit', sans-serif;
  --radius:     12px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: #0e1411;
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Scroll Progress Bar ── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  width: 0%;
  z-index: 2000;
  transition: width 0.1s linear;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Header ── */
header {
  position: sticky;
  top: 0;
  background: rgba(14, 20, 17, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 0 clamp(20px, 5vw, 80px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  height: auto;
  padding: 12px 0;
}

/* ── Logo & text ── */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 2rem;
  width: auto;
  display: block;
  max-width: 180px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-img {
    height: 6rem;
  }
  .header-inner {
    padding: 14px 0;
  }
}

.logo-subtitle {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  line-height: 1.2;
  text-align: center;
  color: white;
  letter-spacing: -0.5px;
}

.logo-subtitle-small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-top: -2px;
}

nav { display: flex; align-items: center; gap: 36px; }

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width var(--transition);
}

nav a:hover { color: var(--white); }
nav a:hover::after { width: 100%; }
nav a.active { color: var(--white); }
nav a.active::after { width: 100%; }

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-mid) !important; }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 0 30px rgba(31, 90, 58, 0.25);
}
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ── Sections ── */
section { padding: clamp(60px, 10vw, 110px) clamp(20px, 5vw, 80px); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 48px;
}

/* ── Homepage Story Sections ── */
.story-section {
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 80px);
  text-align: center;
}
.story-content {
  max-width: 700px;
  margin: 0 auto;
}
.story-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.story-content p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.story-cta {
  margin-top: 8px;
}

/* ── Tier Cards ── */
.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--border);
}
.tier-card:hover { border-color: rgba(31, 90, 58, 0.4); transform: translateY(-6px); }
.tier-card:hover::before { background: var(--teal); }
.tier-card .btn-full {
  margin-top: auto;
}
.tier-card.featured {
  border-color: rgba(242, 140, 40, 0.5);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(242, 140, 40, 0.05) 100%);
}
.tier-card.featured::before { background: var(--orange); }

.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.tier-icon {
  width: 44px; height: 44px;
  background: var(--teal-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.tier-card.featured .tier-icon { background: var(--orange-dim); }
.tier-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.tier-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
  min-height: 48px;
}
.tier-price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 4px;
}
.tier-card.featured .tier-price { color: var(--orange); }
.tier-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.tier-divider { height: 1px; background: var(--border); margin: 24px 0; }
.tier-features { list-style: none; margin-bottom: 32px; }
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 8px 0;
}
.check {
  width: 18px; height: 18px;
  background: var(--teal-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  font-size: 0.65rem;
}

/* ── Portfolio Cards ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.portfolio-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.portfolio-thumb { aspect-ratio: 16/10; position: relative; }
.portfolio-card:nth-child(1) .portfolio-thumb { background: linear-gradient(135deg, #0e1411, #2e7a52); }
.portfolio-card:nth-child(2) .portfolio-thumb { background: linear-gradient(135deg, #1a0a00, #f28c28); }
.portfolio-card:nth-child(3) .portfolio-thumb { background: linear-gradient(135deg, #0a0a1a, #6c63ff); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(31, 90, 58, 0.1);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--teal);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-meta { padding: 18px 20px; }
.portfolio-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.portfolio-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

/* ── Form ── */
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.form-input, .form-select, .form-textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-select { appearance: none; -webkit-appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--orange); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--teal);
  color: #fff;
  padding: 15px 28px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover:not(:disabled) { background: var(--teal-mid); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-status.success {
  display: block;
  background: var(--teal-dim);
  border: 1px solid rgba(31, 90, 58, 0.3);
  color: var(--teal);
}
.form-status.error {
  display: block;
  background: var(--orange-dim);
  border: 1px solid rgba(242, 140, 40, 0.3);
  color: var(--orange);
}

/* ── Footer ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px clamp(20px, 5vw, 80px);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-copy { font-size: 0.82rem; color: var(--muted); }

/* ── Cookie Consent Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px clamp(20px, 5vw, 80px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: cookieSlideUp 0.6s ease;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  flex: 1 1 300px;
  text-align: center;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.cookie-btn.accept {
  background: var(--teal);
  color: #fff;
}
.cookie-btn.accept:hover { background: var(--teal-mid); }
.cookie-btn.decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.cookie-btn.decline:hover { border-color: var(--orange); color: var(--orange); }

/* ── Page Hero ── */
.page-hero {
  padding: clamp(60px, 10vw, 100px) clamp(20px, 5vw, 80px) clamp(40px, 6vw, 70px);
  position: relative;
  overflow: hidden;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

/* ── Hero Section ── */
.hero {
  min-height:60vh;   /* was 100vh */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/*.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31, 90, 58, 0.08) 0%, transparent 70%);
  top: 30%;
  left: 30%;
  transform: translate(-50%, -50%);
}

.hero-glow-alt {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242, 140, 40, 0.08) 0%, transparent 70%);
  top: 60%;
  left: 70%;
  transform: translate(-50%, -50%);
}*/

.hero-content { position: relative; z-index: 1; max-width: 820px; }

.hero-badge {
  background: var(--orange-dim);
  border: 1px solid rgba(242, 140, 40, 0.3);
  color: var(--orange);
}
.hero-badge::before {
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}

.hero h1 .accent {
  color: var(--teal);
}

/* ── Footer contact info ── */
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-contact a:hover {
  color: var(--white);
}
.footer-contact .facebook-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-contact .instagram-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  nav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 0;
    gap: 0;
  }
  nav.open { display: flex; }
  nav a { padding: 14px 24px; width: 100%; }
  .nav-cta { margin: 8px 16px; width: calc(100% - 32px); text-align: center; border-radius: 8px; }
  .hamburger { display: flex; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

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

/* ── Footer Legal Links ── */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--white); }
.footer-legal .sep { color: var(--border); font-size: 0.82rem; }
