/*
Theme Name: Nektarina
Theme URI: https://nektarina.studio
Description: Custom theme for Nektarina Web Development Studio
Author: Nektarina Studio
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: nektarina
*/

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --peach: #f2a98a;
  --peach-light: #fdf0e8;
  --peach-mid: #fbdece;
  --ink: #1a1714;
  --ink-light: #6b6560;
  --white: #fdfcfb;
  --border: #eae5e0;
  --ff-display: "Cormorant Garamond", serif;
  --ff-body: "DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   NAV
   ============================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  background: rgba(253, 252, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled {
  border-bottom-color: var(--border);
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}
.logo span {
  color: var(--peach);
}
.logo-icon {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
}

.lang-switch svg {
  opacity: 0.5;
  flex-shrink: 0;
}

.lang-switch:hover {
  color: var(--ink);
  border-color: var(--peach);
}

/* =============================================
   NAV TOGGLE (hamburger)
   ============================================= */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-toggle:hover {
  border-color: var(--peach);
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transform-origin: center;
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.2s;
}
/* X state */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  justify-content: center;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0px 32px 48px;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-link {
  font-family: var(--ff-display);
  font-size: clamp(36px, 10vw, 52px);
  font-weight: 300;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.15;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(12px);
  transition:
    color 0.2s,
    opacity 0.35s ease,
    transform 0.35s ease;
}
.mobile-menu.open .mobile-nav-link:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.05s;
}
.mobile-menu.open .mobile-nav-link:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}
.mobile-menu.open .mobile-nav-link:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}
.mobile-menu.open .mobile-nav-link:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}
.mobile-nav-link::after {
  content: "↗";
  font-family: var(--ff-body);
  font-size: 18px;
  color: var(--peach);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.mobile-nav-link:hover {
  color: var(--peach);
}
.mobile-nav-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s ease 0.25s,
    transform 0.35s ease 0.25s;
}
.mobile-menu.open .mobile-menu-footer {
  opacity: 1;
  transform: none;
}
.mobile-cta {
  font-size: 12px;
}
/* hide the lang-switch inside mobile footer from duplicating on desktop */
.mobile-menu-footer .lang-switch {
  position: static;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--peach);
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.nav-cta:hover {
  color: var(--peach);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 60px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 32px;
}
.hero-tag::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--peach);
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--peach);
}
.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-light);
  max-width: 400px;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-primary:hover {
  background: var(--peach);
  transform: translateY(-1px);
}
.btn-ghost {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover {
  color: var(--ink);
}
.hero-right {
  background: var(--peach-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 40px 0;
}
.hero-mockup {
  width: 100%;
  max-width: 460px;
  background: var(--white);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -12px 60px rgba(26, 23, 20, 0.1);
  overflow: hidden;
}
.mockup-bar {
  background: #f0edea;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dot.r {
  background: #ff7b72;
}
.dot.y {
  background: #ffd874;
}
.dot.g {
  background: #7ec9a2;
}
.mockup-content {
  padding: 32px;
  background: var(--white);
}
.mc-line {
  height: 10px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 10px;
}
.mc-line.w80 {
  width: 80%;
}
.mc-line.w60 {
  width: 60%;
}
.mc-line.w40 {
  width: 40%;
  margin-bottom: 24px;
}
.mc-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.mc-card {
  height: 80px;
  border-radius: 4px;
  background: var(--peach-light);
}
.mc-card:nth-child(2) {
  background: var(--peach-mid);
}
.mc-card:nth-child(3) {
  background: #eef0f5;
}

/* =============================================
   STATS
   ============================================= */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: 36px 60px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
}
.stat-num span {
  color: var(--peach);
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* =============================================
   SECTION COMMONS
   ============================================= */
section {
  padding: 100px 60px;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}
.section-link {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  flex-shrink: 0;
  margin-left: 40px;
  margin-bottom: 4px;
}
.section-link:hover {
  color: var(--ink);
}
.section-link svg {
  transition: transform 0.2s;
}
.section-link:hover svg {
  transform: translateX(4px);
}

/* =============================================
   PROJECTS
   ============================================= */
.projects-section {
  background: var(--white);
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--peach-light);
  aspect-ratio: 4/3;
  text-decoration: none;
  display: block;
}
.projects-grid .project-card:nth-child(1) {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}
.project-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-card:hover .project-card-bg {
  transform: scale(1.03);
}
.project-card-tint {
  position: absolute;
  inset: 0;
  opacity: 0.78;
  transition: opacity 0.5s ease;
}
.project-card:hover .project-card-tint {
  opacity: 0.4;
}
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 23, 20, 0.85) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.project-card:hover .project-card-overlay {
  opacity: 1;
}
.project-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(26, 23, 20, 0.7), transparent);
  color: var(--white);
}
.project-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 6px;
}
.project-name {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}
.project-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Project backgrounds */
.pv-eco {
  background: linear-gradient(135deg, #1e4d35 0%, #2e7a52 60%, #4aa870 100%);
}
.pv-ba {
  background: linear-gradient(135deg, #0f1e4a 0%, #1a3480 60%, #2e52b2 100%);
}
.pv-fap {
  background: linear-gradient(135deg, #5c1a1a 0%, #8b2e10 50%, #c4962a 100%);
}
.pv-kilo {
  background: linear-gradient(135deg, #8b2a04 0%, #cc4a10 50%, #ff7a3a 100%);
}
.pv-ow {
  background: linear-gradient(135deg, #0e3d4a 0%, #1e6e7e 60%, #3a9faf 100%);
}

.project-visual {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.pv-grid {
  position: absolute;
  inset: 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 8px;
  opacity: 0.3;
}
.pv-cell {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}
.pv-cell.tall {
  grid-row: span 2;
}
.pv-cell.wide {
  grid-column: span 3;
}
.pv-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.02em;
}

/* =============================================
   ALL PROJECTS PAGE
   ============================================= */
.projects-page-header {
  padding: 160px 60px 80px;
}
.projects-page-header .section-title {
  margin-top: 16px;
}
.projects-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.projects-page-grid .project-card {
  aspect-ratio: 4/3;
}
.projects-page-grid .project-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  aspect-ratio: 21/9;
}

/* =============================================
   EXPERTISE
   ============================================= */
.expertise-section {
  background: var(--ink);
  color: var(--white);
}
.expertise-section .section-title {
  color: var(--white);
}
.expertise-section .section-label {
  color: var(--peach);
}
.expertise-section .section-header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.expertise-card {
  padding: 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}
.expertise-card:hover {
  background: rgba(242, 169, 138, 0.06);
}
.expertise-card:nth-child(3n) {
  border-right: none;
}
.expertise-card:nth-child(n + 4) {
  border-bottom: none;
}
.expertise-num {
  font-family: var(--ff-display);
  font-size: 13px;
  color: var(--peach);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.expertise-name {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.expertise-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

/* =============================================
   PROCESS
   ============================================= */
.process-section {
  background: var(--peach-light);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--peach);
  z-index: 0;
}
.process-step {
  padding: 0 48px;
  position: relative;
  z-index: 1;
}
.process-step:first-child {
  padding-left: 0;
}
.process-step:last-child {
  padding-right: 0;
}
.step-num-wrap {
  margin-bottom: 28px;
}
.step-num {
  width: 80px;
  height: 80px;
  border: 1.5px solid var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  background: var(--peach-light);
}
.step-phase {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 10px;
}
.step-name {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
}
.step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-light);
  font-weight: 300;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .section-title {
  max-width: 380px;
}
.contact-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-light);
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 40px;
  max-width: 360px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}
.contact-detail-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peach);
}
.contact-detail-val {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
}
.contact-detail-val:hover {
  color: var(--peach);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--ff-body);
  font-size: 14px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--peach);
}
.form-field textarea {
  height: 120px;
}
.btn-submit {
  align-self: flex-start;
  padding: 15px 36px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-submit:hover {
  background: var(--peach);
  transform: translateY(-1px);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.footer-logo span {
  color: var(--peach);
}
.footer-logo .logo-icon {
  height: 24px;
}
.footer-copy {
  font-size: 12px;
  color: var(--ink-light);
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--ink);
}

/* =============================================
   CASE STUDY MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 23, 20, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-panel {
  width: 60%;
  max-width: 860px;
  height: 100vh;
  overflow-y: auto;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.modal-overlay.open .modal-panel {
  transform: translateX(0);
}
.modal-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  transition:
    border-color 0.2s,
    color 0.2s;
  z-index: 10;
}
.modal-close:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.modal-hero {
  height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-hero-content {
  padding: 48px;
  max-width: 800px;
}
.cs-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 14px;
}
.cs-title {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.cs-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}
.modal-body {
  padding: 48px;
}
.cs-section {
  margin-bottom: 48px;
}
.cs-section-title {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.cs-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-light);
  font-weight: 300;
}
.cs-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.cs-feature {
  padding: 16px 20px;
  background: var(--peach-light);
  border-left: 2px solid var(--peach);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
}
.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.cs-tag {
  padding: 6px 14px;
  border: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* =============================================
   INVITATIONS PAGE
   ============================================= */
.inv-page-header {
  padding: 160px 60px 60px;
}
.inv-page-header .section-title {
  margin-top: 16px;
}
.inv-section {
  padding: 0 60px 100px;
}
.inv-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.inv-filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: none;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-light);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.inv-filter-btn:hover {
  border-color: var(--peach);
  color: var(--ink);
}
.inv-filter-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.inv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.inv-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.inv-card:hover {
  transform: translateY(-6px);
}
.inv-card.hidden {
  display: none;
}
.inv-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--peach-light);
}
.inv-placeholder {
  position: absolute;
  inset: 0;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.inv-card:hover .inv-placeholder {
  transform: scale(1.05);
}
.inv-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 23, 20, 0.45) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
}
.inv-card:hover .inv-card-overlay {
  opacity: 1;
}
.inv-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.inv-card:hover .inv-card-img img {
  transform: scale(1.05);
}
.inv-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.inv-card-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peach);
}
.inv-card-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  transition: color 0.2s;
}
.inv-card:hover .inv-card-title {
  color: var(--peach);
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

/* =============================================
   INVITATIONS PAGE — PACKAGES & FILTERS
   Add this to the end of your style.css
   (before the RESPONSIVE section)
   ============================================= */

/* ── Package Section ── */
.pkg-section {
  padding: 0 60px 80px;
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Package Card ── */
.pkg-card {
  position: relative;
  padding: 40px 36px 36px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pkg-card:hover {
  border-color: var(--peach);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 23, 20, 0.06);
}
.pkg-card--active {
  border-color: var(--peach);
  box-shadow:
    0 0 0 1px var(--peach),
    0 12px 40px rgba(242, 169, 138, 0.12);
}

/* Featured card (Cvijet) */
.pkg-card--featured {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}
.pkg-card--featured .pkg-tagline,
.pkg-card--featured .pkg-desc {
  color: rgba(255, 255, 255, 0.55);
}
.pkg-card--featured .pkg-features li {
  color: rgba(255, 255, 255, 0.65);
}
.pkg-card--featured .pkg-features li::before {
  color: var(--peach);
}
.pkg-card--featured .pkg-divider {
  background: rgba(255, 255, 255, 0.12);
}
.pkg-card--featured .pkg-cta {
  background: var(--peach);
  color: var(--ink);
}
.pkg-card--featured .pkg-cta:hover {
  background: var(--white);
}
.pkg-card--featured:hover {
  border-color: var(--peach);
}
.pkg-card--featured.pkg-card--active {
  box-shadow:
    0 0 0 1px var(--peach),
    0 12px 40px rgba(242, 169, 138, 0.18);
}

/* "Most popular" ribbon */
.pkg-popular {
  position: absolute;
  top: -1px;
  right: 32px;
  padding: 6px 14px;
  background: var(--peach);
  color: var(--ink);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Package inner elements */
.pkg-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
}
.pkg-name {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 6px;
}
.pkg-tagline {
  font-size: 14px;
  font-style: italic;
  color: var(--ink-light);
  font-weight: 300;
  margin-bottom: 20px;
}
.pkg-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.pkg-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-light);
  font-weight: 300;
  margin-bottom: 24px;
}
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.pkg-features li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-light);
  padding-left: 20px;
  position: relative;
}
.pkg-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--peach);
  font-size: 12px;
  font-weight: 600;
}
.pkg-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  align-self: stretch;
}
.pkg-cta:hover {
  background: var(--peach);
  transform: translateY(-1px);
}

