:root {
  --red-900: #6f0617;
  --red-800: #7f071a;
  --red-700: #a60923;
  --red-600: #c3112d;
  --red-100: #ffe7ec;
  --green-900: #14320d;
  --green-800: #24560f;
  --green-600: #4b8a12;
  --green-100: #efffd7;
  --cream: #fff9f1;
  --paper: #fffdf8;
  --ink: #14120f;
  --muted: #716c64;
  --line: rgba(127, 7, 26, 0.14);
  --shadow: 0 28px 90px rgba(78, 19, 22, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(195, 17, 45, 0.14), transparent 30rem),
    radial-gradient(circle at 90% 12%, rgba(75, 138, 18, 0.18), transparent 34rem),
    linear-gradient(135deg, #fffaf2 0%, #fff4f7 48%, #f7ffe9 100%);
}

body::selection {
  color: #fff;
  background: var(--red-800);
}

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

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

svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-shell {
  position: relative;
  width: min(1440px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 60px) 34px;
  overflow: hidden;
}

.ambient,
.grain {
  pointer-events: none;
  position: fixed;
  inset: auto;
  z-index: -1;
}

.ambient-red {
  width: 34rem;
  height: 34rem;
  left: -12rem;
  top: -12rem;
  border-radius: 50%;
  background: rgba(195, 17, 45, 0.18);
  filter: blur(70px);
  animation: floatGlow 9s ease-in-out infinite alternate;
}

.ambient-green {
  width: 38rem;
  height: 38rem;
  right: -14rem;
  bottom: -14rem;
  border-radius: 50%;
  background: rgba(75, 138, 18, 0.18);
  filter: blur(76px);
  animation: floatGlow 11s ease-in-out infinite alternate-reverse;
}

.grain {
  inset: 0;
  opacity: 0.055;
  background-image: radial-gradient(circle at center, rgba(20, 18, 15, 0.85) 0.7px, transparent 0.9px);
  background-size: 19px 19px;
}

.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 18px 70px rgba(127, 7, 26, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(127, 7, 26, 0.1), 0 10px 26px rgba(127, 7, 26, 0.12);
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(127, 7, 26, 0.13);
  border-radius: 999px;
  color: var(--red-800);
  background: rgba(255, 231, 236, 0.7);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.pulse {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 0 0 0 rgba(195, 17, 45, 0.45);
  animation: pulse 1.8s ease-out infinite;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.94fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 116px);
  padding: clamp(42px, 6vw, 84px) 0 38px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red-700);
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-size: clamp(3.35rem, 8.6vw, 8.9rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

h1 span {
  display: block;
  color: var(--red-800);
}

.lead {
  max-width: 700px;
  margin-bottom: 28px;
  color: #514a42;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 600;
  line-height: 1.85;
}

.countdown-card {
  max-width: 720px;
  margin: 34px 0 26px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 249, 0.74)),
    radial-gradient(circle at 16% 22%, rgba(255, 231, 236, 0.88), transparent 15rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
}

.countdown-header strong {
  color: var(--green-800);
  font-size: 0.93rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  gap: 12px;
}

.time-box {
  min-height: 112px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(127, 7, 26, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 14px 34px rgba(127, 7, 26, 0.08);
}

.time-box strong {
  font-family: var(--font-serif);
  color: var(--red-800);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1;
}

.time-box span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red-900), var(--red-600));
  box-shadow: 0 18px 40px rgba(127, 7, 26, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(127, 7, 26, 0.16);
  color: var(--red-800);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(127, 7, 26, 0.08);
}

.visual-panel {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 48px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.95), transparent 16rem),
    linear-gradient(160deg, rgba(255, 253, 248, 0.74), rgba(255, 231, 236, 0.48) 52%, rgba(239, 255, 215, 0.58));
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.visual-panel::before,
.visual-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.visual-panel::before {
  width: 180px;
  height: 520px;
  left: -84px;
  top: 70px;
  background: linear-gradient(180deg, rgba(75, 138, 18, 0.18), rgba(127, 7, 26, 0.05));
  transform: rotate(18deg);
}

.visual-panel::after {
  width: 220px;
  height: 220px;
  right: -76px;
  bottom: -58px;
  background: rgba(127, 7, 26, 0.1);
}

