:root {
  --bg: #ffffff;
  --bg-soft: #faf7fb;
  --text: #1d1a1f;
  --muted: #6f6676;
  --rose-gold: #b48a78;
  --rose-gold-dark: #9f7565;
  --lavender: #b57edc;
  --line: #eee7f3;
  --shadow: 0 12px 40px rgba(31, 20, 39, 0.08);
  --radius: 22px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

.narrow {
  max-width: 760px;
}

.section {
  padding: 72px 0;
}

.alt-bg {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8fd 100%);
}

.nav {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-small {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nav-cta {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--rose-gold-dark);
}

.hero {
  padding-bottom: 48px;
  background:
    radial-gradient(circle at top right, rgba(181, 126, 220, 0.08), transparent 35%),
    radial-gradient(circle at 10% 20%, rgba(180, 138, 120, 0.08), transparent 28%),
    #ffffff;
}

.hero-content {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1fr;
  padding-top: 20px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.95;
  font-weight: 700;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--rose-gold);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-description,
.section-text {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--rose-gold), var(--lavender));
  color: #fff;
  box-shadow: 0 8px 24px rgba(181, 126, 220, 0.18);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.hero-image-card {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(181, 126, 220, 0.08);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.cards {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  grid-template-columns: 1fr;
}

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

.card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--rose-gold-dark);
}

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

.gallery-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  grid-template-columns: 1fr 1fr;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: start;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.contact-item:last-child {
  border-bottom: 0;
}

.icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(180, 138, 120, 0.12), rgba(181, 126, 220, 0.16));
  color: var(--rose-gold-dark);
  font-size: 0.95rem;
}

.footer {
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .section {
    padding: 96px 0;
  }

  .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    padding-top: 28px;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 420px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}