:root {
  --bg: #fffaf8;
  --surface: #ffffff;
  --surface-alt: #fff1f4;
  --primary: #d93664;
  --primary-dark: #b82550;
  --primary-soft: #f9d7e0;
  --accent: #ffd9a8;
  --text: #1f1b20;
  --muted: #6d6670;
  --border: rgba(31, 27, 32, 0.08);
  --shadow: 0 10px 30px rgba(72, 22, 39, 0.10);
  --shadow-strong: 0 18px 50px rgba(72, 22, 39, 0.18);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #fff0f4 0%, transparent 30%),
    radial-gradient(circle at bottom right, #fff5e8 0%, transparent 30%),
    var(--bg);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  display: flex;
  flex-direction: column;
  flex: 1; /* pushes footer down */
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 241, 244, 0.75), rgba(255, 255, 255, 0.9));
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.1;
  color: #241722;
}

h1, h2 {
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

p {
  /*margin-top: 0;*/
  color: var(--muted);
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 248, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  background: white;
  padding: 0.25rem;
  box-shadow: var(--shadow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-weight: 600;
  font-size: 1rem;
}

.brand-subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

main {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  /*background:
    radial-gradient(circle at 20% 20%, #ffe8ef 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, #fff3e0 0%, transparent 40%);*/
    background: url("background.png") no-repeat center/cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-logo {
  width: 220px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.08));
}

.hero-text {
  font-size: 1.15rem;
  /*max-width: 520px;*/
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Right Card */
.hero-card {
  /*background: rgba(255, 255, 255, 0.7);*/
  background: #fff;
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
}

.hero-card h3 {
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

label {
  margin-bottom: 0.45rem;
  font-weight: 600;
  color: #362a34;
}

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(31, 27, 32, 0.12);
  border-radius: 14px;
  font: inherit;
  background: white;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(217, 54, 100, 0.5);
  box-shadow: 0 0 0 4px rgba(217, 54, 100, 0.08);
}

.site-footer {
  padding: 1.8rem 0;
  background: #241722;
  color: rgba(255, 255, 255, 0.86);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-logo {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 3rem;
  }

  /*.brand-text {
    display: none;
  }*/

  h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 50px;
    height: 50px;
  }
}