/* ============================================
   RIVELAS — Refined Dark Atelier
   ============================================ */

:root {
  --bg-base: #0b0b0e;
  --bg-depth: #101014;
  --bg-surface: #161619;
  --bg-float: rgba(255, 255, 255, 0.025);

  --ink: #e8e4de;
  --ink-soft: rgba(232, 228, 222, 0.55);
  --ink-faint: rgba(232, 228, 222, 0.25);
  --ink-ghost: rgba(232, 228, 222, 0.08);

  --champagne: #b8a080;
  --champagne-dim: rgba(184, 160, 128, 0.12);
  --champagne-glow: rgba(184, 160, 128, 0.30);

  --rule: rgba(255, 255, 255, 0.12);

  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --display: 'Playfair Display', 'Didot', 'Georgia', serif;
  --sans: 'Noto Sans JP', 'Helvetica Neue', sans-serif;
  --mono: 'Outfit', sans-serif;

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --section-v: clamp(100px, 14vh, 180px);
}

/* ---- reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--sans);
  background: var(--bg-base);
  color: var(--ink);
  line-height: 1.85;
  overflow-x: hidden;
  font-size: 15px;
}

/* noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ---- container ---- */
.container {
  width: min(1120px, 100% - 56px);
  margin-inline: auto;
}

/* ---- shared typographic atoms ---- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champagne);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.eyebrow::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--champagne);
  flex-shrink: 0;
}

.heading-lg {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.heading-sm {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.body-text {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 2;
}

/* ---- horizontal rule ---- */
.hr {
  border: none;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--rule) 20%, var(--rule) 80%, transparent);
  margin: 0;
}

/* ---- scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  padding: 28px 0;
  background: var(--bg-base);
  transition: all 0.5s var(--ease);
}

.site-header.scrolled {
  padding: 14px 0;
  background: rgba(11, 11, 14, 0.88);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1.5px solid var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  color: var(--bg-base) !important;
  background: var(--champagne);
  padding: 10px 28px;
  border-radius: 2px;
  transition: opacity 0.3s, transform 0.3s !important;
}

.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.3s var(--ease);
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(11, 11, 14, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--champagne); }

.mobile-nav .nav-cta-mobile {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 14px 44px;
  border: 1px solid var(--champagne);
  color: var(--champagne);
  margin-top: 8px;
  letter-spacing: 0.08em;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: brightness(0.5) saturate(0.6);
  transform: scale(1.05);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, var(--bg-base) 70%),
    linear-gradient(180deg, rgba(11,11,14,0.2) 0%, var(--bg-base) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero-overtitle {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 36px;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.3s forwards;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 12vw, 8.5rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  line-height: 1;
  margin-bottom: 32px;
  color: var(--ink);
  opacity: 0;
  animation: heroFadeIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-rule {
  width: 56px;
  height: 1.5px;
  background: var(--champagne);
  margin: 0 auto 32px;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.65s forwards;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  margin-bottom: 56px;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.8s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--champagne);
  border: 1px solid rgba(184, 160, 128, 0.35);
  padding: 16px 48px;
  transition: all 0.4s var(--ease);
  opacity: 0;
  animation: riseIn 1s var(--ease) 1s forwards;
}

.hero-cta svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s var(--ease);
}

.hero-cta:hover {
  background: var(--champagne);
  color: var(--bg-base);
  border-color: var(--champagne);
}

.hero-cta:hover svg { transform: translateX(4px); }

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: riseIn 1s var(--ease) 1.2s forwards;
}

.hero-scroll span {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--champagne), transparent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.6); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
    letter-spacing: 0.5em;
  }
  to {
    opacity: 1;
    transform: none;
    letter-spacing: 0.3em;
  }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================
   SERVICES  — editorial layout
   ============================================ */
.services {
  padding: var(--section-v) 0;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header .eyebrow { justify-content: center; }

.services-header .heading-lg { margin-bottom: 20px; }

.services-header .body-text {
  max-width: 440px;
  margin-inline: auto;
}

/* service row — alternating layout */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.service-row:last-child {
  border-bottom: 1px solid var(--rule);
}

.service-row:nth-child(even) .service-visual { order: 2; }
.service-row:nth-child(even) .service-info  { order: 1; }

.service-visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.75);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.service-row:hover .service-visual img {
  transform: scale(1.04);
  filter: brightness(0.75) saturate(0.9);
}

.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,11,14,0.5) 100%);
  pointer-events: none;
}

.service-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 56px;
}

.service-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--ink-ghost);
  line-height: 1;
  margin-bottom: 24px;
}

.service-info h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.service-info p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 2;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  transition: border-color 0.3s, color 0.3s;
}

.service-row:hover .tag {
  border-color: rgba(184, 160, 128, 0.2);
  color: var(--ink);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: var(--section-v) 0;
  background: var(--bg-depth);
}

.pricing-header {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-header .eyebrow { justify-content: center; }

.pricing-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-bottom: 56px;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}

