*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

:root {
  --black:   #0D0D0D;
  --gold:    #BFA06A;
  --gold-lt: #D4B98A;
  --white:   #F5F3EF;
  --grey:    #1A1A1A;
  --grey2:   #2A2A2A;
  --text:    #C8C0B0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── 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: linear-gradient(to bottom, rgba(13,13,13,0.95) 0%, transparent 100%);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(13,13,13,0.97); border-bottom: 1px solid rgba(191,160,106,0.15); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; letter-spacing: 0.12em;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text); text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold); padding: 10px 24px;
  text-decoration: none; transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* ── HERO (fixed — il contenuto scorre sopra) ── */
#hero {
  position: fixed; top: 0; left: 0; right: 0;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  z-index: 1; /* sopra lo spacer così i bottoni sono cliccabili */
}

/* Spacer che occupa lo spazio dell'hero nel flusso */
.hero-spacer {
  height: 100vh;
  position: relative;
  z-index: 0;
  pointer-events: none;
}

/* Tutte le sezioni scorrono sopra l'hero */
#about, #process, #services, #testimonials, #portfolio, #contact, footer {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1510 50%, #0D0D0D 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(191,160,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191,160,106,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-bg::after {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(191,160,106,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }

.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px; display: block;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 8vw, 110px); font-weight: 300;
  line-height: 0.95; color: var(--white); letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text); margin-bottom: 56px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold); color: var(--black); padding: 16px 40px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; font-weight: 600; transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-outline {
  border: 1px solid rgba(191,160,106,0.5); color: var(--gold); padding: 16px 40px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; transition: border-color 0.3s, background 0.3s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(191,160,106,0.06); }

.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(191,160,106,0.5); animation: bounce 2s infinite;
}
.scroll-hint::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(191,160,106,0.5), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTION COMMONS ── */
section { padding: 120px 60px; }

.section-label {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.section-label::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 300;
  color: var(--white); line-height: 1.1; margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); }
.divider {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 40px 0;
}

/* ── ABOUT ── */
#about { background: var(--grey); }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 3/4; overflow: hidden; display: block; }
.about-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 3/4; background: var(--grey2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(191,160,106,0.3); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.about-img-wrap::after {
  content: '';
  position: absolute; bottom: -20px; right: -20px;
  width: 80%; height: 80%;
  border: 1px solid rgba(191,160,106,0.3); z-index: -1;
}
.about-text p { margin-bottom: 20px; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 48px; padding-top: 48px;
  border-top: 1px solid rgba(191,160,106,0.15);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300; color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text); margin-top: 6px;
}

/* ── PROCESS ── */
#process { background: var(--black); }
.process-inner { max-width: 1000px; margin: 0 auto; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; margin-top: 72px; position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 28px; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(191,160,106,0.3), transparent);
}
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; border: 1px solid rgba(191,160,106,0.4);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--gold);
  background: var(--black); position: relative; z-index: 1;
}
.step-title { font-size: 13px; letter-spacing: 0.1em; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: 12px; color: var(--text); line-height: 1.7; }

