/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --terracotta: #B85D42;
  --terracotta-deep: #9A4B32;
  --terracotta-light: #D4826A;
  --sand: #F5E6D3;
  --sand-light: #FBF5EE;
  --sand-dark: #E8D5C0;
  --charcoal: #1A1A1A;
  --charcoal-light: #2D2D2D;
  --warm-gray: #6B6560;
  --warm-gray-light: #9E9690;
  --cream: #FDF9F4;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184, 93, 66, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--sand);
  border-color: var(--sand);
}

.btn-outline-light:hover {
  background: var(--sand);
  color: var(--charcoal);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 249, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 93, 66, 0.1);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

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

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

.logo--light .logo-text {
  color: var(--sand);
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--warm-gray);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--charcoal);
  background: rgba(184, 93, 66, 0.06);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--terracotta);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
}

.nav-cta:hover {
  background: var(--terracotta-deep);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

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

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 0.75rem 1rem;
  transition: color var(--transition);
}

.mobile-nav-link:hover {
  color: var(--terracotta);
}

.mobile-cta {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.875rem 2.5rem;
  background: var(--terracotta);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  flex: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-accent {
  color: var(--terracotta);
  font-style: italic;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: var(--space-md);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 600/750;
}

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

.hero-img-accent {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 4px solid var(--cream);
  aspect-ratio: 400/280;
  width: 55%;
}

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

.hero-stat {
  position: absolute;
  top: var(--space-md);
  right: -1rem;
  background: var(--charcoal);
  color: var(--sand);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sand-dark);
  line-height: 1.4;
}

/* Hero Scroll */
.hero-scroll {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  color: var(--warm-gray-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: var(--warm-gray-light);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--terracotta);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* ===== ABOUT ===== */
.about {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 560/640;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: var(--space-md) 0;
}

.about-content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--warm-gray);
  margin-bottom: var(--space-sm);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--sand-dark);
}

.value-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
}

.value-icon {
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ===== MENU ===== */
.menu {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.menu-eyebrow {
  text-align: center;
}

.menu-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.menu-card-image {
  aspect-ratio: 480/360;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.menu-card-body {
  padding: var(--space-md);
}

.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.menu-card-body p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--warm-gray);
  margin-bottom: var(--space-sm);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.menu-list li {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  padding-left: 1rem;
  position: relative;
}

.menu-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  background: var(--terracotta);
  border-radius: 50%;
}

.menu-cta {
  text-align: center;
}

/* ===== SPACE ===== */
.space {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.space-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.space-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.space-tall {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 560/800;
}

.space-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 560/380;
}

.space-tall img,
.space-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.space-feature {
  padding: var(--space-md);
  background: var(--sand-light);
  border-radius: var(--radius-md);
}

.space-feature-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.space-feature h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.space-feature p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--warm-gray);
}

/* ===== VISIT ===== */
.visit {
  padding: var(--space-2xl) 0;
  background: var(--sand-light);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.visit-info {
  padding: var(--space-md) 0;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.visit-detail {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.visit-icon {
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

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

.visit-detail span:last-child,
.visit-detail a {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
}

.visit-detail a:hover {
  color: var(--terracotta);
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.map-placeholder {
  aspect-ratio: 560/560;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
}

/* ===== CTA ===== */
.cta {
  padding: var(--space-2xl) 0;
  background: var(--charcoal);
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta .section-eyebrow {
  color: var(--terracotta-light);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--sand);
  margin-bottom: var(--space-sm);
}

.cta-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--warm-gray-light);
  margin-bottom: var(--space-md);
}

.cta-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-lg);
}

.contact-content {
  padding-top: var(--space-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184, 93, 66, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius-sm);
  color: #2E7D32;
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  flex-shrink: 0;
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-card {
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-card--accent {
  background: var(--terracotta);
  color: var(--white);
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--charcoal);
}

.contact-card--accent h4 {
  color: var(--sand);
}

.contact-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--warm-gray);
}

.contact-card--accent p {
  color: rgba(245, 230, 211, 0.85);
}

.contact-quick-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-quick-list li {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--warm-gray);
}

.contact-quick-list a {
  color: var(--terracotta);
  transition: color var(--transition);
}

.contact-quick-list a:hover {
  color: var(--terracotta-deep);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: var(--sand-dark);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.footer-brand .logo-text {
  color: var(--sand);
}

.footer-brand p {
  margin-top: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--warm-gray-light);
  line-height: 1.6;
}

.footer-nav h5,
.footer-contact h5,
.footer-hours h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: var(--space-sm);
}

.footer-nav ul,
.footer-contact ul,
.footer-hours ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.9375rem;
  color: var(--warm-gray-light);
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--sand);
}

.footer-hours li {
  font-size: 0.9375rem;
  color: var(--warm-gray-light);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 230, 211, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--warm-gray);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-visual {
    max-width: 500px;
  }

  .hero-img-accent {
    left: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .about-image {
    aspect-ratio: 16/10;
  }

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

  .space-details {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .mobile-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: var(--space-lg);
  }

  .hero-grid {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-img-accent {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: var(--space-sm);
  }

  .hero-stat {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-top: var(--space-sm);
  }

  .hero-scroll {
    display: none;
  }

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

  .space-gallery {
    grid-template-columns: 1fr;
  }

  .space-tall {
    aspect-ratio: 4/3;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .hero-actions {
    flex-direction: column;
  }

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