:root {
  color-scheme: light;
  --bg: #f5f1eb;
  --surface: #ffffff;
  --surface-soft: #f8f4ef;
  --surface-strong: #e9e3da;
  --text: #1d2329;
  --muted: #6a7078;
  --primary: #dd8e36;
  --primary-soft: #f9e2b0;
  --border: rgba(29, 34, 41, 0.08);
  --shadow: 0 24px 70px rgba(22, 28, 36, 0.08);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(221, 142, 54, 0.16), transparent 25%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.85), transparent 20%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

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

button,
a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.95rem 1.6rem;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

a.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), #f5b157);
  color: #111;
}

.button-secondary {
  background: rgba(221, 142, 54, 0.08);
  border-color: rgba(221, 142, 54, 0.18);
  color: var(--text);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(245, 241, 235, 0.86);
  border-bottom: 1px solid rgba(29, 34, 41, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0 0.25rem 0;
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo {
  height: 64px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.hero {
  padding: 5rem 1.5rem 4rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.hero-text {
  margin: 1.75rem 0 2.25rem;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

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

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel-inner {
  padding: 2rem;
}

.hero-panel-title {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 1rem;
}

.hero-features li {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--text);
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.3rem;
  border-radius: 20px;
  background: rgba(221, 142, 54, 0.12);
  color: var(--text);
  font-weight: 700;
}

.section {
  padding: 5rem 1.5rem;
}

.section-soft {
  background: #ffffff;
}

.section-alt {
  background: #f7f3ee;
}

.section-heading {
  display: grid;
  row-gap: 0.75rem;
}

.section-heading small {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--primary);
  font-size: 0.8rem;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
}

p {
  margin: 0 0 1.45rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.stats-grid,
.services-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2.5rem;
}

.stats-grid article,
.service-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.9rem;
  box-shadow: 0 18px 40px rgba(31, 36, 41, 0.05);
}

.stats-grid h3,
.service-card h3,
.contact-card h3 {
  margin-top: 0;
}

.service-card {
  min-height: 190px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}

.reference-panel {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  grid-template-columns: 1.6fr 1fr;
  padding: 2.5rem 0;
}

.contact-grid {
  grid-template-columns: 1.7fr 1fr;
  align-items: start;
  gap: 2rem;
}

.contact-card {
  background: linear-gradient(180deg, #fff, #f9f5ef);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li {
  margin-bottom: 1rem;
  color: var(--muted);
}

.contact-list a {
  color: var(--primary);
}

.footer {
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--muted);
  background: transparent;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

@media (max-width: 1168px) {
  .topbar-inner {
    padding: 0.5rem 1.5rem 0.25rem 1.5rem;
  }
}

@media (max-width: 880px) {
  .hero-grid,
  .reference-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Instagram Slider */
.instagram-slider-container {
  position: relative;
  margin: 2.5rem 0;
  overflow: hidden;
}

.instagram-slider {
  display: grid;
  grid-auto-flow: column;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1rem 0;
  scrollbar-width: none;
}

.instagram-slider::-webkit-scrollbar {
  display: none;
}

.instagram-post {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.instagram-post:hover {
  transform: translateY(-4px);
}

.instagram-post img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.instagram-post-content {
  padding: 0;
  display: none;
}

.instagram-post-caption {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.instagram-slider-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  color: var(--muted);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text);
  transition: all 0.2s ease;
  z-index: 5;
}

.slider-nav:hover {
  background: rgba(221, 142, 54, 0.15);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav-prev {
  left: -60px;
}

.slider-nav-next {
  right: -60px;
}

@media (max-width: 640px) {
  .topbar-inner {
    flex-direction: row;
    align-items: center;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    gap: 0.5rem;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 0.75rem 0;
  }

  .instagram-post {
    max-width: 100%;
  }

  .slider-nav-prev {
    left: 0;
  }

  .slider-nav-next {
    right: 0;
  }
}

@media (max-width: 480px) {
  .instagram-slider-container {
    position: relative;
    margin: 2.5rem 0;
    padding: 0;
  }

  .instagram-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    snap-align: center;
  }

  .instagram-post {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    border-radius: 24px;
    border: none;
    background: none;
  }

  .instagram-post img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .slider-nav {
    position: absolute;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
  }

  .slider-nav-prev {
    left: 10px;
  }

  .slider-nav-next {
    right: 10px;
  }
}