/* ── SERVICES ── */
#services { background: var(--grey); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { margin-bottom: 80px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.service-card {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: var(--grey2); cursor: pointer;
  display: block; text-decoration: none;
}
.service-card:hover .service-overlay { opacity: 1; }
.service-card:hover .service-img-placeholder { transform: scale(1.04); }
.service-img-placeholder {
  position: absolute; inset: 0; transition: transform 0.6s ease;
  display: flex; align-items: center; justify-content: center;
}
.service-card:nth-child(1) .service-img-placeholder {
  background: linear-gradient(135deg, #1a1510 0%, #2a2015 50%, #1a1510 100%);
}
.service-card:nth-child(2) .service-img-placeholder {
  background: linear-gradient(135deg, #101520 0%, #151a28 50%, #101520 100%);
}
.ph-icon { opacity: 0.15; }
.ph-icon svg { width: 80px; height: 80px; }
.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.4) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 48px; opacity: 0.85; transition: opacity 0.4s;
}
.service-tag { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.service-name {
  font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300;
  color: var(--white); line-height: 1.1; margin-bottom: 16px;
}
.service-desc { font-size: 13px; color: var(--text); max-width: 340px; line-height: 1.7; margin-bottom: 24px; }
.service-link {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.service-link::after { content: '→'; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--black); cursor: grab; user-select: none; }
#testimonials:active { cursor: grabbing; }
.testimonials-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 32px); font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.5; margin: 60px 0 32px;
}
.quote-mark { color: var(--gold); font-size: 80px; line-height: 0.5; vertical-align: -20px; }
.quote-author { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.quote-dots { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.dot {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(191,160,106,0.3);
  border: none; cursor: pointer; transition: background 0.3s;
}
.dot.active { background: var(--gold); }

/* ── PORTFOLIO ── */
#portfolio { background: var(--grey); }
.portfolio-inner { max-width: 1200px; margin: 0 auto; }
.portfolio-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px;
}
.portfolio-filter { display: flex; gap: 24px; }
.filter-btn {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  background: none; border: none; color: var(--text); cursor: pointer;
  padding-bottom: 4px; border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.filter-btn.active, .filter-btn:hover { color: var(--gold); border-bottom-color: var(--gold); }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto; gap: 8px;
}
.portfolio-item { position: relative; overflow: hidden; background: var(--grey2); cursor: pointer; }
.portfolio-item:first-child { grid-column: span 2; grid-row: span 2; }

/* Immagini reali nel portfolio */
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
  min-height: 240px;
}
.portfolio-item:first-child img { min-height: 400px; }
.portfolio-item:hover img { transform: scale(1.04); }

