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

:root {
  --emerald-900: #042f2e;
  --emerald-800: #047857;
  --emerald-700: #059669;
  --emerald-600: #10b981;
  --cream: #faf8f0;
  --cream-dark: #f0ece0;
  --cream-light: #fdfcF8;
  --charcoal: #1a1a1a;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(4, 120, 87, 0.08);
  transition: transform 0.4s var(--ease-out);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--emerald-800);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--emerald-900);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--emerald-800);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--emerald-800);
  transition: width 0.3s var(--ease-out);
}

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

.nav-cta {
  background: var(--emerald-800);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--emerald-700);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--charcoal);
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(4, 120, 87, 0.1);
  transition: color 0.2s, padding-left 0.3s var(--ease-out);
}

.mobile-link:hover {
  color: var(--emerald-800);
  padding-left: 0.5rem;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 72px 0 4rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 72px);
}

.hero-content {
  padding-right: 1rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--emerald-800);
  margin-bottom: 2rem;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1.5px;
  background: var(--emerald-800);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--emerald-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.headline-accent {
  font-style: italic;
  color: var(--emerald-700);
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.hero-meta-item a {
  transition: color 0.2s;
}

.hero-meta-item a:hover {
  color: var(--emerald-800);
}

.meta-icon {
  color: var(--emerald-800);
  flex-shrink: 0;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 600px;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-float {
  position: absolute;
  bottom: 8%;
  left: -12%;
  width: 65%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(4, 47, 46, 0.2);
  border: 4px solid var(--cream);
}

.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.float-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--emerald-800);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.875rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.float-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--emerald-400, #34d399);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--emerald-800), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--emerald-800);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--emerald-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(4, 120, 87, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--emerald-800);
  border: 1.5px solid var(--emerald-800);
}

.btn-ghost:hover {
  background: var(--emerald-800);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--emerald-900);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* MARQUEE */
.marquee {
  background: var(--emerald-900);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 1.5rem;
  flex-shrink: 0;
}

.marquee-dot {
  color: var(--emerald-600) !important;
  font-size: 0.6rem !important;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTION HEADERS */
.section-header {
  max-width: 680px;
  margin-bottom: 4rem;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--emerald-800);
  margin-bottom: 1rem;
}

.eyebrow-line {
  width: 40px;
  height: 1.5px;
  background: var(--emerald-800);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--emerald-900);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.title-accent {
  font-style: italic;
  color: var(--emerald-700);
}

.section-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* MENU */
.menu {
  padding: 7rem 0;
  background: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.menu-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(4, 47, 46, 0.1);
}

.menu-card--featured {
  grid-column: span 7;
}

.menu-card:not(.menu-card--featured) {
  grid-column: span 5;
}

.menu-card-img {
  height: 220px;
  overflow: hidden;
}

.menu-card--featured .menu-card-img {
  height: 280px;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-body {
  padding: 1.5rem;
}

.menu-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald-800);
  background: rgba(4, 120, 87, 0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.menu-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--emerald-900);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.menu-card-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
}

.menu-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(4, 120, 87, 0.05);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* ABOUT */
.about {
  padding: 7rem 0;
  background: var(--emerald-900);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-stack {
  position: relative;
  min-height: 550px;
}

.about-img-main {
  width: 85%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid var(--emerald-900);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-stat {
  position: absolute;
  top: 2rem;
  right: 0;
  background: var(--white);
  color: var(--emerald-900);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--emerald-800);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.about-content .section-eyebrow {
  color: var(--emerald-600);
}

.about-content .section-eyebrow .eyebrow-line {
  background: var(--emerald-600);
}

.about-content .section-title {
  color: var(--white);
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

.value-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-400, #34d399);
  flex-shrink: 0;
}

/* VISIT */
.visit {
  padding: 7rem 0;
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit-info .section-title {
  margin-bottom: 2.5rem;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.visit-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(4, 120, 87, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-800);
  flex-shrink: 0;
}

.visit-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.visit-detail-value {
  display: block;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

.visit-detail-value:hover {
  color: var(--emerald-800);
}

.visit-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 20px 50px rgba(4, 47, 46, 0.12);
}

.visit-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* CTA */
.cta {
  padding: 7rem 0;
  background: var(--emerald-800);
  color: var(--white);
  text-align: center;
}

.cta-eyebrow {
  justify-content: center;
  color: rgba(255,255,255,0.6);
}

.cta-eyebrow .eyebrow-line {
  background: rgba(255,255,255,0.4);
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.cta-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  background: var(--emerald-900);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 0.25rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-contact span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    height: 50vh;
    min-height: 400px;
    order: -1;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-meta {
    align-items: center;
  }

  .hero-img-float {
    left: -5%;
    width: 50%;
  }

  .menu-card--featured {
    grid-column: span 12;
  }

  .menu-card:not(.menu-card--featured) {
    grid-column: span 6;
  }

  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-stack {
    min-height: 400px;
  }

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

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-headline {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .hero-img-float {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

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

  .menu-card:not(.menu-card--featured) {
    grid-column: span 1;
  }

  .menu-card-img {
    height: 200px;
  }

  .about-img-stack {
    min-height: 300px;
  }

  .about-img-main {
    width: 100%;
  }

  .about-img-accent {
    width: 50%;
  }

  .visit-map {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .container {
    padding: 0 1.25rem;
  }

  .nav-inner {
    padding: 0 1.25rem;
  }

  .mobile-link {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
