:root {
  --bg: #f6f4ef;
  --ink: #121212;
  --muted: #5b5b5b;
  --accent: #c96b4b;
  --card: #ffffff;
  --stroke: rgba(18, 18, 18, 0.1);
  --shadow: 0 18px 45px rgba(18, 18, 18, 0.12);
  --radius: 22px;
  --max-width: 1100px;
}

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

html, body {
  overflow-x: hidden;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff7f2 0%, #f6f4ef 50%, #f1ede6 100%);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 244, 239, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 32px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span:nth-child(1) {
  top: 6px;
}

.nav-toggle span:nth-child(2) {
  top: 15px;
}

.nav-toggle span:nth-child(3) {
  top: 24px;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 24px 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-intro {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 26px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  background: var(--ink);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(18, 18, 18, 0.12);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--stroke);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.65rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.hero-visual img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
  height: 520px;
  width: 100%;
}

.accent-card {
  background: var(--card);
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  box-shadow: 0 14px 30px rgba(18, 18, 18, 0.08);
  font-size: 0.95rem;
}

section {
  padding: 70px 24px;
}

.section-title {
  max-width: var(--max-width);
  margin: 0 auto 32px;
}

.section-title h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}

.about-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  color: var(--muted);
  font-size: 1rem;
}

.focus {
  background: #ffffff;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.focus-cards {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.focus-cards article {
  background: var(--bg);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  min-height: 200px;
}

.focus-cards h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.focus-cards p {
  color: var(--muted);
  font-size: 0.95rem;
}

.work-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.work-grid article {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: 0 16px 30px rgba(18, 18, 18, 0.08);
}

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

.work-grid h3 {
  padding: 18px 20px 6px;
  font-size: 1.2rem;
}

.work-grid p {
  padding: 0 20px 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact {
  background: #ffffff;
}

.contact-card {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--bg);
  border-radius: 22px;
  border: 1px solid var(--stroke);
  padding: 32px;
  display: grid;
  gap: 16px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 24px 50px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 70px;
  }

  .hero-visual img {
    height: 460px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 24px;
    background: #ffffff;
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 16px 18px;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding: 60px 20px 50px;
  }

  section {
    padding: 60px 20px;
  }
}

@media (max-width: 520px) {
  .hero-visual img {
    height: 420px;
  }

  .contact-card {
    padding: 24px;
  }
}
