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

:root {
  --bg: #f6f4ef;
  --ink: #171717;
  --muted: #515151;
  --accent: #0f766e;
  --accent-dark: #0b4f4a;
  --paper: #ffffff;
  --sand: #e4dac8;
  --edge: rgba(23, 23, 23, 0.12);
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

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

body {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 1200px at 10% -10%, #fdf2e9 0%, transparent 55%),
    radial-gradient(900px 900px at 100% 10%, #e7f5f2 0%, transparent 60%),
    var(--bg);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

.page {
  position: relative;
  overflow: hidden;
}

.page::before,
.page::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.08);
  filter: blur(0px);
  z-index: 0;
}

.page::before {
  top: -220px;
  left: -140px;
}

.page::after {
  bottom: -240px;
  right: -160px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  gap: 16px;
}

.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background: rgba(15, 118, 110, 0.12);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  padding: 40px 0 24px;
  align-items: center;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 16px;
}

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

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.hero-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.hero-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand);
  font-weight: 600;
}

.section {
  padding: 48px 0;
}

.section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
  max-width: 760px;
}

.cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.card {
  background: var(--paper);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--edge);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.95rem;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent-dark);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(15, 118, 110, 0.25);
}

.highlight {
  background: linear-gradient(120deg, rgba(15, 118, 110, 0.18), rgba(252, 211, 77, 0.18));
  padding: 0 6px;
  border-radius: 8px;
}

.list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.list li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list li::before {
  content: '◆';
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 4px;
}

.footer {
  padding: 32px 0 48px;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-card {
  margin-top: 24px;
  padding: 22px;
  background: var(--paper);
  border-radius: 20px;
  border: 1px solid var(--edge);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
textarea {
  font: inherit;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--edge);
  background: #fff;
}

textarea {
  resize: vertical;
}

.notice {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
}

.notice.error {
  background: rgba(220, 38, 38, 0.12);
  color: #991b1b;
}

.fade-in {
  animation: fadeIn 0.8s ease-out both;
}

.slide-up {
  animation: slideUp 0.8s ease-out both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero {
    padding-top: 20px;
  }
}
