:root {
  --bg: #f7d322;
  --bg-mid: #f5c400;
  --bg-deep: #e8b800;
  --surface: rgba(255, 255, 255, 0.42);
  --surface-strong: rgba(255, 255, 255, 0.72);
  --panel-border: rgba(17, 17, 17, 0.1);
  --text: #111111;
  --muted: #3d3d3d;
  --inverse: #f7f7f2;
  --border: rgba(17, 17, 17, 0.14);
  --shadow: rgba(17, 17, 17, 0.1);
  --shadow-deep: rgba(17, 17, 17, 0.16);
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --content-max: 56rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg::before {
  content: "";
  position: absolute;
  inset: -28%;
  background:
    radial-gradient(ellipse 85% 65% at 12% 18%, #fff9c4, transparent 50%),
    radial-gradient(ellipse 70% 55% at 92% 8%, #fff176, transparent 45%),
    radial-gradient(ellipse 60% 45% at 50% 100%, rgba(232, 184, 0, 0.55), transparent 58%),
    linear-gradient(168deg, var(--bg) 0%, var(--bg-mid) 48%, var(--bg-deep) 100%);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

.wrap {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(1.75rem, 5vw, 3.25rem) clamp(1.25rem, 4vw, 2rem) clamp(2rem, 5vw, 3rem);
}

.intro {
  text-align: center;
  width: 100%;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.brand {
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

.brand img {
  display: block;
  margin: 0 auto;
  height: clamp(2.75rem, 12vw, 5rem);
  width: auto;
  max-width: min(520px, 100%);
  object-fit: contain;
  filter: drop-shadow(0 2px 14px var(--shadow));
}

.brand-fallback {
  display: none;
}

.brand img[data-broken] {
  display: none;
}

.brand img[data-broken] + .brand-fallback {
  display: block;
}

.brand-fallback svg {
  height: clamp(2.5rem, 9vw, 3.75rem);
  width: auto;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.45rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.35rem;
}

.badge span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.12);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.9);
  }
}

h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.35rem, 6.5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
}

.lede {
  margin: 0 auto;
  max-width: 36rem;
  font-size: clamp(0.98rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
}

.panel {
  width: 100%;
  max-width: 44rem;
}

.panel-inner {
  border-radius: var(--radius-lg);
  border: 1px solid var(--panel-border);
  background: var(--surface-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 24px 48px -24px var(--shadow-deep);
  padding: clamp(1.35rem, 3.5vw, 2rem);
}

.panel-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

@media (min-width: 640px) {
  .panel-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: clamp(1.5rem, 4vw, 2.25rem);
  }

  .panel-col--social {
    padding-left: clamp(1.25rem, 3vw, 1.75rem);
    border-left: 1px solid var(--border);
  }
}

.panel-title {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.panel-sub {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  text-align: left;
}

.contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.06);
  color: var(--text);
}

.contact-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.contact-body {
  min-width: 0;
  flex: 1;
}

.contact-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text);
  text-decoration: none;
  word-break: break-word;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

a.contact-value:hover {
  border-bottom-color: rgba(17, 17, 17, 0.35);
}

.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.panel-col--social {
  text-align: left;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: var(--text);
  color: var(--inverse);
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  background: #000000;
}

.social:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.social svg {
  width: 1.35rem;
  height: 1.35rem;
}

/* Bootstrap Icons “f” mark; 16×16 artboard scaled to align with 24×24 peers */
.social .social-svg--facebook {
  width: 1.48rem;
  height: 1.48rem;
}

.footer {
  margin-top: auto;
  padding-top: clamp(2rem, 5vw, 2.75rem);
  text-align: center;
  width: 100%;
}

.footer-line {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-dot {
  margin: 0 0.35rem;
  opacity: 0.45;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer a:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

@media (max-width: 639px) {
  .panel-col--social {
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
  }

  .panel-col--social .panel-title {
    margin-bottom: 0.25rem;
  }

  .panel-col--social .social-list {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .badge span {
    animation: none;
  }

  .social:hover {
    transform: none;
  }
}
