*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --rose: #a33b5b;
  --rose-dark: #7d2944;
  --ink: #24181c;
  --muted: #6d5a61;
  --cream: #fbf6f2;
  --blush: #f3e4e8;
  --line: rgba(163, 59, 91, 0.16);
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3, .logo-rose, .phone, .foot-brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 246, 242, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-rose {
  font-size: 1.4rem;
  color: var(--rose);
}

.logo-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.bar nav {
  display: flex;
  gap: 1.4rem;
  font-weight: 600;
}

.bar nav a:hover { color: var(--rose); }

.call {
  background: var(--rose);
  color: var(--white);
  font-weight: 700;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

.hero {
  min-height: min(84vh, 720px);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 85% 20%, rgba(163, 59, 91, 0.18), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(125, 41, 68, 0.12), transparent 45%),
    linear-gradient(180deg, var(--blush), var(--cream) 70%);
  padding: 4rem 0;
}

.hero-panel {
  width: min(760px, calc(100% - 2rem));
  text-align: center;
  animation: fadeup 0.8s ease both;
}

@keyframes fadeup {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.98;
  margin-bottom: 1.1rem;
  color: var(--ink);
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
  font-weight: 500;
}

.lead {
  max-width: 34rem;
  margin: 0 auto 1.8rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn.primary {
  background: var(--rose);
  color: var(--white);
}

.btn.outline {
  border: 1px solid var(--rose);
  color: var(--rose);
}

.btn.dark {
  background: var(--ink);
  color: var(--white);
}

.legal {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.7rem 0;
  letter-spacing: 0.02em;
}

.section { padding: 4.8rem 0; }

.section-top {
  text-align: center;
  margin-bottom: 2.2rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.55rem;
}

.eyebrow.light { color: #f4c4d0; }

.section-top h2,
.about h2,
.contact h2,
.banner h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.12;
}

.rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.rail article {
  padding: 1.4rem 1.2rem;
  border-top: 3px solid var(--rose);
  background: var(--white);
  border-radius: 0 0 16px 16px;
  transition: transform 0.25s ease;
}

.rail article:hover { transform: translateY(-3px); }

.rail h3 {
  font-size: 1.3rem;
  margin-bottom: 0.45rem;
  color: var(--rose-dark);
}

.rail p {
  color: var(--muted);
  font-size: 0.98rem;
}

.banner {
  background: var(--rose-dark);
  color: var(--white);
  padding: 3.2rem 0;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.banner ul {
  display: grid;
  gap: 0.85rem;
}

.banner li {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.banner strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
}

.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.about p {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stats div {
  border-top: 2px solid var(--rose);
  padding-top: 0.8rem;
}

.stats strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.panel {
  background: var(--blush);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.panel h3 {
  color: var(--rose-dark);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.panel dl { display: grid; gap: 0.9rem; }

.panel dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.15rem;
}

.contact {
  background:
    linear-gradient(180deg, rgba(163, 59, 91, 0.06), transparent),
    var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}

.phone {
  display: inline-block;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--rose);
  margin: 0.9rem 0 0.55rem;
}

.mail {
  display: inline-block;
  color: var(--rose-dark);
  font-weight: 700;
  margin-bottom: 1rem;
  word-break: break-all;
}

.addr {
  color: var(--muted);
  line-height: 1.7;
}

.arrive {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem;
}

.arrive h3 {
  font-size: 1.4rem;
  margin-bottom: 0.55rem;
  color: var(--rose-dark);
}

.arrive p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.foot {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 1.4rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.4rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-brand {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.foot h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4c4d0;
  margin-bottom: 0.55rem;
}

.foot-end {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.1rem;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .bar nav,
  .call { display: none; }

  .rail,
  .banner-grid,
  .about,
  .contact-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }
}
