:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --offwhite: #f7f5f2;
  --gray: #9b9b9b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background: var(--offwhite);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

a:hover {
  opacity: 0.75;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 242, 0.85);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 12px;
  letter-spacing: 0.35em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: #1a1a1a;
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-light {
  background: var(--white);
  color: var(--black);
  font-weight: 600;
}

.btn-light:hover {
  background: #e9e7e4;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 1;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  max-width: 640px;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator span {
  display: block;
  width: 26px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 16px;
  position: relative;
}

.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll 1.8s infinite;
}

@keyframes scroll {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  60% { opacity: 1; transform: translate(-50%, 12px); }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}

.services {
  background: var(--white);
  padding: 100px 8vw;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gray);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.service-card {
  border-top: 1px solid #e3e0dc;
  padding-top: 24px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card p {
  color: #3a3a3a;
  font-size: 15px;
}

.photo-strip {
  width: 100%;
  height: 55vh;
  min-height: 340px;
  overflow: hidden;
  line-height: 0;
}

.photo-strip--tall {
  height: 70vh;
  min-height: 480px;
}

.photo-strip img,
.photo-strip picture {
  width: 100%;
  height: 100%;
  display: block;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero picture {
  width: 100%;
  height: 100%;
  display: block;
}

.photo-strip--gt2rs {
  background: #0a0a0a;
}

.photo-strip--gt2rs img {
  object-position: center 55%;
}

.photo-strip--countach img {
  object-position: center 60%;
}

.photo-strip--diablo3 {
  background: #0a0a0a;
}

.photo-strip--diablo3 img {
  object-position: center 64%;
  transform: scale(1);
}

.why {
  background: var(--black);
  color: var(--white);
  padding: 110px 8vw;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.why-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 36px;
}

.why blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.2;
}

.why p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.about {
  background: var(--white);
  padding: 110px 8vw;
}

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 24px;
}

.about p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #2a2a2a;
}

.about-photo {
  overflow: hidden;
  border-radius: 0;
  min-height: 480px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact {
  background: var(--black);
  color: var(--white);
  padding: 120px 8vw 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.contact-left {
  padding-top: 8px;
}

.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 3.5vw, 56px);
  margin-bottom: 24px;
  line-height: 1.15;
}

.contact-sub {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.8;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.form-row textarea,
.form-row input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  border-radius: 0;
}

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

.contact-form button {
  margin-top: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

footer {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.footer-location {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .services-grid,
  .why-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    height: 40vh;
  }

  .photo-strip--tall {
    height: 55vh;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
    justify-content: center;
  }

  .services,
  .why,
  .about,
  .contact {
    padding: 80px 6vw;
  }
}