.logo-orbit {
  position: relative;
  z-index: 2;
  width: min(78%, 470px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 42%, #fff 0 30%, rgba(255, 255, 255, 0.74) 44%, transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(239, 255, 215, 0.54));
  box-shadow: inset 0 0 0 1px rgba(127, 7, 26, 0.1), 0 24px 80px rgba(36, 86, 15, 0.13);
}

.logo-orbit img {
  width: 78%;
  filter: drop-shadow(0 28px 40px rgba(36, 86, 15, 0.2));
  animation: logoFloat 4.8s ease-in-out infinite;
}

.orbit {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(127, 7, 26, 0.18);
  border-top-color: rgba(75, 138, 18, 0.55);
  border-right-color: transparent;
  animation: spin 17s linear infinite;
}

.orbit-two {
  inset: 18px;
  border-left-color: rgba(195, 17, 45, 0.55);
  border-bottom-color: transparent;
  animation-duration: 21s;
  animation-direction: reverse;
}

.leaf {
  position: absolute;
  display: block;
  width: 82px;
  height: 38px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, var(--green-600), var(--green-900));
  opacity: 0.18;
  filter: blur(0.2px);
}

.leaf-one {
  left: 24px;
  top: 74px;
  transform: rotate(-28deg);
}

.leaf-two {
  right: 30px;
  bottom: 88px;
  transform: rotate(142deg);
}

.quality-card {
  position: absolute;
  z-index: 3;
  min-width: 178px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 52px rgba(127, 7, 26, 0.13);
  backdrop-filter: blur(16px);
}

.quality-card strong,
.quality-card span {
  display: block;
}

.quality-card strong {
  color: var(--red-800);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1;
}

.quality-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.card-one {
  left: 28px;
  bottom: 68px;
}

.card-two {
  right: 28px;
  top: 76px;
}

.contact-section {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 42px;
  background: rgba(255, 253, 248, 0.7);
  box-shadow: 0 26px 80px rgba(127, 7, 26, 0.09);
  backdrop-filter: blur(18px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-heading .eyebrow {
  margin-bottom: 8px;
}

h2 {
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
  gap: 14px;
}

.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 128px;
  padding: 20px;
  border: 1px solid rgba(127, 7, 26, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.64);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(195, 17, 45, 0.25);
  box-shadow: 0 22px 44px rgba(127, 7, 26, 0.1);
}

.icon-wrap {
  flex: 0 0 auto;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--red-800), var(--red-600));
  box-shadow: 0 12px 28px rgba(127, 7, 26, 0.18);
}

.contact-card span,
.contact-card strong {
  display: block;
}

.contact-card span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(36, 86, 15, 0.13);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(239, 255, 215, 0.54);
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-row a:hover {
  transform: translateY(-2px);
  background: rgba(239, 255, 215, 0.86);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding: 0 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(195, 17, 45, 0.42); }
  70% { box-shadow: 0 0 0 12px rgba(195, 17, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(195, 17, 45, 0); }
}

@keyframes floatGlow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(26px, -20px, 0) scale(1.08); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .visual-panel {
    min-height: 520px;
    order: -1;
  }

  .hero-copy {
    text-align: center;
  }

  .lead,
  .countdown-card {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row {
    justify-content: center;
  }

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

  .contact-card.wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding: 16px 14px 28px;
  }

  .topbar {
    align-items: flex-start;
    border-radius: 24px;
  }

  .brand small {
    white-space: normal;
  }

  .status-pill {
    padding: 9px 10px;
    font-size: 0.7rem;
  }

  .hero {
    padding-top: 32px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5.3rem);
  }

  .visual-panel {
    min-height: 430px;
    border-radius: 34px;
  }

  .logo-orbit {
    width: min(82%, 360px);
  }

  .quality-card {
    min-width: 142px;
    padding: 13px 14px;
  }

  .quality-card strong {
    font-size: 1.08rem;
  }

  .quality-card span {
    font-size: 0.68rem;
  }

  .card-one {
    left: 14px;
    bottom: 28px;
  }

  .card-two {
    right: 14px;
    top: 32px;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .countdown-header,
  .section-heading,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-section {
    border-radius: 30px;
  }

  .contact-card {
    min-height: auto;
  }
}

@media (max-width: 460px) {
  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .status-pill {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .time-box {
    min-height: 96px;
  }
}