/* ── Active package indicator ── */
.inv-active-pkg {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 12px 20px;
  background: var(--peach-light);
  border-left: 3px solid var(--peach);
}
.inv-active-pkg-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  line-height: 1;
}
.inv-active-pkg-name {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
}

/* ── Event type tabs (multi-select) ── */
.inv-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.inv-tab {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: none;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-light);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.inv-tab:hover {
  border-color: var(--peach);
  color: var(--ink);
}
.inv-tab.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ── Card meta row (tag + package name) ── */
.inv-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.inv-card-pkg {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: 2px;
}

/* ── Tier tags (Basic / Plus / Premium) under each multi-tier card ── */
.inv-tier-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.inv-tier-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.inv-tier-tag:hover {
  border-color: var(--peach);
  color: var(--peach);
}
.inv-tier-tag.active {
  border-color: var(--peach);
  color: var(--peach);
}
/* Image area is clickable when card has tier links */
.inv-card .inv-card-img {
  cursor: pointer;
}

/* ── Empty state ── */
.inv-empty {
  text-align: center;
  padding: 80px 20px;
}
.inv-empty p {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-light);
}

/* ── Clear filters button (fixed bottom-right) ── */
.inv-clear-filters {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(26, 23, 20, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.2s;
}
.inv-clear-filters.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.inv-clear-filters:hover {
  background: var(--peach);
}

/* ── Remove old .inv-filters (replaced by .inv-tabs) ── */
/* If you still have .inv-filters and .inv-filter-btn in your CSS,
   you can leave them — they just won't be used on this page anymore. */

/* =============================================
   RESPONSIVE — PACKAGES & FILTERS
   Add these rules inside your existing @media blocks
   ============================================= */
@media (max-width: 900px) {
  .pkg-section {
    padding: 0 24px 60px;
  }
  .pkg-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pkg-popular {
    right: 20px;
  }
  .inv-tabs {
    gap: 6px;
  }
  .inv-tab {
    padding: 8px 16px;
    font-size: 12px;
  }
  .inv-clear-filters {
    bottom: 24px;
    right: 24px;
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  nav {
    padding: 20px 24px;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none; /* shown inside mobile menu instead */
  }
  .nav-toggle {
    display: flex;
  }
  /* hide desktop lang-switch inside nav-right on mobile */
  .nav-right > .lang-switch {
    display: none;
  }
  /* display mobile menu only for mobile devices */
  .mobile-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  section {
    padding: 60px 24px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 120px 24px 60px;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    padding: 28px 24px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid .project-card:nth-child(1) {
    grid-column: 1;
    aspect-ratio: 4/3;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .expertise-card:nth-child(3n) {
    border-right: none;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-step {
    padding: 0;
  }
  .process-steps::before {
    display: none;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .modal-panel {
    width: 100%;
  }
  .cs-features {
    grid-template-columns: 1fr;
  }
  .inv-page-header {
    padding: 120px 24px 40px;
  }
  .inv-section {
    padding: 0 24px 60px;
  }
  .inv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 540px) {
  .inv-grid {
    grid-template-columns: 1fr;
  }
}


