:root {
  --orange: #f58220;
  --orange-dark: #d9650b;
  --ink: #181511;
  --muted: #6f655c;
  --paper: #fffaf5;
  --whatsapp: #25d366;
  --line: rgba(245, 130, 32, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 50% 18%, rgba(245, 130, 32, 0.08), transparent 34rem),
    linear-gradient(135deg, rgba(245, 130, 32, 0.025) 25%, transparent 25%) 0 0 / 32px 32px,
    var(--paper);
}

.page-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 42px 20px 48px;
}

.hero {
  width: min(100%, 760px);
  text-align: center;
}

.coming-soon {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.logo {
  display: block;
  width: clamp(190px, 34vw, 320px);
  height: auto;
  margin: 0 auto -12px;
  filter: drop-shadow(0 18px 28px rgba(66, 38, 15, 0.12));
}

h1 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(3.5rem, 10vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.9);
}

.tagline {
  margin: 16px 0 0;
  color: #000;
  font-size: clamp(1.05rem, 3vw, 1.45rem);
  letter-spacing: 0.035em;
  line-height: 1.5;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(360px, 74%);
  margin: 38px auto 30px;
}

.ornament span {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line));
}

.ornament span:last-child {
  background: linear-gradient(90deg, var(--line), transparent);
}

.ornament i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border: 1px solid var(--orange);
  transform: rotate(45deg);
}

.contact {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 20px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid rgba(37, 211, 102, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 35px rgba(73, 54, 36, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.whatsapp svg {
  width: 26px;
  height: 26px;
  fill: var(--whatsapp);
}

.whatsapp:hover,
.whatsapp:focus-visible {
  transform: translateY(-2px);
  border-color: var(--whatsapp);
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.14);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.social-links svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links svg path:not(.play) {
  fill: currentColor;
  stroke: none;
}

.social-links svg .play,
.social-links svg .fill {
  fill: var(--paper);
  stroke: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--orange-dark);
  transform: translateY(-1px);
}

a:focus-visible {
  outline: 3px solid rgba(245, 130, 32, 0.3);
  outline-offset: 4px;
}

@media (max-width: 480px) {
  .page-shell {
    padding-top: 30px;
  }

  .logo {
    width: min(68vw, 250px);
  }

  .social-links {
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