/* Placeholder (usato se non c'è immagine) */
.portfolio-ph {
  width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  color: rgba(191,160,106,0.2); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; transition: transform 0.5s;
}
.portfolio-item:first-child .portfolio-ph { aspect-ratio: unset; height: 100%; min-height: 400px; }
.portfolio-item:nth-child(1) .portfolio-ph { background: linear-gradient(135deg, #1a1510, #2a2018); }
.portfolio-item:nth-child(2) .portfolio-ph { background: linear-gradient(135deg, #12161a, #1a2028); }
.portfolio-item:nth-child(3) .portfolio-ph { background: linear-gradient(135deg, #181510, #221e14); }
.portfolio-item:nth-child(4) .portfolio-ph { background: linear-gradient(135deg, #101418, #151820); }
.portfolio-item:nth-child(5) .portfolio-ph { background: linear-gradient(135deg, #1a1610, #24201a); }
.portfolio-item:hover .portfolio-ph { transform: scale(1.04); }
.portfolio-item:hover .portfolio-hover { opacity: 1; }
.portfolio-hover {
  position: absolute; inset: 0; background: rgba(13,13,13,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.portfolio-hover span { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.portfolio-cta { text-align: center; margin-top: 60px; }

/* ── CONTACT ── */
#contact { background: var(--black); }
.contact-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-info { padding-top: 8px; }
.contact-info p { margin-bottom: 40px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 36px; height: 36px; border: 1px solid rgba(191,160,106,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }
.contact-detail-text { font-size: 13px; line-height: 1.6; }
.contact-detail-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.contact-detail-text a { color: var(--text); text-decoration: none; }
.contact-detail-text a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--grey); border: 1px solid rgba(191,160,106,0.2);
  color: var(--white); padding: 14px 18px;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--grey); }
.form-group textarea { resize: vertical; min-height: 120px; }
input::placeholder, textarea::placeholder { color: rgba(200,192,176,0.4); }
.form-submit {
  background: var(--gold); color: var(--black); border: none; padding: 16px 40px;
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
  transition: background 0.3s, transform 0.2s; align-self: flex-start;
}
.form-submit:hover { background: var(--gold-lt); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Messaggio di successo form */
.contact-form-wrap { position: relative; }
.form-success {
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 280px; text-align: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.7s ease;
}
.form-success.visible { display: flex; opacity: 1; pointer-events: auto; animation: fadeIn 0.7s ease forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300; font-style: italic;
  color: var(--white); margin-bottom: 16px;
  line-height: 1.2;
}
.success-sub {
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
}

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 1px solid rgba(191,160,106,0.15);
}
.footer-main {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px;
  padding: 72px 60px 56px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 300; letter-spacing: 0.1em;
  color: var(--white); margin-bottom: 10px;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(191,160,106,0.5); margin-bottom: 24px;
}
.footer-brand-desc { font-size: 12px; color: var(--text); line-height: 1.8; max-width: 280px; }
.footer-col-title {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(191,160,106,0.15);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 12px; color: var(--text); text-decoration: none;
  transition: color 0.3s; letter-spacing: 0.05em;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-line {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px;
}
.footer-contact-icon {
  color: var(--gold); font-size: 11px; letter-spacing: 0.1em;
  min-width: 14px; margin-top: 2px; flex-shrink: 0;
}
.footer-contact-info { font-size: 12px; color: var(--text); line-height: 1.6; }
.footer-contact-info a { color: var(--text); text-decoration: none; }
.footer-contact-info a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(191,160,106,0.08);
  padding: 20px 60px;
}
.footer-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 11px; color: rgba(200,192,176,0.35); }
.footer-piva { font-size: 11px; color: rgba(200,192,176,0.35); }

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer;
  background: none; border: none; padding: 4px;
  z-index: 200;
}
.hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--gold); transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 150;
  background: rgba(13,13,13,0.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 28px; letter-spacing: 0.1em;
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  color: var(--white); text-decoration: none;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-cta {
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid var(--gold); color: var(--gold);
  padding: 14px 32px; margin-top: 16px;
}

/* ── RESPONSIVE — TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  nav { padding: 20px 32px; }
  section { padding: 100px 40px; }
  .about-inner { gap: 48px; }
  .steps { gap: 24px; }
  .footer-main { padding: 56px 40px 44px; gap: 40px; }
  .footer-bottom { padding: 20px 40px; }
}

/* ── RESPONSIVE — PHABLET (≤900px) ── */
@media (max-width: 900px) {
  /* Nav */
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Sections */
  section { padding: 80px 24px; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img { aspect-ratio: 4/3; }
  .about-img-wrap::after { display: none; }
  .about-stats { grid-template-columns: 1fr 1fr; }

  /* Process */
  .process-inner { max-width: 100%; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { aspect-ratio: 16/9; }
  .service-overlay { opacity: 1; padding: 32px; }

  /* Portfolio */
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .portfolio-item:first-child { grid-column: span 2; grid-row: span 1; }
  .portfolio-item:first-child .portfolio-ph { min-height: 260px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr 1fr; padding: 48px 24px 40px; gap: 40px; }
  .footer-brand-desc { max-width: 100%; }
  .footer-bottom { padding: 20px 24px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── RESPONSIVE — MOBILE (≤600px) ── */
@media (max-width: 600px) {
  /* Hero */
  #hero { min-height: 100svh; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.25em; }
  .hero-title { font-size: clamp(40px, 12vw, 56px); line-height: 1; }
  .hero-sub { font-size: 11px; letter-spacing: 0.12em; margin-bottom: 40px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; }

  /* About */
  .about-img { aspect-ratio: 1/1; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-num { font-size: 36px; }

  /* Process */
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step { display: flex; align-items: flex-start; gap: 20px; text-align: left; }
  .step-num { margin: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: 18px; }

  /* Services */
  .service-card { aspect-ratio: 4/3; }
  .service-overlay { padding: 24px; }
  .service-name { font-size: 26px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:first-child { grid-column: span 1; }
  .portfolio-item:first-child .portfolio-ph { min-height: 280px; }

  /* Contact */
  .form-submit { width: 100%; text-align: center; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand-name { font-size: 24px; }

  /* Section titles */
  .section-title { font-size: clamp(28px, 8vw, 42px); }
}

/* ── RESPONSIVE — SMALL MOBILE (≤380px) ── */
@media (max-width: 380px) {
  section { padding: 64px 18px; }
  .hero-title { font-size: 36px; }
  nav { padding: 16px 18px; }
  .nav-logo { font-size: 18px; }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
