:root {
  --bg: #f5efe2;
  --bg-strong: #f0e2bf;
  --surface: rgba(255, 252, 245, 0.78);
  --surface-strong: #fffaf0;
  --text: #26180e;
  --muted: #675646;
  --gold: #c79a26;
  --gold-deep: #8f6912;
  --maroon: #7b1e19;
  --blue: #223e73;
  --line: rgba(76, 51, 23, 0.14);
  --shadow: 0 24px 60px rgba(64, 35, 10, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 154, 38, 0.22), transparent 32%),
    radial-gradient(circle at right 20%, rgba(123, 30, 25, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, var(--bg) 56%, #f7f3eb 100%);
}

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

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

p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 240, 0.76);
  border-bottom: 1px solid rgba(76, 51, 23, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

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

.brand img {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(123, 30, 25, 0.16);
}

.brand strong,
.brand span {
  display: block;
}

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

.brand span {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  font-size: 0.96rem;
  color: var(--muted);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav a.active {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid,
.split-layout,
.footer-grid,
.contact-band-inner {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.eyebrow {
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--maroon);
}

.hero h1,
.page-hero h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  max-width: 11ch;
}

.hero-text,
.page-hero p:last-child {
  margin-top: 22px;
  font-size: 1.06rem;
  max-width: 62ch;
}

.hero-actions,
.contact-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #fff8ef;
  background: linear-gradient(135deg, var(--maroon), #a53a28);
  box-shadow: 0 18px 36px rgba(123, 30, 25, 0.26);
}

.button.secondary {
  color: var(--text);
  background: linear-gradient(135deg, #f6d472, #d8a927);
  box-shadow: 0 18px 36px rgba(199, 154, 38, 0.24);
}

.button.ghost {
  border: 1px solid rgba(76, 51, 23, 0.16);
  background: rgba(255, 255, 255, 0.5);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hero-points div,
.highlight-card,
.stack-card,
.value-card,
.content-card,
.legal-card,
.info-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-points div {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
}

.hero-points span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
}

.crest-panel {
  position: relative;
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 248, 230, 0.9), rgba(247, 236, 214, 0.72));
  border: 1px solid rgba(199, 154, 38, 0.22);
  box-shadow: 0 36px 70px rgba(105, 73, 18, 0.16);
}

.crest-panel img {
  position: relative;
  z-index: 1;
  border-radius: 24px;
}

.crest-halo {
  position: absolute;
  inset: 12% 16%;
  background: radial-gradient(circle, rgba(199, 154, 38, 0.28), transparent 65%);
  filter: blur(16px);
  animation: haloPulse 4s ease-in-out infinite;
}

.info-card {
  width: min(86%, 320px);
  margin: -44px 0 0 auto;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.info-card a,
.text-link {
  color: var(--blue);
  font-weight: 700;
}

.highlights,
.story-section,
.values-section,
.content-section {
  padding: 42px 0;
}

.highlights-grid,
.values-grid,
.content-grid {
  display: grid;
  gap: 22px;
}

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

.highlight-card,
.value-card,
.content-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.highlight-card .number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.highlight-card h2,
.section-heading h2,
.section-copy h2,
.contact-band h2,
.content-card h2,
.legal-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.split-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.stack-cards {
  display: grid;
  gap: 18px;
}

.stack-card {
  padding: 22px;
  border-radius: 18px;
}

.stack-card h3,
.value-card h3,
.footer-grid h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.values-grid,
.content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-band {
  padding: 40px 0 82px;
}

.contact-band-inner {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(123, 30, 25, 0.94), rgba(69, 26, 14, 0.96)),
    linear-gradient(135deg, rgba(199, 154, 38, 0.22), transparent);
  box-shadow: 0 28px 70px rgba(86, 32, 16, 0.3);
}

.contact-band .eyebrow,
.contact-band h2,
.contact-band p,
.contact-band a {
  color: #fff7eb;
}

.site-footer {
  padding: 30px 0 46px;
  border-top: 1px solid rgba(76, 51, 23, 0.1);
  background: rgba(255, 250, 240, 0.6);
}

.footer-grid {
  grid-template-columns: 1.1fr 0.9fr 1fr;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-top: 10px;
}

.inner-page .inner-main {
  padding: 42px 0 70px;
}

.page-hero {
  padding: 34px 0 14px;
}

.narrow {
  max-width: 860px;
}

.alt {
  position: relative;
}

.alt::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 154, 38, 0.14), transparent 72%);
  pointer-events: none;
}

.legal-card {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.legal-card h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.1;
  margin-bottom: 10px;
}

.legal-card h2 + p,
.legal-card p + h2 {
  margin-top: 18px;
}

.legal-card p + p {
  margin-top: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #179b4f, #21c063);
  box-shadow: 0 18px 36px rgba(23, 155, 79, 0.32);
  font-weight: 800;
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 240ms;
}

@keyframes haloPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .contact-band-inner,
  .footer-grid,
  .highlights-grid,
  .values-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 250, 240, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 44px;
  }

  .nav-wrap {
    padding: 12px 0;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .button,
  .whatsapp-float {
    width: 100%;
  }

  .info-card {
    width: 100%;
    margin-top: 18px;
  }

  .contact-band {
    padding-bottom: 94px;
  }
}
