:root {
  --bg: #ffe5ff;
  --bg2: #fbe1f1;

  --surface: rgba(255, 255, 255, 0.66);
  --surface2: rgba(255, 255, 255, 0.82);

  --text: #160915;
  --muted: rgba(22, 9, 21, 0.68);
  --muted2: rgba(22, 9, 21, 0.52);

  --line: rgba(22, 9, 21, 0.14);

  --gold: #bd8a38;
  --gold2: #ca9b57;

  --shadow: 0 18px 60px rgba(22, 9, 21, 0.18);
  --radius: 18px;
  --container: 1100px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(189, 138, 56, 0.14), transparent 60%),
    radial-gradient(900px 520px at 85% 15%, rgba(202, 155, 87, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(22, 9, 21, 0.12);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 22px rgba(22, 9, 21, 0.12);
  display: grid;
  place-items: center;
}

.logo-mark {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand__name {
  font-family: Cinzel, serif;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.brand__tag {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.hero {
  padding: 44px 0 18px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.logo-hero {
  width: min(360px, 85%);
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(22, 9, 21, 0.1);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.35);
  display: block;
  margin-bottom: 16px;
}

h1 {
  margin: 0 0 10px;
  font-family: Cinzel, serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0.4px;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 62ch;
}

.cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.06s ease, background 0.2s ease, border 0.2s ease;
}

.btn:active { transform: scale(0.99); }

.btn--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #160915;
  box-shadow: 0 14px 34px rgba(189, 138, 56, 0.18);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
}

.btn:hover { text-decoration: none; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.82); }

.micro {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.pill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(22, 9, 21, 0.14);
  color: var(--muted);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.hero__card {
  border: 1px solid rgba(22, 9, 21, 0.14);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.card__title {
  font-family: Cinzel, serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ph {
  border-radius: 14px;
  border: 1px solid rgba(189, 138, 56, 0.25);
  background: rgba(255, 255, 255, 0.72);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--muted);
}

.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__note {
  margin-top: 12px;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.55;
}

.section {
  padding: 44px 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(22, 9, 21, 0.12);
  border-bottom: 1px solid rgba(22, 9, 21, 0.12);
}

h2 {
  margin: 0 0 8px;
  font-family: Cinzel, serif;
  font-size: 26px;
  letter-spacing: 0.3px;
}

.sub {
  margin: 0 0 18px;
  color: var(--muted2);
  line-height: 1.7;
}

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

.card {
  border: 1px solid rgba(22, 9, 21, 0.14);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 40px rgba(22, 9, 21, 0.08);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

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

.info {
  border: 1px solid rgba(22, 9, 21, 0.14);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 40px rgba(22, 9, 21, 0.08);
}

.info__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(22, 9, 21, 0.08);
}

.info__row:last-child { border-bottom: none; padding-bottom: 0; }

.info__label {
  color: var(--muted2);
  font-size: 13px;
  min-width: 120px;
}

.info__value {
  color: var(--text);
  font-size: 13px;
  text-align: right;
  line-height: 1.6;
}

.footer {
  border-top: 1px solid rgba(22, 9, 21, 0.12);
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.45);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted2);
  font-size: 13px;
}

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

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .info__value { text-align: left; }
  .logo-hero { width: min(320px, 92%); }
}
