/* ===========================
   VARIABLES
   =========================== */
:root {
  --bg: #1A181B;
  --bg-elevated: #231F24;
  --bg-card: #2A2430;
  --bg-section: #1D1A1E;

  --purple: #8F67AC;
  --purple-light: #B08FCC;
  --purple-dark: #6B4E85;
  --purple-glow: rgba(143, 103, 172, 0.15);
  --purple-subtle: rgba(143, 103, 172, 0.08);

  --text: #FFFFFF;
  --text-muted: #C0B3CC;
  --text-faint: #8A7A96;

  --border: rgba(255, 255, 255, 0.07);
  --border-purple: rgba(143, 103, 172, 0.25);
  --border-purple-bright: rgba(143, 103, 172, 0.5);

  --font-heading: 'Comfortaa', cursive;
  --font-body: 'Inter', sans-serif;

  --nav-height: 72px;
  --max-width: 1200px;
  --section-pad: 100px;
  --section-pad-sm: 64px;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.4);
  --shadow-purple: 0 4px 32px rgba(143, 103, 172, 0.2);
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }

p {
  color: var(--text-muted);
  line-height: 1.7;
}

.text-purple { color: var(--purple-light); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-light);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; }
.section-sm { padding: var(--section-pad-sm) 0; }
.section-alt { background: var(--bg-elevated); }

.section-header { margin-bottom: 64px; }
.section-header p {
  max-width: 540px;
  margin-top: 16px;
  font-size: 1.05rem;
}
.section-header.center { text-align: center; }
.section-header.center p { margin-left: auto; margin-right: auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(26, 24, 27, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: border-color 0.3s, background 0.3s;
}

.nav.scrolled {
  background: rgba(26, 24, 27, 0.97);
  border-bottom-color: var(--border-purple);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { flex-shrink: 0; }

.nav-logo img {
  width: 160px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active { color: var(--purple-light); }

.nav-cta { flex-shrink: 0; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.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); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(35, 31, 36, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-purple);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s, background 0.2s;
}

.nav-mobile a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-mobile .btn { margin-top: 12px; justify-content: center; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover {
  background: var(--purple-light);
  box-shadow: var(--shadow-purple);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-purple);
}
.btn-outline:hover {
  background: var(--purple-glow);
  border-color: var(--purple);
  color: var(--purple-light);
}

.btn-ghost { background: rgba(255, 255, 255, 0.06); color: var(--text); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius); }
.btn-sm { padding: 7px 16px; font-size: 0.825rem; }

/* ===========================
   HERO (Homepage)
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% -5%, rgba(143, 103, 172, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(143, 103, 172, 0.08) 0%, transparent 50%),
    var(--bg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--purple-subtle);
  border: 1px solid var(--border-purple);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--purple-light);
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto 24px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--purple-light);
}

.hero-sub {
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 680px;
}

.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-strip-item svg { color: var(--purple-light); flex-shrink: 0; }

.hero-strip-sep {
  width: 1px;
  height: 22px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-faint);
  font-size: 0.7rem;
  animation: bounce 2.5s ease-in-out infinite;
}

.hero-scroll svg { width: 18px; height: 18px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  padding: calc(var(--nav-height) + 72px) 0 80px;
  background:
    radial-gradient(ellipse 60% 70% at 50% -10%, rgba(143, 103, 172, 0.2) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.page-hero p { max-width: 540px; margin: 0 auto; font-size: 1.05rem; }

/* ===========================
   CARDS
   =========================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  border-color: var(--border-purple);
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--purple-glow);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--purple-light);
}

.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.95rem; }

/* ===========================
   SERVICE DETAIL CARDS
   =========================== */
.service-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.service-block:hover { border-color: var(--border-purple); transform: translateY(-3px); }

.service-block-header {
  padding: 36px 36px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.service-block-icon {
  width: 56px;
  height: 56px;
  background: var(--purple-glow);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple-light);
}

.service-block-icon svg { width: 28px; height: 28px; }

.service-block-header-text h3 { font-size: 1.4rem; margin-bottom: 8px; }
.service-block-header-text p { font-size: 0.95rem; }

.service-block-body { padding: 28px 36px 36px; }

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 8px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ===========================
   FEATURES GRID
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.feature-item:hover { border-color: var(--border-purple); }

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--purple-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple-light);
}

.feature-icon svg { width: 20px; height: 20px; }
.feature-item h4 { margin-bottom: 4px; }
.feature-item p { font-size: 0.875rem; color: var(--text-faint); }

/* ===========================
   PORTFOLIO
   =========================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

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

.portfolio-preview {
  height: 220px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 0;
}

.portfolio-browser {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.portfolio-browser-bar {
  height: 28px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  flex-shrink: 0;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-purple);
  opacity: 0.5;
}

.portfolio-browser-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(143, 103, 172, 0.05) 0%, transparent 60%);
  overflow: hidden;
}

.portfolio-browser-body span {
  font-size: 0.8rem;
  color: var(--text-faint);
  opacity: 0.6;
}

.portfolio-browser-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: var(--bg);
}

.portfolio-browser-body img[alt*="Sabbath"] {
  object-position: center center;
}

.portfolio-browser-body img[alt*="Tri-City"] {
  object-position: left 28%;
}

.portfolio-card-body { padding: 24px 28px 28px; }
.portfolio-card-body h3 { margin-bottom: 8px; }
.portfolio-card-body p { font-size: 0.9rem; margin-bottom: 20px; }

.portfolio-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

.tag {
  padding: 4px 12px;
  background: var(--purple-subtle);
  border: 1px solid var(--border-purple);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--purple-light);
  font-weight: 500;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(143, 103, 172, 0.1) 0%, transparent 70%),
    var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta-section h2 { margin-bottom: 16px; }
.cta-section p { max-width: 500px; margin: 0 auto 36px; font-size: 1.05rem; }

.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }

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

.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: var(--purple-glow);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple-light);
}

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

.contact-detail-label {
  font-size: 0.72rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 3px;
}

.contact-detail-value { font-size: 0.95rem; color: var(--text); }
.contact-detail-value a:hover { color: var(--purple-light); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(143, 103, 172, 0.12);
}

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

.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-elevated); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ===========================
   TEAM
   =========================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: border-color 0.3s;
}

.team-card:hover { border-color: var(--border-purple); }

.team-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
}

.team-card h3 { margin-bottom: 4px; font-size: 1.1rem; }
.team-role { font-size: 0.85rem; color: var(--purple-light); margin-bottom: 12px; }
.team-card p { font-size: 0.875rem; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-purple);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand img {
  width: 150px;
  height: 46px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-faint);
  max-width: 240px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 16px;
}

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

.footer-col ul a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--purple-light); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-contact-item svg { width: 15px; height: 15px; color: var(--purple); flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--purple-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-faint); }
.footer-bottom a { color: var(--purple-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* ===========================
   VALUES LIST
   =========================== */
.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-top: 3px solid var(--purple);
}

.value-item h4 { margin-bottom: 8px; color: var(--purple-light); }
.value-item p { font-size: 0.875rem; }

/* ===========================
   ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===========================
   UTILITIES
   =========================== */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; --nav-height: 64px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-form { padding: 24px; }
  .section-header { margin-bottom: 40px; }

  .service-block-header { flex-direction: column; }
  .service-block-header, .service-block-body { padding: 24px; }
}

@media (max-width: 480px) {
  .hero { padding-left: 16px; padding-right: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .hero-strip { gap: 16px; }
  .hero-strip-sep { display: none; }
  .container { padding: 0 16px; }
}
