:root {
  --cream: #f7f2eb;
  --paper: #fffdf9;
  --ink: #17191d;
  --navy: #1f2d45;
  --muted: #6e6a64;
  --gold: #b9873f;
  --gold-soft: #d8bc91;
  --line: rgba(185, 135, 63, .22);
  --shadow: 0 28px 80px rgba(62, 45, 23, .13);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--cream); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(255,255,255,.96), rgba(255,255,255,0) 34%),
    linear-gradient(135deg, #fbf8f4 0%, #f2ebe1 100%);
  font-family: Georgia, "Times New Roman", serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  border: 1px solid rgba(185,135,63,.18);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  opacity: .45;
}
body::before { top: -140px; left: -120px; }
body::after { bottom: -160px; right: -120px; }

a { color: inherit; }

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 34px;
}

.maintenance-card {
  width: min(1180px, 100%);
  min-height: 730px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
  background: rgba(255,253,249,.94);
  border: 1px solid rgba(185,135,63,.22);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.content-side {
  padding: clamp(32px, 5vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-block {
  display: grid;
  justify-items: start;
  margin-bottom: 38px;
}

.monogram {
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
}

.eyebrow,
.quote-kicker {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.brand {
  margin: 7px 0 0;
  font-weight: 500;
  font-size: clamp(46px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.03em;
}

.tagline {
  margin: 11px 0 0;
  color: #8b6240;
  font-size: 22px;
  font-style: italic;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff9ef;
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.status-pill i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(185,135,63,.12);
}

.intro h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.04em;
}

.intro p {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.intro .lead {
  color: #3f3c37;
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 15px 16px;
  text-decoration: none;
  border: 1px solid rgba(185,135,63,.18);
  background: rgba(255,255,255,.7);
  border-radius: 16px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(185,135,63,.38);
  box-shadow: 0 12px 30px rgba(62,45,23,.07);
}

.contact-card .icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff7eb;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.contact-card small,
.contact-card strong {
  display: block;
  overflow-wrap: anywhere;
}

.contact-card small {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  margin-bottom: 4px;
}

.contact-card strong {
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .18s ease, box-shadow .18s ease;
}

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

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #a87531, #c99d60);
  box-shadow: 0 10px 24px rgba(185,135,63,.23);
}

.btn.ghost {
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(31,45,69,.14);
}

footer {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

footer .sep { color: var(--gold); padding: 0 7px; }

.visual-side {
  position: relative;
  min-height: 730px;
  background-image: url("assets/hero-wedding.png");
  background-size: cover;
  background-position: 62% center;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,253,249,.18) 0%, rgba(255,253,249,0) 36%),
    linear-gradient(180deg, rgba(9,9,9,.02), rgba(9,9,9,.12));
}

.quote-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(330px, calc(100% - 56px));
  padding: 24px 24px 20px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 22px;
  background: rgba(255,253,249,.80);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 46px rgba(45,34,20,.13);
}

.quote-card p {
  margin: 10px 0 0;
  color: #463626;
  font-size: 27px;
  line-height: 1.22;
  font-style: italic;
}

.quote-card .heart {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 24px;
}

@media (max-width: 980px) {
  .page-shell { padding: 18px; }
  .maintenance-card { grid-template-columns: 1fr; }
  .content-side { padding: 42px 28px; }
  .visual-side { min-height: 430px; }
}

@media (max-width: 620px) {
  .page-shell { padding: 10px; }
  .maintenance-card { border-radius: 22px; }
  .content-side { padding: 30px 20px; }
  .brand { font-size: 54px; }
  .tagline { font-size: 18px; }
  .intro h2 { font-size: 44px; }
  .intro p { font-size: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
  .btn { width: 100%; }
  .visual-side { min-height: 360px; background-position: 70% center; }
  .quote-card { right: 14px; bottom: 14px; width: calc(100% - 28px); }
  .quote-card p { font-size: 23px; }
  footer { line-height: 1.8; }
}
