/* ===== TOKENS ===== */
:root {
  --bg: #f5f1ea;
  --bg-deep: #ece5d8;
  --panel: #fdfaf5;
  --text: #1a1e1f;
  --text-light: #f8f5ef;
  --muted: #636e6f;
  --accent: #cf6a2c;
  --accent-deep: #9a4a1c;
  --accent-glow: rgba(207, 106, 44, 0.18);
  --forest: #2a3c37;
  --forest-deep: #1c2b27;
  --line: #d4c9b8;
  --line-light: rgba(212, 201, 184, 0.5);
  --card-shadow: 0 2px 8px rgba(40, 35, 28, 0.06), 0 12px 40px rgba(40, 35, 28, 0.08);
  --card-hover: 0 8px 30px rgba(40, 35, 28, 0.12), 0 20px 60px rgba(40, 35, 28, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ===== GRAIN TEXTURE ===== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ===== LAYOUT ===== */
.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 5%;
  z-index: 100;
  transition: all 0.4s var(--ease);
}

.header.scrolled {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line-light);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 3.5rem;
  width: auto;
  transition: filter 0.4s var(--ease);
}

.header.scrolled .brand-logo {
  filter: invert(1);
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.header.scrolled .menu-toggle { background: rgba(0,0,0,0.06); }

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s var(--ease);
}

.header.scrolled .hamburger,
.header.scrolled .hamburger::before,
.header.scrolled .hamburger::after { background: var(--text); }

.hamburger { top: 50%; margin-top: -1px; }
.hamburger::before { content: ""; top: -6px; left: 0; transform: none; }
.hamburger::after { content: ""; top: 6px; left: 0; transform: none; }

.menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.menu-toggle[aria-expanded="true"] .hamburger::before {
  top: 0; transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger::after {
  top: 0; transform: rotate(-45deg);
}

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

.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.4s var(--ease);
}

.header.scrolled .nav a { color: var(--text); }

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.nav-cta:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(207, 106, 44, 0.35);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(20, 28, 25, 0.55) 0%,
      rgba(20, 28, 25, 0.35) 40%,
      rgba(20, 28, 25, 0.7) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 10rem;
  padding-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 0.4rem 1rem 0.4rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(207, 106, 44, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(207, 106, 44, 0); }
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--text-light);
  margin: 0;
  max-width: 14ch;
}

.hero-copy {
  margin: 1.5rem 0 0;
  max-width: 50ch;
  color: rgba(248, 245, 239, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

/* Hero stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1px;
  margin-top: auto;
  padding-bottom: 3rem;
}

.stat {
  flex: 1;
  padding: 1.5rem 1.2rem;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.stat:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.stat:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.stat:hover { background: rgba(255,255,255,0.12); }

.stat-number {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-label {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  color: rgba(248, 245, 239, 0.65);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 5%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(248, 245, 239, 0.45);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 4px 16px rgba(207, 106, 44, 0.3);
}

.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(207, 106, 44, 0.4);
}

.btn-ghost {
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* ===== SECTIONS COMMON ===== */
.section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
}

h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: 0.015em;
  line-height: 1.02;
  margin: 0.5rem 0 0;
  color: var(--text);
}

.section-header {
  margin-bottom: 2.5rem;
}

/* ===== SERVICES ===== */
.services {
  padding: 7rem 0;
  background: var(--bg);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s var(--ease);
}

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

.card-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--line);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color 0.4s var(--ease);
}

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

.card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.card:hover .card-accent { transform: scaleX(1); }

/* ===== PROJECTS / CAROUSEL ===== */
.projects {
  padding: 7rem 0 5rem;
  background: var(--forest-deep);
  position: relative;
  overflow: hidden;
}

.projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(207, 106, 44, 0.08), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(42, 60, 55, 0.5), transparent 60%);
}

.projects .section-kicker { color: var(--accent); }
.projects h2 { color: var(--text-light); }

