:root {
  --bg: #f8f4f2;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text: #1f1a1c;
  --muted: #665b60;
  --line: #e7dade;
  --accent: #b44f7b;
  --accent-2: #5d4fb8;
  --accent-soft: #f4eaf0;
  --shadow: 0 18px 48px rgba(51, 29, 39, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, #f7edf2 0%, var(--bg) 40%, #fbf9f8 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(248, 244, 242, 0.82);
  border-bottom: 1px solid rgba(231, 218, 222, 0.8);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(180, 79, 123, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav a {
  position: relative;
}

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

.hero {
  padding: 60px 0 30px;
}

.hero-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.hero-copy,
.hero-image-card {
  flex: 1 1 420px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 24px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  max-width: 10ch;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 39rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), #c66d95);
  color: white;
  box-shadow: 0 12px 28px rgba(180, 79, 123, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--line);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-image-card {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ede5e9;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.87);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero-overlay strong {
  display: block;
  margin-bottom: 6px;
}

.hero-overlay p {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 30px 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -0.03em;
}

.section-head p {
  color: var(--muted);
  max-width: 38rem;
}

.small-gap {
  margin-bottom: 10px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.world-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 234, 240, 0.78) 100%);
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-item {
  flex: 1 1 300px;
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 300px;
  box-shadow: var(--shadow);
  background: #eee5e8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.split-box {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.split-box > div {
  flex: 1 1 320px;
}

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

.about-paragraph {
  margin-top: 14px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill-list span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-box {
  flex: 1 1 320px;
  padding: 24px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-links a {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  font-weight: 600;
}

.contact-links a:hover {
  border-color: rgba(180, 79, 123, 0.35);
}

.footer {
  padding: 32px 0 60px;
  color: var(--muted);
}

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

  .hero {
    padding-top: 28px;
  }

  .hero-image-card {
    min-height: 420px;
  }

  h1 {
    max-width: 12ch;
  }
}