:root {
  --bg: #f8f6f1;
  --text: #111217;
  --muted: #5f616d;
  --accent: #ef6f2e;
  --accent-dark: #c04d1b;
  --surface: #ffffff;
  --border: #e3ddd2;
  --shadow: 0 15px 45px rgba(17, 18, 23, 0.08);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 4.5rem; /* offset for fixed nav */
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem min(6vw, 4rem);
  background: rgba(248, 246, 241, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(17, 18, 23, 0.08);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  font-weight: 700;
  font-size: 1.35rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 600;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  padding: 0.35rem 0.1rem;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--accent);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 18, 23, 0.1);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cta.primary {
  background: var(--accent);
  border: none;
  color: white;
  box-shadow: 0 10px 24px rgba(239, 111, 46, 0.28);
}

.cta.ghost {
  background: transparent;
  box-shadow: 0 6px 18px rgba(17, 18, 23, 0.08);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(17, 18, 23, 0.16);
}

.cta.primary:hover {
  box-shadow: 0 16px 34px rgba(239, 111, 46, 0.36);
}

.cta.ghost:hover {
  border-color: rgba(17, 18, 23, 0.18);
}

.hero {
  background: radial-gradient(circle at top right, #fde2cf, var(--bg));
  padding: 2.5rem min(6vw, 4rem) 4rem;
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.hero-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero-inner {
  max-width: 680px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
}

.hero-highlights li {
  background: rgba(239, 111, 46, 0.1);
  color: var(--accent);
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-media {
  margin: 0;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.hero-media figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(17, 18, 23, 0.8);
  color: white;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.hero-media figcaption span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

main {
  padding: 0  min(6vw, 4rem) 5rem;
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.section:last-of-type {
  border-bottom: none;
}

.section-header {
  max-width: 720px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.section--alt {
  background: #fffefc;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  margin: 3rem 0;
}

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

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.list li {
  padding-left: 1.5rem;
  position: relative;
}

.list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.section--cta {
  border-bottom: none;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.work-card {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.work-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.work-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.work-card__tag {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.work-card__body h3 {
  margin: 0;
  font-size: 1.2rem;
}

.work-card__body p {
  margin: 0;
  flex: 1;
  color: var(--muted);
}

.work-card__body span {
  font-weight: 600;
}

.cta-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
  background: var(--text);
  color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
}

.contact {
  display: grid;
  gap: 0.75rem;
}

.contact a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.contact-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 1.25rem;
  display: grid;
  gap: 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row.split {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.form-row label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(239, 111, 46, 0.5);
  border-color: rgba(239, 111, 46, 0.45);
}

.form-row input[type="file"] {
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
}

.footer {
  padding: 2.5rem min(6vw, 4rem) 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.1rem;
    gap: 0.65rem;
  }

  .nav-left {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .nav-links {
    gap: 0.65rem;
    font-size: 0.95rem;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  body {
    padding-top: 5.5rem;
  }

  .hero {
    padding: 1.75rem 1.25rem 3rem;
  }

  main {
    padding: 0 1.25rem 4rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-height: 280px;
  }

  .cta-card {
    text-align: left;
    grid-template-columns: 1fr;
  }
}
