@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── Variables ──────────────────────────────────── */
:root {
  --ink: #1a1714;
  --paper: #f5f0ea;
  --warm: #e8e0d4;
  --sand: #d4c9b8;
  --terracotta: #c2703e;
  --terracotta-dark: #a85c30;
  --stone: #8a7e6f;
  --slate: #4a443c;
  --cream: #faf7f2;
  --shadow: rgba(26, 23, 20, 0.08);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --max-width: 1280px;
  --nav-height: 72px;
}

/* ── Base ───────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--terracotta);
  color: var(--cream);
}

/* ── Typography ─────────────────────────────────── */
.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.25;
}

.heading-sm {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.3;
}

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.body-lg {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--slate);
}

/* ── Navigation ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav--scrolled {
  background: rgba(245, 240, 234, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--shadow);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream);
  transition: color 0.4s ease;
  white-space: nowrap;
}

.nav--scrolled .nav__logo {
  color: var(--ink);
}

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

.nav__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav--scrolled .nav__link {
  color: var(--slate);
}

.nav--scrolled .nav__link:hover {
  color: var(--ink);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.3rem;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav__cta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav--scrolled .nav__burger span {
  background: var(--ink);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav__mobile.active {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav__mobile.active a {
  opacity: 1;
  transform: translateY(0);
}

.nav__mobile.active a:nth-child(1) { transition-delay: 0.1s; }
.nav__mobile.active a:nth-child(2) { transition-delay: 0.15s; }
.nav__mobile.active a:nth-child(3) { transition-delay: 0.2s; }
.nav__mobile.active a:nth-child(4) { transition-delay: 0.25s; }
.nav__mobile.active a:nth-child(5) { transition-delay: 0.3s; }
.nav__mobile.active a:nth-child(6) { transition-delay: 0.35s; }

.nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 23, 20, 0.75) 0%,
    rgba(26, 23, 20, 0.3) 40%,
    rgba(26, 23, 20, 0.15) 70%,
    rgba(26, 23, 20, 0.25) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  max-width: 800px;
}

.hero__tagline {
  color: var(--sand);
  margin-bottom: 1rem;
}

.hero__title {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  border-color: var(--sand);
  color: var(--ink);
}

.btn-dark:hover {
  border-color: var(--stone);
  background: rgba(26, 23, 20, 0.04);
}

/* ── Scroll indicator ───────────────────────────── */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(2rem, 4vw, 4rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ── Sections ───────────────────────────────────── */
.section {
  padding: var(--space-xl) clamp(1.2rem, 4vw, 3rem);
}

.section--cream { background: var(--cream); }
.section--warm { background: var(--warm); }
.section--dark {
  background: var(--ink);
  color: var(--cream);
}

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

.section__header {
  margin-bottom: var(--space-lg);
}

.section__header .label {
  margin-bottom: 0.8rem;
}

/* ── Intro / About ──────────────────────────────── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.intro__text {
  max-width: 480px;
}

.intro__text .heading-lg {
  margin-bottom: var(--space-md);
}

.intro__text p {
  color: var(--slate);
  margin-bottom: var(--space-sm);
}

.intro__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.intro__image:hover img {
  transform: scale(1.03);
}

.intro__image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--sand);
  z-index: -1;
}

/* ── Horizontal divider ─────────────────────────── */
.divider {
  width: 50px;
  height: 1px;
  background: var(--sand);
  margin: var(--space-md) 0;
}

/* ── Rooms Grid ─────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.room-card {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  cursor: pointer;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0, 0.25, 1);
}

.room-card:hover img {
  transform: scale(1.06);
}

.room-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 23, 20, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.room-card:hover .room-card__overlay {
  opacity: 1;
}

.room-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.room-card:hover .room-card__info {
  transform: translateY(0);
  opacity: 1;
}

.room-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.room-card__info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Room Feature (full-width) ──────────────────── */
.room-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 70vh;
}

.room-feature--reverse {
  grid-template-columns: 1fr 1.2fr;
}

.room-feature--reverse .room-feature__image {
  order: 2;
}

.room-feature__image {
  position: relative;
  overflow: hidden;
}

.room-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.room-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.room-feature__content .label {
  margin-bottom: 1rem;
}

