/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-bg:       #fafaf8;
  --clr-surface:  #ffffff;
  --clr-primary:  #1a1a2e;
  --clr-accent:   #e76f51;
  --clr-text:     #2d2d2d;
  --clr-muted:    #6b7280;
  --clr-border:   #e5e7eb;
  --radius:       8px;
  --shadow:       0 2px 12px rgba(0,0,0,.08);
  --transition:   .2s ease;
  --max-w:        1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
}

/* ── Utilities ── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 1.5rem; }

.section         { padding-block: 5rem; }
.section--alt    { background: var(--clr-surface); }
.section-title   { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 2rem; color: var(--clr-primary); }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow);
}

.site-header .container {
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: 1rem;
}

.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo-text { font-size: 1.2rem; font-weight: 700; color: var(--clr-primary); }

.nav { margin-left: auto; }
.nav ul { list-style: none; display: flex; gap: .25rem; }
.nav-link {
  display: block; padding: .4rem .9rem;
  color: var(--clr-muted); text-decoration: none;
  border-radius: var(--radius);
  font-size: .95rem; transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--clr-primary); background: var(--clr-bg);
}
.nav-link.active { font-weight: 600; }

.nav-toggle {
  display: none; background: none; border: none;
  font-size: 1.4rem; cursor: pointer; color: var(--clr-primary);
}

/* ── Hero ── */
.hero {
  padding-block: 7rem 6rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  color: #fff; text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 1rem;
}
.hero-sub { font-size: 1.15rem; color: #cbd5e1; margin-bottom: 2.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: .75rem 2rem;
  border-radius: var(--radius); font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--clr-accent); color: #fff;
}
.btn-primary:hover { background: #cf6045; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(231,111,81,.4); }

/* ── Gallery grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--clr-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }

.card-thumb { height: 180px; }
.card-thumb--amber  { background: linear-gradient(135deg, #f59e0b, #fcd34d); }
.card-thumb--teal   { background: linear-gradient(135deg, #0d9488, #5eead4); }
.card-thumb--rose   { background: linear-gradient(135deg, #e11d48, #fb7185); }
.card-thumb--indigo { background: linear-gradient(135deg, #4338ca, #818cf8); }
.card-thumb--sage   { background: linear-gradient(135deg, #4d7c0f, #a3e635); }
.card-thumb--coral  { background: linear-gradient(135deg, #e76f51, #fca5a5); }

.card h3 { padding: 1rem 1rem .4rem; font-size: 1.05rem; color: var(--clr-primary); }
.card p  { padding: 0 1rem 1.2rem; font-size: .9rem; color: var(--clr-muted); }

/* ── About two-col ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.two-col p { color: var(--clr-muted); margin-bottom: .8rem; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat {
  background: var(--clr-bg); border-radius: var(--radius);
  padding: 1.5rem; text-align: center;
  border: 1px solid var(--clr-border);
}
.stat-num   { display: block; font-size: 2.2rem; font-weight: 800; color: var(--clr-accent); }
.stat-label { font-size: .85rem; color: var(--clr-muted); text-transform: uppercase; letter-spacing: .05em; }

/* ── Process ── */
.process-list { list-style: none; display: flex; flex-direction: column; gap: 2rem; }
.process-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 3rem; height: 3rem;
  border-radius: 50%; background: var(--clr-primary); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: .9rem;
}
.process-step h3 { margin-bottom: .3rem; color: var(--clr-primary); }
.process-step p  { color: var(--clr-muted); }

/* ── Contact ── */
.contact-wrap { max-width: 600px; }
.contact-wrap > p { color: var(--clr-muted); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: flex; flex-direction: column; gap: .4rem; }
.form-row label { font-weight: 600; font-size: .9rem; }
.form-row input, .form-row textarea {
  padding: .65rem .9rem; border: 1px solid var(--clr-border);
  border-radius: var(--radius); font-size: 1rem;
  background: var(--clr-bg); transition: var(--transition);
  font-family: inherit;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(231,111,81,.15);
}

/* ── Footer ── */
.site-footer {
  background: var(--clr-primary); color: #94a3b8;
  text-align: center; padding-block: 2rem;
}
.site-footer .container { display: flex; flex-direction: column; gap: .4rem; }
.deploy-badge code {
  background: rgba(255,255,255,.1); padding: .1rem .4rem;
  border-radius: 4px; font-size: .85rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { display: none; }
  .nav-toggle { display: block; }

  .two-col { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
