:root {
  --ivory: #fffdf9;
  --cream: #f8f0ec;
  --rose: #ead8df;
  --lavender: #91709b;
  --deep-lavender: #684c70;
  --gold: #bd8730;
  --soft-gold: #e4bd70;
  --ink: #51434b;
  --muted: #776a70;
  --serif: "Cormorant Garamond", Georgia, serif;
  --display: "Italiana", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
}

.teaser-shell {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  padding: clamp(30px, 5vw, 70px) clamp(18px, 5vw, 70px) 22px;
}

.teaser-background {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 251, 247, .93) 0%, rgba(255, 250, 247, .86) 39%, rgba(255, 250, 247, .30) 67%, rgba(255, 250, 247, .12) 100%),
    url("../images/hero.webp") center center / cover no-repeat;
  transform: scale(1.025);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.teaser-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.16), transparent 32%, rgba(74,44,62,.12)),
    radial-gradient(circle at 22% 50%, rgba(255,255,255,.42), transparent 46%);
}

.light-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(12px);
  opacity: .34;
  pointer-events: none;
}
.light-orb-one {
  width: 340px;
  height: 340px;
  left: -120px;
  top: 7%;
  background: radial-gradient(circle, rgba(242,212,230,.82), transparent 68%);
  animation: driftOne 13s ease-in-out infinite alternate;
}
.light-orb-two {
  width: 420px;
  height: 420px;
  right: -160px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(237,197,118,.46), transparent 70%);
  animation: driftTwo 16s ease-in-out infinite alternate;
}

.sparkles {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.95) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(226,190,111,.88) 0 1px, transparent 1.8px);
  background-size: 145px 145px, 215px 215px;
  background-position: 21px 45px, 73px 119px;
  animation: sparkleShift 20s linear infinite;
}

.teaser-card {
  width: min(680px, 100%);
  padding: clamp(38px, 6vw, 68px) clamp(25px, 7vw, 74px);
  margin-inline: auto;
  text-align: center;
  border: 1px solid rgba(189, 135, 48, .35);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255,253,249,.91), rgba(253,246,244,.79));
  box-shadow: 0 30px 80px rgba(71, 45, 61, .18), inset 0 1px 0 rgba(255,255,255,.86);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  opacity: 0;
  transform: translateY(20px);
  animation: cardArrival 1.25s .15s ease forwards;
}

.logo-wrap {
  width: clamp(150px, 20vw, 220px);
  aspect-ratio: 1;
  position: relative;
  margin: -16px auto 7px;
  display: grid;
  place-items: center;
}
.logo-halo {
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,204,131,.42), rgba(202,166,217,.16) 44%, transparent 70%);
  filter: blur(8px);
  animation: breathe 5.5s ease-in-out infinite;
}
.teaser-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(108, 71, 97, .12));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .71rem;
  font-weight: 500;
  letter-spacing: .25em;
  line-height: 1.6;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--deep-lavender);
  font-family: var(--display);
  font-size: clamp(2.65rem, 5.4vw, 5.1rem);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 25px auto 23px;
  color: var(--gold);
}
.gold-divider::before,
.gold-divider::after {
  content: "";
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--soft-gold));
}
.gold-divider::after { transform: rotate(180deg); }
.gold-divider span { font-size: .72rem; }

.intro {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.33rem);
  line-height: 1.68;
}

.opening {
  display: inline-block;
  margin: 28px 0 25px;
  padding: 11px 25px;
  border: 1px solid rgba(145,112,155,.26);
  border-radius: 999px;
  color: var(--lavender);
  background: rgba(255,255,255,.52);
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  box-shadow: 0 9px 22px rgba(101,70,91,.07);
}

.contact-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  color: #8a7982;
  font-size: .78rem;
  letter-spacing: .035em;
}
.contact-note p { margin: 0; }
.lotus { color: var(--gold); font-size: 1rem; }