.room-feature__content .heading-md {
  margin-bottom: 1.2rem;
}

.room-feature__content p {
  color: var(--slate);
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.room-feature__details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.room-feature__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--stone);
}

.room-feature__detail svg {
  width: 18px;
  height: 18px;
  stroke: var(--terracotta);
}

/* ── Amenities ──────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand);
}

.amenity-card {
  background: var(--cream);
  padding: var(--space-md) 1.5rem;
  transition: background 0.3s ease;
}

.amenity-card:hover {
  background: var(--paper);
}

.amenity-card svg {
  width: 28px;
  height: 28px;
  stroke: var(--terracotta);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 1.2rem;
}

.amenity-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.amenity-card p {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.6;
}

/* ── Reviews ────────────────────────────────────── */
.reviews-section {
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: var(--sand);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.review-card {
  padding: var(--space-md);
  border-left: 2px solid var(--sand);
  transition: border-color 0.3s ease;
}

.review-card:hover {
  border-color: var(--terracotta);
}

.review-card__quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.2rem;
  position: relative;
}

.review-card__quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--sand);
  position: absolute;
  top: -1.5rem;
  left: -0.3rem;
  line-height: 1;
}

.review-card__author {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

.review-card__source {
  font-size: 0.7rem;
  color: var(--sand);
  margin-top: 0.2rem;
}

/* ── Google Reviews Link ────────────────────────── */
.reviews-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ── Location ───────────────────────────────────── */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.location__text .heading-lg {
  margin-bottom: var(--space-md);
}

.location__distances {
  margin-top: var(--space-md);
}

.location__distance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--warm);
}

.location__distance-name {
  font-size: 0.9rem;
  color: var(--ink);
}

.location__distance-time {
  font-size: 0.8rem;
  color: var(--stone);
  font-style: italic;
}

.location__map {
  aspect-ratio: 1;
  background: var(--warm);
  overflow: hidden;
  position: relative;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%) contrast(1.05);
}

/* ── Gallery Grid ───────────────────────────────── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.gallery-mosaic__item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-mosaic__item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-mosaic__item--tall {
  grid-row: span 2;
}

.gallery-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0, 0.25, 1);
}

.gallery-mosaic__item:hover img {
  transform: scale(1.05);
}

/* ── Lightbox ───────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 20, 0.95);
  z-index: 200;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 201;
}

/* ── Contact / CTA ──────────────────────────────── */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) clamp(1.2rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--cream);
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cta-band__text .heading-md {
  margin-bottom: 0.5rem;
}

.cta-band__text p {
  color: var(--stone);
  max-width: 500px;
}

.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--stone);
  padding: var(--space-lg) clamp(1.2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
}

.footer__brand .heading-sm {
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}

.footer__col a {
  display: block;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.footer__col a:hover {
  color: var(--cream);
}

.footer__bottom {
  max-width: var(--max-width);
  margin: var(--space-lg) auto 0;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.footer__bottom a {
  transition: color 0.3s ease;
}

.footer__bottom a:hover {
  color: var(--cream);
}

/* ── Page Header (for sub-pages) ────────────────── */
.page-header {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-lg);
  padding-left: clamp(1.2rem, 4vw, 3rem);
  padding-right: clamp(1.2rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.page-header .label {
  color: var(--sand);
  margin-bottom: 0.8rem;
}

.page-header .heading-xl {
  color: var(--cream);
  max-width: 700px;
}

.page-header p {
  color: var(--stone);
  max-width: 500px;
  margin-top: 1rem;
}

/* ── Utilities ──────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }

/* ── Fade-in Animation ──────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .intro {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .intro__image::after { display: none; }

  .room-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .room-feature--reverse .room-feature__image {
    order: 0;
  }

  .room-feature__image img {
    min-height: 300px;
    max-height: 50vh;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-layout {
    grid-template-columns: 1fr;
  }

  .location__map {
    aspect-ratio: 16/9;
    min-height: 300px;
  }

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

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }

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

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

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

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-mosaic__item--wide {
    grid-column: span 2;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
  }

  .cta-band__actions {
    justify-content: center;
  }

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

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

  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic__item--wide {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }

  .gallery-mosaic__item--tall {
    grid-row: span 1;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
