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

:root {
  --bg: #f6efe5;
  --bg-2: #f1e3cf;
  --ink: #241f1a;
  --muted: #6b5b4d;
  --accent: #c9832b;
  --accent-2: #a8611e;
  --card: rgba(255, 255, 255, 0.65);
  --border: rgba(36, 31, 26, 0.12);
  --shadow: 0 20px 50px rgba(36, 31, 26, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #f9f4ec 0%, var(--bg) 50%, var(--bg-2) 100%);
  min-height: 100vh;
}

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

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

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

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  font-size: 20px;
  font-weight: 700;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink);
}

.hero {
  padding: 90px 0 70px;
}

.hero .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  font-size: 12px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 3vw + 2rem, 4.2rem);
  line-height: 1.05;
  margin: 10px 0 20px;
}

.lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 25px;
}

.button {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: var(--shadow);
}

.button.ghost {
  border: 1px solid var(--border);
  color: var(--ink);
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 320px;
}

.dune {
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: radial-gradient(120% 120% at 20% 20%, #f9f4ec 0%, #e5caa6 45%, #d2a06b 90%);
  border-radius: 60% 40% 0 0;
  box-shadow: inset 0 18px 40px rgba(255, 255, 255, 0.4);
  animation: drift 12s ease-in-out infinite;
}

.dune.second {
  height: 130px;
  bottom: 50px;
  opacity: 0.7;
  animation-delay: 1.2s;
}

.dune.third {
  height: 110px;
  bottom: 110px;
  opacity: 0.55;
  animation-delay: 2.4s;
}

.orbit {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px dashed rgba(36, 31, 26, 0.2);
  right: 15%;
  top: 10%;
  animation: spin 18s linear infinite;
}

.orbit span {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-2);
  border-radius: 50%;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(201, 131, 43, 0.8);
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2vw + 1.2rem, 3rem);
  margin: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.work-list {
  display: grid;
  gap: 18px;
}

.work-item {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
}

.work-title {
  font-weight: 600;
}

.work-desc {
  color: var(--muted);
}

.note {
  margin-top: 16px;
  color: var(--muted);
}

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

.about p {
  color: var(--muted);
  line-height: 1.7;
}

.about-points {
  display: grid;
  gap: 18px;
}

.about-points strong {
  display: block;
  font-size: 1rem;
}

.about-points p {
  margin: 6px 0 0;
}

.contact {
  padding-bottom: 110px;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 36px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.contact-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  padding: 30px 0 50px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

@keyframes drift {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-12px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

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