@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --ink: #0b1114;
  --coal: #151f25;
  --mist: #dfe7ec;
  --foam: #f4f7f9;
  --teal: #117c7b;
  --teal-dark: #0c4b4d;
  --sun: #f6b96b;
  --rose: #f05e5e;
  --shadow: 0 24px 60px rgba(12, 23, 30, 0.18);
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #ffffff 0%, #f0f4f7 45%, #e9f0f4 100%);
  line-height: 1.6;
  min-height: 100vh;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 0;
}

.hero {
  position: relative;
  padding: 40px 6vw 80px;
  overflow: hidden;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 700;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--coal);
  font-weight: 500;
  font-size: 15px;
}

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

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  margin-top: 60px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
}

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin: 16px 0 12px;
}

.subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--coal);
}

.summary {
  margin-top: 16px;
  max-width: 560px;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.btn.primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 12px 30px rgba(17, 124, 123, 0.3);
}

.btn.primary:hover {
  background: var(--teal-dark);
}

.btn.ghost {
  border: 1px solid rgba(12, 75, 77, 0.3);
  color: var(--teal-dark);
  background: transparent;
}

.hero-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.portrait {
  height: 200px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0b1114 0%, #117c7b 60%, #f6b96b 100%);
  position: relative;
}

.portrait .ring {
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.portrait .ring:nth-child(2) {
  inset: 40px;
  border-color: rgba(255, 255, 255, 0.2);
}

.card-title {
  font-weight: 600;
  font-size: 16px;
}

.card-detail {
  color: rgba(11, 17, 20, 0.7);
  font-size: 14px;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.badge {
  background: rgba(17, 124, 123, 0.1);
  color: var(--teal-dark);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  padding: 80px 6vw;
  position: relative;
  z-index: 1;
}

.section.alt {
  background: var(--foam);
}

.section-header {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.panel {
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(12, 23, 30, 0.08);
}

.panel.highlight {
  background: linear-gradient(135deg, #ffffff 0%, #f0fbfb 100%);
  border: 1px solid rgba(17, 124, 123, 0.2);
}

.panel h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.list {
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 15px;
}

.list li::before {
  content: "•";
  color: var(--teal);
  margin-right: 10px;
}

.project-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-links {
  display: flex;
  gap: 18px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.contact-links a {
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 600;
}

.footer {
  padding: 30px 6vw 50px;
  text-align: center;
  font-size: 14px;
  color: rgba(11, 17, 20, 0.6);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 12px;
  }

  .hero {
    padding-top: 24px;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
