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

:root {
  --ink: #1c1b1a;
  --navy: #10313a;
  --teal: #1f6f78;
  --teal-dark: #164e55;
  --mist: #f2f6f5;
  --sand: #f8f1e6;
  --coral: #f2b39b;
  --sun: #f3d08b;
  --white: #ffffff;
  --shadow: 0 24px 48px rgba(16, 49, 58, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Work Sans', 'Helvetica Neue', sans-serif;
  color: var(--ink);
  background: linear-gradient(120deg, var(--sand) 0%, var(--mist) 45%, #ffffff 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(0px);
}

body::before {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(31, 111, 120, 0.2), transparent 70%);
  top: -180px;
  left: -160px;
}

body::after {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle at 60% 60%, rgba(242, 179, 155, 0.25), transparent 70%);
  bottom: -180px;
  right: -140px;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  position: sticky;
  top: 0;
  background: rgba(248, 241, 230, 0.85);
  backdrop-filter: blur(12px);
  z-index: 20;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow);
}

.brand-name {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
}

.brand-meta {
  margin: 2px 0 0;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(28, 27, 26, 0.6);
}

.site-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 600;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a[aria-current='page'] {
  border-color: var(--teal);
  color: var(--teal);
}

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

.nav-toggle {
  display: none;
  border: none;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

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

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  margin: 0 0 12px;
  color: var(--navy);
}

.hero-text {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.hero-card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(31, 111, 120, 0.15);
  z-index: -1;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(31, 111, 120, 0.12);
  color: var(--teal-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

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

.button.secondary {
  background: transparent;
  color: var(--navy);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(16, 49, 58, 0.15);
}

.section {
  padding: 48px 0;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 12px;
  color: var(--navy);
}

.section-subtitle {
  margin: 0 0 24px;
  color: rgba(28, 27, 26, 0.7);
  max-width: 680px;
}

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

.card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  min-height: 160px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
  font-family: 'Fraunces', serif;
  color: var(--teal-dark);
}

.card p {
  margin: 0;
  color: rgba(28, 27, 26, 0.72);
  line-height: 1.6;
}

.highlight {
  background: linear-gradient(135deg, rgba(243, 208, 139, 0.4), rgba(242, 179, 155, 0.3));
  border-radius: var(--radius-lg);
  padding: 26px;
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.list li {
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 49, 58, 0.08);
}

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

.map-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 220px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(243, 208, 139, 0.3), transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(242, 179, 155, 0.25), transparent 55%);
  opacity: 0.8;
}

.map-card-content {
  position: relative;
  z-index: 1;
}

.form {
  display: grid;
  gap: 14px;
}

.input {
  display: grid;
  gap: 6px;
}

.input label {
  font-weight: 600;
}

.input input,
.input textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 49, 58, 0.2);
  font-family: inherit;
}

.input textarea {
  min-height: 140px;
  resize: vertical;
}

.notice {
  font-size: 14px;
  color: rgba(28, 27, 26, 0.6);
}

footer {
  padding: 36px 0 48px;
  color: rgba(28, 27, 26, 0.7);
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: start;
}

.footer-title {
  font-weight: 600;
  margin: 0 0 8px;
}

.reveal {
  animation: fadeUp 0.9s ease both;
}

.reveal.delay-1 {
  animation-delay: 0.1s;
}

.reveal.delay-2 {
  animation-delay: 0.2s;
}

.reveal.delay-3 {
  animation-delay: 0.3s;
}

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

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 0;
    display: none;
  }

  body.nav-open .site-nav {
    display: flex;
  }
}

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

  .site-header {
    padding-bottom: 12px;
  }
}