.projects-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.carousel-controls {
  display: flex;
  gap: 0.6rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.05);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-left: 5%;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.6s var(--ease);
  cursor: grab;
}

.carousel-track.grabbing { cursor: grabbing; }

.carousel-slide {
  flex: 0 0 calc(38% - 0.625rem);
  min-width: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--forest);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.carousel-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.slide-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.carousel-slide:hover .slide-image img {
  transform: scale(1.06);
}

.slide-content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.project-tag {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.2rem 0.65rem;
  background: rgba(207, 106, 44, 0.15);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.slide-content h3 {
  margin: 0;
  color: var(--text-light);
  font-size: 1.15rem;
  font-weight: 700;
}

.slide-content p {
  margin: 0.4rem 0 0;
  color: rgba(248, 245, 239, 0.55);
  font-size: 0.88rem;
  line-height: 1.55;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s var(--ease);
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  text-align: center;
}

.badge-number {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

.about-body {
  padding: 5rem 4rem;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-desc {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 48ch;
}

.process {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: all 0.35s var(--ease);
}

.process li:hover {
  transform: translateX(6px);
  border-color: var(--accent);
}

.process-step {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 8px;
}

.process h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.process p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ===== CONTACT ===== */
.contact {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
    rgba(28, 43, 39, 0.92) 0%,
    rgba(42, 60, 55, 0.88) 100%
  );
}

.contact-panel {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.contact-panel .section-kicker { color: var(--accent); }
.contact-panel h2 { color: var(--text-light); }
.contact-panel > p {
  color: rgba(248, 245, 239, 0.7);
  margin: 1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  color: rgba(248, 245, 239, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(207, 106, 44, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-actions .btn-primary {
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
}

.contact-phone {
  margin: 0;
  color: rgba(248, 245, 239, 0.6);
  font-size: 0.95rem;
}

.contact-phone strong {
  color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--forest-deep);
  padding: 2.5rem 0;
  color: rgba(248, 245, 239, 0.5);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand .brand-logo {
  height: 2.5rem;
  width: auto;
}

.footer-location {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveals for cards */
.card-grid .card:nth-child(1) { transition-delay: 0s; }
.card-grid .card:nth-child(2) { transition-delay: 0.1s; }
.card-grid .card:nth-child(3) { transition-delay: 0.2s; }
.card-grid .card:nth-child(4) { transition-delay: 0.3s; }

.process li:nth-child(1) { transition-delay: 0s; }
.process li:nth-child(2) { transition-delay: 0.12s; }
.process li:nth-child(3) { transition-delay: 0.24s; }

/* Hero reveal sequence */
.reveal-hero {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-hero.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-content .reveal-hero:nth-child(1) { transition-delay: 0.2s; }
.hero-content .reveal-hero:nth-child(2) { transition-delay: 0.35s; }
.hero-content .reveal-hero:nth-child(3) { transition-delay: 0.5s; }
.hero-content .reveal-hero:nth-child(4) { transition-delay: 0.65s; }

.hero-stats .reveal-hero:nth-child(1) { transition-delay: 0.8s; }
.hero-stats .reveal-hero:nth-child(2) { transition-delay: 0.9s; }
.hero-stats .reveal-hero:nth-child(3) { transition-delay: 1.0s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 0.625rem);
  }
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-height: 400px;
  }

  .about-body {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem 4%;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0 0.5rem;
  }

  .nav.open { display: flex; }

  .nav a { color: var(--text) !important; }

  .hero h1 {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 0;
  }

  .stat:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .stat:last-child { border-radius: 0 0 var(--radius) var(--radius); }

  .hero-scroll-hint { display: none; }

  .carousel-slide {
    flex: 0 0 calc(80% - 0.625rem);
    min-width: 260px;
  }

  .projects-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .services, .projects {
    padding: 5rem 0;
  }

  .contact {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-top: 7rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .about-body {
    padding: 2rem 1.2rem;
  }
}
