:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #f6f7fb;
  color: #111827;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

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

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

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e5e7eb;
}

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

.brand {
  font-weight: 700;
  letter-spacing: -0.03em;
}

nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

nav a {
  color: #374151;
  font-weight: 500;
}

.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, #eef2ff 0%, #ffffff 100%);
}

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

.eyebrow {
  margin: 0 0 1rem;
  color: #6366f1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
}

.hero p {
  margin: 0 0 2rem;
  color: #4b5563;
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: #4338ca;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.button-secondary {
  background: #e0e7ff;
  color: #312e81;
}

.content-block {
  padding: 4rem 0;
}

.content-highlight {
  background: #111827;
  color: #fff;
}

.content-highlight h2,
.content-highlight p {
  max-width: 760px;
}

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

.contact-preview {
  padding: 3rem 0 4rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #6b7280;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 4rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  font-weight: 600;
}

.contact-form-wrap {
  display: grid;
  gap: 2rem;
  padding-bottom: 4rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 560px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  background: #fff;
  font: inherit;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position: calc(100% - 1rem) calc(50% - 0.35rem), calc(100% - 0.5rem) calc(50% - 0.35rem);
  background-size: 0.45rem 0.45rem, 0.45rem 0.45rem;
  background-repeat: no-repeat;
}

.contact-form textarea {
  resize: vertical;
}

.contact-note {
  max-width: 560px;
  color: #4b5563;
  line-height: 1.7;
}

code {
  background: #f3f4f6;
  padding: 0.2rem 0.35rem;
  border-radius: 0.5rem;
}

@media (max-width: 880px) {
  .grid-2,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
