/* ============================================
   BlockSizedX — style.css
   Modern Light Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── Variables ── */
:root {
  --bg: #f7f5f2;
  --bg-alt: #efecea;
  --surface: #ffffff;
  --surface-2: #f0ede9;
  --border: #e2ddd8;
  --text: #1a1815;
  --text-2: #5a5650;
  --text-3: #9a958f;
  --accent: #1a1815;
  --accent-2: #ca9954;
  --accent-light: #f5ece7;
  --green: #2d6a4f;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.12);
  --font-display:sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 68px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
ul, ol { list-style: none; }
input, textarea, select { font-family: var(--font-body); }

/* ── Scroll-reveal base ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.visible > *:nth-child(1) { opacity:1;transform:none;transition-delay:0.05s; }
.stagger.visible > *:nth-child(2) { opacity:1;transform:none;transition-delay:0.15s; }
.stagger.visible > *:nth-child(3) { opacity:1;transform:none;transition-delay:0.25s; }
.stagger.visible > *:nth-child(4) { opacity:1;transform:none;transition-delay:0.35s; }
.stagger.visible > *:nth-child(5) { opacity:1;transform:none;transition-delay:0.45s; }
.stagger.visible > *:nth-child(6) { opacity:1;transform:none;transition-delay:0.55s; }

/* ── Utilities ── */
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}
.section-title span { color: var(--accent-2); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--text); color: #fff; }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border: 1.5px solid var(--border); color: var(--text); background: var(--surface); }
.btn-outline:hover { border-color: var(--text); background: var(--text); color: #fff; transform: translateY(-2px); }
.btn-accent { background: var(--accent-2); color: #fff; }
.btn-accent:hover { background: #b5502e; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,96,58,0.28); }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: var(--surface-2);
  color: var(--text-2);
  border: 1px solid var(--border);
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(247,245,242,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled { border-bottom-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav-logo::before {
  content: '';
  width: 5rem;
  height: 2px;
  background-color: var(--accent-2);
  bottom: 20px;
  position: absolute;
}
.nav-logo span { color: var(--accent-2); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 7px 16px;
  border-radius: 100px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { background: var(--surface); color: var(--text); box-shadow: var(--shadow); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
#nav-auth-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  background: var(--text);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
#nav-auth-btn:hover { background: var(--accent-2); }
#nav-auth-btn svg { width: 15px; height: 15px; }
.nav-account-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 6px;
  border-radius: 100px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.nav-account-pill:hover { border-color: var(--text); }
.nav-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}
.nav-account-name { font-family: var(--font-display); font-size: 13px; font-weight: 600; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  gap: 6px;
  z-index: 899;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-2);
  transition: var(--transition);
}
.mobile-nav a:hover { background: var(--bg-alt); color: var(--text); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 70% 40%, rgba(200,96,58,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(45,106,79,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(26,24,21,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26,24,21,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: top;
  padding-top: 60px;
  padding-bottom: 80px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.hero-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(45,106,79,0.2); }
.hero-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 22px;
}
.hero-title .highlight {
  color: var(--accent-2);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--accent-2);
  opacity: 0.3;
  width: 70%;
  border-radius: 2px;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--green));
}
.hero-card-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.hero-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.hero-stat { text-align: center; padding: 18px 12px; background: var(--bg-alt); border-radius: var(--radius); }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 12px; color: var(--text-3); }
.hero-card-stack { display: flex; flex-direction: column; gap: 10px; }
.hero-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text-2);
}
.hero-card-item svg { width: 16px; height: 16px; color: var(--accent-2); flex-shrink: 0; }

/* ── ABOUT ── */
#about { padding: 100px 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text { }
.about-text p { font-size: 16px; color: var(--text-2); line-height: 1.8; margin-top: 20px; }
.about-skills { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px; }
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.about-card::after {
  content: 'BlockSizedX';
  position: absolute;
  bottom: -10px; right: -10px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(26,24,21,0.04);
  line-height: 1;
  pointer-events: none;
}
.about-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: none;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: none;
}
.about-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.about-card-role {
  font-size: 14px;
  color: var(--accent-2);
  font-weight: 500;
  margin-bottom: 6px;
}
.about-card-sub { font-size: 13.5px; color: var(--text-3); margin-bottom: 24px; }
.about-card-divider { height: 1px; background: var(--border); margin: 20px 0; }
.about-card-info { display: flex; flex-direction: column; gap: 10px; }
.about-card-info-row { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-2); }
.about-card-info-row svg { width: 15px; height: 15px; color: var(--text-3); flex-shrink: 0; }
.about-card-socials { display: flex; gap: 10px; margin-top: 22px; }
.about-card-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: var(--transition);
}
.about-card-socials a:hover { background: var(--text); color: #fff; border-color: var(--text); }
.about-card-socials a svg { width: 15px; height: 15px; }

.about-flexer {
  display: flex;
  flex-direction: row;
  gap: 5%;
}
.about-flexer img {
  margin-top: 20px;
  width: 100%;
  border-radius: 10px;
}

/* ── WORKS ── */
#works { padding: 100px 0; background: var(--bg-alt); }
.works-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 24px; }
.works-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.work-card-mini {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.work-card-mini:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(26,24,21,0.2); }
.work-card-mini-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.work-card-mini-icon img { width: 100%; height: 100%; object-fit: cover; }
.work-card-mini-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; line-height: 1.3; }
.work-card-mini-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.work-card-mini-actions { display: flex; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.work-card-mini-actions a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-demo { background: var(--text); color: #fff; }
.btn-demo:hover { background: var(--accent-2); }
.btn-more { border: 1px solid var(--border); color: var(--text-2); }
.btn-more:hover { border-color: var(--text); color: var(--text); }
.works-footer { text-align: center; margin-top: 40px; }

.work-full-cover {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  flex-shrink: 0;
}
.work-full-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.work-full-card:hover .work-full-cover img {
  transform: scale(1.04);
}

/* Keep the icon small in the header */
.work-full-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.work-full-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* ── WORKS ── */
/* Remove or replace these old icon styles: */
.work-card-mini-icon { display: none; } /* hide old icon */

/* Add new cover image */
.work-card-mini-cover {
  width: calc(100% + 44px); /* bleed past card padding */
  margin: -22px -22px 0 -22px; /* pull flush to card edges */
  height: 130px; /* ~half the typical card height */
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  flex-shrink: 0;
}
.work-card-mini-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.work-card-mini:hover .work-card-mini-cover img {
  transform: scale(1.05);
}

/* ── GET WEBSITE ── */
#get-website { padding: 100px 0; background: var(--bg); }
.get-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.get-features { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.get-feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.get-feature-item:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.get-feature-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
  flex-shrink: 0;
}
.get-feature-icon svg { width: 18px; height: 18px; }
.get-feature-text h4 { font-family: var(--font-display); font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.get-feature-text p { font-size: 13px; color: var(--text-3); line-height: 1.5; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.form-subtitle { font-size: 14px; color: var(--text-3); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-group label { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--text); background: var(--surface); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5650' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-note { font-size: 12px; color: var(--text-3); margin-bottom: 20px; }
.form-note a { color: var(--accent-2); }

/* ── CONTACT ── */
#contact { padding: 100px 0; background: var(--bg-alt); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(26,24,21,0.2); }
.contact-card-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
}
.contact-card-icon svg { width: 22px; height: 22px; color: #fff; }
.contact-card-label { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text); }
.contact-card-value { font-size: 12.5px; color: var(--text-3); }
.icon-wa { background: #25d366; }
.icon-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.icon-call { background: var(--text); }
.icon-mail { background: var(--accent-2); }
.contact-right { }
.contact-info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 28px;
}
.contact-info-box h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.contact-info-box p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.contact-hours { display: flex; flex-direction: column; gap: 8px; }
.contact-hours-row { display: flex; justify-content: space-between; font-size: 13.5px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.contact-hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-hours-day { color: var(--text-2); }
.contact-hours-time { font-weight: 500; }

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 28px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { }
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--accent-2); }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 220px; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--accent-2); color: #fff; }
.footer-socials a svg { width: 15px; height: 15px; }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-copy a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-copy a:hover { color: #fff; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-legal a:hover { color: #fff; }

/* ── CONSENT BAR ── */
#consent-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: var(--text);
  color: rgba(255,255,255,0.9);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.15);
  flex-wrap: wrap;
}
#consent-bar.hidden { display: none; }
.consent-text { font-size: 13.5px; line-height: 1.6; max-width: 700px; color: rgba(255,255,255,0.8); }
.consent-text a { color: var(--accent-2); text-decoration: underline; }
.consent-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.consent-accept {
  padding: 9px 20px;
  border-radius: 100px;
  background: var(--accent-2);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.consent-accept:hover { background: #b5502e; }
.consent-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 18px;
  line-height: 1;
}
.consent-close:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
  position: relative;
}
.modal-overlay.open .modal-box { transform: none; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--text-2);
  transition: var(--transition);
}
.modal-close:hover { background: var(--text); color: #fff; }
.modal-logo { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.modal-logo span { color: var(--accent-2); }
.modal-title { font-family: var(--font-body); font-size: 16px; font-weight: 400; margin-bottom: 6px; }
.modal-title-span {font-size: 18px; color: var(--font-display); font-weight: 700;}
.modal-sub { font-size: 14px; color: var(--text-3); margin-bottom: 28px; }
.modal-tabs { display: flex; gap: 0; background: var(--bg-alt); border-radius: 10px; padding: 4px; margin-bottom: 24px; }
.modal-tab {
  flex: 1; padding: 9px; text-align: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  border-radius: 8px; cursor: pointer; transition: var(--transition);
  color: var(--text-2);
  border: none; background: none;
}
.modal-tab.active { background: var(--surface); color: var(--text); box-shadow: var(--shadow); }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-form-group { display: flex; flex-direction: column; gap: 6px; }
.modal-form-group label { font-size: 13px; font-weight: 600; font-family: var(--font-display); }
.modal-form-group input {
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.modal-form-group input:focus { border-color: var(--text); background: var(--surface); }
.modal-submit {
  margin-top: 6px;
  padding: 13px;
  border-radius: 100px;
  background: var(--text);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.modal-submit:hover { background: var(--accent-2); }
.modal-error { font-size: 13px; color: #d44; padding: 10px 14px; background: #ffeaea; border-radius: var(--radius-sm); border: 1px solid #f5cccc; display: none; }
.modal-error.show { display: block; }
.modal-success { font-size: 13px; color: var(--green); padding: 10px 14px; background: #edf8f2; border-radius: var(--radius-sm); border: 1px solid #c3e8d4; display: none; }
.modal-success.show { display: block; }

/* ── WORKS PAGE ── */
.works-page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.works-page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.works-page-hero p { font-size: 16px; color: var(--text-2); max-width: 500px; }
.works-filter { padding: 32px 0 0; display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--text); color: #fff; border-color: var(--text); }
.works-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 48px 0 100px; }
.work-full-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.work-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.work-full-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}
.work-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.work-full-card:hover .work-full-img img { transform: scale(1.05); }
.work-full-body { padding: 28px; }
.work-full-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.work-full-icon { width: 48px; height: 48px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); flex-shrink: 0; }
.work-full-icon img { width: 100%; height: 100%; object-fit: cover; }
.work-full-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 3px; }
.work-full-date { font-size: 12px; color: var(--text-3); }
.work-full-desc { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 18px; }
.work-full-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.work-full-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.work-full-actions a { font-size: 13px; }

/* ── LEGAL PAGES ── */
.legal-page { max-width: 720px; margin: 0 auto; padding: 60px 24px 100px; }
.legal-page h1 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; }
.legal-page .legal-date { font-size: 13px; color: var(--text-3); margin-bottom: 40px; }
.legal-page h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin: 36px 0 12px; }
.legal-page p, .legal-page li { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { list-style: disc; padding-left: 22px; }
.legal-page a { color: var(--accent-2); }
.legal-header { padding: 40px 0 24px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.legal-header-logo { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--text); text-decoration: none; display: inline-block; margin-bottom: 20px; }
.legal-header-logo span { color: var(--accent-2); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; }
  .get-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .works-full-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: 2.4rem; }
  .contact-methods { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .works-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .works-grid { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: row; align-items: flex-start; }
  .modal-box { padding: 28px 22px; }
}

.nf_container {
  background-color: var(--accent-light);
  padding: 5% 5%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}
.nf_card {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.094);
  border-radius: 20px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
}

.nf-card-divider {
  background-color: var(--text);
  height: 0.1px;
  margin: 19px 0;
  width: 100%;

}
.nf_card h1 {
  font-size: 2.5rem;
  color: var(--text);
}
.nf_card h2 {
  font-weight: 300;
  color: var(--text-2);
}
.nf_card h3 {
  font-size: 1.2rem;
  color: var(--text-2);
}
.nf_card p {
  font-size: 0.9rem;
  color: var(--text-2);
}
.nf_card a {
  color: rgb(0, 0, 146);
}