.teaser-footer {
  grid-column: 1;
  align-self: end;
  justify-self: stretch;
  width: 100%;
  padding-top: 30px;
  text-align: center;
  color: rgba(255,255,255,.93);
  text-shadow: 0 2px 12px rgba(55,34,47,.58);
  font-size: .67rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.teaser-footer p { margin: 4px 0; }
.quiet-credit {
  opacity: .7;
  font-family: var(--serif);
  font-size: .78rem;
  font-style: italic;
  letter-spacing: .07em;
  text-transform: none;
}

@keyframes cardArrival {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes breathe {
  0%, 100% { opacity: .55; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.07); }
}
@keyframes slowZoom {
  from { transform: scale(1.025); }
  to { transform: scale(1.075); }
}
@keyframes driftOne {
  to { transform: translate(55px, 35px); }
}
@keyframes driftTwo {
  to { transform: translate(-45px, -25px); }
}
@keyframes sparkleShift {
  to { background-position: 166px 190px, -142px 334px; }
}

@media (max-width: 900px) {
  .teaser-shell {
    place-items: end center;
    padding: 110px 20px 20px;
  }
  .teaser-background {
    background:
      linear-gradient(to top, rgba(255,250,247,.98) 0%, rgba(255,250,247,.90) 45%, rgba(255,250,247,.15) 76%),
      url("../images/hero.webp") 56% center / cover no-repeat;
  }
  .teaser-card {
    margin: 0 auto;
    padding-top: 35px;
  }
  .teaser-footer {
    color: #6f5d68;
    text-shadow: none;
  }
}

@media (max-width: 560px) {
  .teaser-shell { padding: 70px 12px 16px; }
  .teaser-card { border-radius: 30px; }
  .logo-wrap { width: 150px; }
  .contact-note { align-items: flex-start; }
  h1 { font-size: 2.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* BUILD 04 — enforce true centering and predictable sizing everywhere */
.teaser-shell{
  grid-template-columns:minmax(0,1fr);
  justify-items:center;
}
.teaser-card{
  justify-self:center;
  align-self:center;
  margin-left:auto;
  margin-right:auto;
  max-width:680px;
}
@media (max-width:900px){
  .teaser-shell{justify-items:center;place-items:end center}
  .teaser-card{width:min(680px,100%);margin-inline:auto}
}
@media (max-width:560px){
  .teaser-shell{padding-left:14px;padding-right:14px}
  .teaser-card{width:100%;border-radius:28px}
}

/* ================================================================
   BUILD 05 — teaser collision prevention and responsive centering
   ================================================================ */
html,body{min-height:100%;overflow-x:hidden}
.teaser-shell{
  min-height:100svh;
  height:auto;
  overflow-x:hidden;
  overflow-y:auto;
  align-content:center;
  row-gap:20px;
}
.teaser-card{
  width:min(650px,100%);
  max-height:none;
  padding:clamp(28px,4.7vw,56px) clamp(22px,5.8vw,62px);
}
.logo-wrap{
  width:clamp(126px,16vw,190px);
  margin:clamp(-8px,-1vw,0px) auto 4px;
}
h1{
  font-size:clamp(2.35rem,4.7vw,4.45rem);
  line-height:1.04;
  max-width:12ch;
  margin-inline:auto;
  overflow-wrap:normal;
}
.intro{font-size:clamp(1.02rem,1.55vw,1.24rem);line-height:1.56}
.gold-divider{margin:20px auto 18px}
.opening{margin:22px 0 20px}
.contact-note{line-height:1.45}
.teaser-footer{padding-top:10px}

/* Short desktop screens need a compact composition, not overlapping text. */
@media(min-width:901px) and (max-height:820px){
  .teaser-shell{padding-top:20px;padding-bottom:14px}
  .teaser-card{padding-top:24px;padding-bottom:24px;width:min(610px,100%)}
  .logo-wrap{width:120px;margin:-10px auto 0}
  .eyebrow{margin-bottom:8px;font-size:.64rem}
  h1{font-size:clamp(2.3rem,4.2vw,3.75rem)}
  .gold-divider{margin:14px auto}
  .intro{font-size:1.03rem;line-height:1.45}
  .opening{margin:15px 0;padding:8px 21px}
  .teaser-footer{font-size:.61rem;padding-top:2px}
}

@media(max-width:900px){
  .teaser-shell{
    place-items:center;
    align-content:end;
    padding:clamp(78px,15vh,130px) 20px 20px;
  }
  .teaser-card{align-self:end}
}

@media(max-width:560px){
  .teaser-shell{padding:64px 12px 14px;align-content:center}
  .teaser-card{padding:28px 18px;border-radius:28px}
  .logo-wrap{width:126px;margin:-6px auto 2px}
  h1{font-size:clamp(2.18rem,11vw,2.8rem)}
  .eyebrow{font-size:.62rem;letter-spacing:.19em}
  .intro{font-size:1rem}
  .contact-note{font-size:.73rem}
}