.pricing-tab {
  padding: 14px 32px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  position: relative;
  transition: color 0.3s;
}

.pricing-tab::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--champagne);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.pricing-tab:hover { color: var(--ink-soft); }

.pricing-tab.active {
  color: var(--champagne);
}

.pricing-tab.active::after {
  transform: scaleX(1);
}

/* panels */
.pricing-panel { display: none; }
.pricing-panel.active {
  display: block;
  animation: fadeSlide 0.5s var(--ease);
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 48px;
}

.price-cell {
  background: var(--bg-depth);
  padding: 40px 36px;
  transition: background 0.4s;
}

.price-cell:hover {
  background: var(--bg-surface);
}

.price-cell h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.price-cell .price-amount {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--champagne);
  margin: 16px 0 8px;
  letter-spacing: 0.02em;
}

.price-cell .price-amount small {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--ink-faint);
  font-weight: 400;
}

.price-cell .price-body {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 2;
}

.price-cell .price-body strong {
  color: var(--ink);
  font-weight: 600;
}

.price-cell .price-body li {
  padding-left: 14px;
  position: relative;
}

.price-cell .price-body li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--champagne);
}

.price-inline {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 16px 0 8px;
}

.price-inline .price-label-sub {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--champagne);
  letter-spacing: 0.06em;
  margin: 0;
  flex-shrink: 0;
}

.price-inline .price-amount-hero {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--champagne);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
}

.pricing-footer {
  text-align: center;
  padding: 40px;
  border: 1px solid var(--rule);
}

.pricing-footer p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 2;
}

/* ============================================
   GREETING / ABOUT
   ============================================ */
.greeting {
  padding: var(--section-v) 0;
}

.greeting-header {
  text-align: center;
  margin-bottom: 64px;
}

.greeting-header .eyebrow {
  justify-content: center;
}

.greeting-heading {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.greeting-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  align-items: start;
}

.greeting-visual {
  position: relative;
}

.greeting-visual-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.greeting-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.7) saturate(0.8);
}

.greeting-visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.greeting-visual-label {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--bg-base);
  padding: 16px 24px;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid var(--rule);
}

.greeting-body {
  padding-top: 0;
}

.greeting-prose {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 2.2;
}

.greeting-prose p { margin-bottom: 20px; }

.greeting-quote {
  position: relative;
  padding: 20px 0 20px 28px;
  border-left: 1px solid var(--champagne);
  margin: 36px 0;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.8;
}

.greeting-sig {
  margin-top: 40px;
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.greeting-sig .role {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

.greeting-sig .name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-v) 0;
  background: var(--bg-depth);
}

.contact-header {
  text-align: center;
  margin-bottom: 72px;
}

.contact-header .eyebrow { justify-content: center; }
.contact-header .body-text { max-width: 400px; margin-inline: auto; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  max-width: 840px;
  margin-inline: auto;
}

.contact-cell {
  background: var(--bg-depth);
  text-align: center;
  padding: 48px 24px;
  transition: background 0.4s;
}

.contact-cell:hover {
  background: var(--bg-surface);
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  border: 1px solid var(--champagne-dim);
  border-radius: 50%;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-cell h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.contact-cell .contact-val {
  font-size: 0.85rem;
  color: var(--champagne);
  word-break: break-all;
  transition: color 0.3s;
}

.contact-cell:hover .contact-val {
  color: var(--ink);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 56px 0;
  text-align: center;
  border-top: 1px solid var(--rule);
}

.footer-logo {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--ink-faint);
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 0.65rem;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
}

/* back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  color: var(--ink-faint);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
  background: rgba(11, 11, 14, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-to-top:hover {
  border-color: var(--champagne);
  color: var(--champagne);
}

.back-to-top svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .greeting-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .greeting-visual {
    max-width: 400px;
    margin-inline: auto;
  }

  .service-info {
    padding: 40px 36px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }

  body { font-size: 14px; }

  .container {
    width: min(1120px, 100% - 36px);
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(even) .service-visual { order: 0; }
  .service-row:nth-child(even) .service-info  { order: 0; }

  .service-visual {
    min-height: 240px;
  }

  .service-info {
    padding: 32px 28px 40px;
  }

  .service-number {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }

  .pricing-tabs {
    flex-wrap: wrap;
    border-bottom: none;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }

  .pricing-tab {
    flex: 1 1 45%;
    text-align: center;
    padding: 12px 16px;
    font-size: 0.73rem;
    background: var(--bg-depth);
  }

  .pricing-tab::after { display: none; }

  .pricing-tab.active {
    background: var(--bg-surface);
  }

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

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

  .greeting-body h3 {
    text-align: center;
  }

  .greeting-sig {
    justify-content: center;
  }

  .greeting-prose {
    text-align: center;
  }

  .greeting-quote {
    text-align: left;
  }

  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .hero-title {
    letter-spacing: 0.15em;
  }

  .hero-cta {
    padding: 14px 36px;
    font-size: 0.78rem;
  }
}
