/* ============================================================
   PSARA VISUALS — styles.css
   ============================================================ */

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

:root {
  --bg:        #111e1e;
  --surface:   #162424;
  --surface2:  #1c2e2e;
  --border:    #243535;
  --text:      #f0eeea;
  --text-muted:#7a9494;
  --accent:    #c8a96e;
  --accent-dim:#9a7d4a;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w:     1280px;
  --nav-h:     72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── SECTION TAG ───────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0d0d0d;
}
.btn-primary:hover {
  background: #d9bc85;
  transform: translateY(-1px);
}

.btn-ghost {
  background: #ffffff;
  color: var(--accent);
  border: none;
  font-weight: 600;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
}
.btn-outline:hover {
  background: rgba(200,169,110,0.08);
  transform: translateY(-1px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: linear-gradient(to bottom, rgba(13,13,13,0.20) 0%, transparent 100%);
  transition: background 0.3s;
}

#nav.scrolled {
  background: rgba(17, 30, 30, 0.5);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  align-items: flex-end;
  line-height: 1;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-logo-visuals {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 27px;
  letter-spacing: 0.15em;
  color: #f0eeea;
  line-height: 1;
  margin-left: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(240, 238, 234, 0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  color: #111e1e !important;
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 9px 20px;
  border-radius: 3px;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: #d9bc85;
  border-color: #d9bc85;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e2424 0%, #111e1e 60%);
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.65) 0%,
    rgba(13,13,13,0.2) 40%,
    rgba(13,13,13,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 30px 5% 0;
  max-width: 780px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7);
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--text);
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero-br { display: none; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1;
}

.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: slide 2s ease-in-out infinite;
}
@keyframes slide {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

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

.about-photo {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  padding-top: 0;
}
.about-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  border: 2px solid var(--border);
}

.about-text .section-tag {
  display: block;
  margin-bottom: 20px;
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 18px;
  max-width: 640px;
}

.about-text .btn { margin-top: 16px; }

.about-stats {
  display: flex;
  flex-direction: column !important;
  gap: 0;
  padding-top: 33px;
}

.about-stats .stat {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-align: right;
}
.about-stats .stat:first-child {
  border-top: 1px solid var(--border);
}

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 120px 0;
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
}
.services-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  background: var(--bg);
  padding: 44px 36px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-4px);
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 24px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-includes {
  list-style: none;
  margin-bottom: 0;
}
.service-includes li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  border-top: 1px solid var(--border);
}
.service-includes li::before {
  content: '→ ';
  color: var(--accent);
}

/* ============================================================
   WORK
   ============================================================ */
#work {
  padding: 120px 0;
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  justify-content: center;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: #0d0d0d;
  border-color: var(--accent);
}

/* ── PROJECT FILTERS ─────────────────────────────────────── */
.project-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--accent-dim);
  color: var(--text);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #111e1e;
}

.project-card.hidden {
  display: none;
}

/* ── PROJECT CARDS ───────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  cursor: pointer;
}

.project-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface2);
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.04);
}

.project-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 30, 30, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-hover {
  opacity: 1;
}

.project-hover span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 10px 22px;
}

.project-info {
  padding: 16px 0 0;
}

.project-info h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}

.project-info span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 20, 0.96);
}

.lb-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px 40px 20px;
}

.lb-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.lb-tag {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.lb-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
}

.lb-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.lb-close:hover { color: var(--text); }
.lb-close svg { width: 28px; height: 28px; }

.lb-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 0;
}

.lb-img {
  max-height: 100%;
  max-width: calc(100% - 120px);
  object-fit: contain;
  display: block;
}

.lb-arrow {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  padding: 12px;
  border-radius: 2px;
  flex-shrink: 0;
  transition: all 0.2s;
}
.lb-arrow:hover { border-color: var(--accent); color: var(--accent); }
.lb-arrow svg { width: 22px; height: 22px; display: block; }

.lb-counter {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  padding: 10px 0 8px;
  flex-shrink: 0;
}

.lb-thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  justify-content: center;
  flex-shrink: 0;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.lb-thumb {
  width: 64px;
  height: 44px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.45;
  border: 1px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.lb-thumb.active,
.lb-thumb:hover {
  opacity: 1;
  border-color: var(--accent);
}

.lb-thumb-video {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
  color: var(--accent);
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.work-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Placeholder gradient when no image */
.work-img-wrap img[src="assets/images/placeholder.jpg"] {
  object-fit: cover;
  /* placeholder color until real images added */
  background: var(--surface2);
  filter: brightness(0.4);
}

/* Show a nice placeholder tint */
.work-item .work-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1c1510, #0d0d0d);
  z-index: 0;
}

.work-item img { position: relative; z-index: 1; transition: transform 0.5s ease; }
.work-item:hover img { transform: scale(1.05); }

.work-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.work-item:hover .work-overlay {
  opacity: 1;
  transform: translateY(0);
}

.work-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.work-overlay h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
}

.work-item.hidden {
  display: none;
}

/* ============================================================
   PROCESS
   ============================================================ */
#process {
  padding: 120px 0;
  background: var(--surface);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.process-step {
  background: var(--surface);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  transition: color 0.3s;
}

.process-step:hover .step-number {
  color: var(--accent);
}

.step-body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   QUOTATION
   ============================================================ */
#quotation { background: var(--bg); padding: 120px 0; }

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

.quote-card {
  background: var(--surface);
  padding: 48px 40px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.quote-card--featured {
  border-color: var(--accent-dim);
  background: rgba(200,169,110,0.04);
}

.quote-header h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.quote-price {
  font-size: 14px;
  color: var(--text-muted);
}
.quote-price span {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-head);
}

.quote-list {
  list-style: none;
  flex: 1;
}
.quote-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-top: 1px solid var(--border);
}
.quote-list li::before {
  content: '✓  ';
  color: var(--accent);
}

.quote-note {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 120px 0;
}

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

.contact-left .section-tag { display: block; margin-bottom: 20px; }

.contact-left h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-left > p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 48px;
  max-width: 380px;
}

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

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.contact-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-link:hover { color: var(--text); }

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

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

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

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-dim);
}

.form-note {
  font-size: 13px;
  color: var(--accent);
  min-height: 20px;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-ig svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-ig:hover svg { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 200px 1fr;
  }
  .about-stats { flex-direction: row; align-items: flex-start; grid-column: 1 / -1; }
  .about-stats .stat { text-align: left; border-top: none; border-right: 1px solid var(--border); padding: 0 24px; }
  .about-stats .stat:first-child { border-top: none; padding-left: 0; }
  .about-stats .stat:last-child { border-right: none; }
  .about-label { display: none; }

  .contact-grid { gap: 60px; }
}

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

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    z-index: 99;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 5%;
    font-size: 15px;
  }
  .nav-cta { margin: 8px 5% 0; display: block; text-align: center; }

  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(40px, 10vw, 64px); }
  .hero-br { display: block; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-photo { max-width: 280px; }
  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .work-item--wide { grid-column: span 2; }
  .work-item--tall { grid-row: span 1; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .work-item--wide { grid-column: span 1; }

  .footer-inner { flex-direction: column; text-align: center; }
}
