/* ============================================
   CASA RIOS GRILL — STYLESHEET
   ============================================ */

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

:root {
  --coral: #E8645B;
  --coral-dark: #D1524A;
  --coral-light: #F4845C;
  --charcoal: #1A1A2E;
  --charcoal-light: #2D2D44;
  --charcoal-mid: #252538;
  --cream: #FFF8F6;
  --cream-dark: #F5EDEA;
  --white: #FFFFFF;
  --text-light: #B8B8CC;
  --text-dark: #2D2D44;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.08);
  --shadow-md: 0 8px 30px rgba(26, 26, 46, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn--coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 100, 91, 0.35);
}

.btn--coral:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 100, 91, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

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

/* ============================================
   SECTION LABELS & TITLES
   ============================================ */
.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}

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

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
}

.nav__logo-accent {
  color: var(--coral);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  position: relative;
}

.nav__links a:not(.btn):hover {
  color: var(--white);
}

.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: var(--transition);
}

.nav__links a:not(.btn):hover::after {
  width: 100%;
}

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

.nav__toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

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

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
}

.mobile-menu.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__bg {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(20px);
}

.mobile-menu__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

.mobile-menu__link:hover {
  color: var(--coral);
}

.mobile-menu__cta {
  margin-top: 8px;
}

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

.hero__bg {
  position: absolute;
  inset: 0;
}

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

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.88) 0%,
    rgba(26, 26, 46, 0.70) 50%,
    rgba(232, 100, 91, 0.30) 100%
  );
}

.hero__geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.hero__geo--tr {
  width: 600px;
  height: 600px;
  background: var(--coral);
  top: -200px;
  right: -150px;
}

.hero__geo--bl {
  width: 400px;
  height: 400px;
  background: var(--coral-light);
  bottom: -100px;
  left: -100px;
}

.hero__geo--mid {
  width: 200px;
  height: 200px;
  background: var(--white);
  top: 50%;
  left: 60%;
  opacity: 0.04;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  max-width: 720px;
}

.hero__eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--coral);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--coral);
}

.hero__headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero__accent {
  color: var(--coral);
  position: relative;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
  transition: var(--transition);
}

.hero__scroll:hover {
  color: var(--coral);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ============================================
   HIGHLIGHTS BAR
   ============================================ */
.highlights {
  background: var(--charcoal);
  padding: 0;
}

.highlights__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.highlight-card:last-child {
  border-right: none;
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

.highlight-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(232, 100, 91, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-card--coral .highlight-card__icon {
  background: var(--coral);
}

.highlight-card span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: 100px 0;
  background: var(--cream);
}

.menu .section-sub {
  margin-bottom: 60px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu-card--feature {
  grid-row: span 1;
}

.menu-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.menu-card__img-wrap 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__img-wrap img {
  transform: scale(1.05);
}

.menu-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--coral);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-card__body {
  padding: 28px;
}

.menu-card__body h3 {
  font-size: 1.35rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.menu-card__body p {
  font-size: 0.95rem;
  color: #6B6B80;
  margin-bottom: 16px;
  line-height: 1.6;
}

.menu-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-card__list li {
  font-size: 0.9rem;
  color: var(--text-dark);
  padding-left: 18px;
  position: relative;
}

.menu-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #6B6B80;
  font-style: italic;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--coral);
  border-radius: 50%;
  top: -250px;
  right: -100px;
  opacity: 0.04;
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__img-stack {
  position: relative;
}

.about__img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about__img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--charcoal);
}

.about__img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__geo-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--coral);
  border-radius: var(--radius-md);
  transform: rotate(15deg);
  z-index: -1;
  opacity: 0.6;
}

.about__content {
  position: relative;
  z-index: 2;
}

.about__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral);
}

.stat__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   EXPERIENCE
   ============================================ */
.experience {
  padding: 100px 0;
  background: var(--coral);
  position: relative;
  overflow: hidden;
}

.experience__circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.experience__circle--1 {
  width: 400px;
  height: 400px;
  top: -150px;
  left: -100px;
}

.experience__circle--2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: 10%;
}

.experience__triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(255, 255, 255, 0.06);
  top: 40px;
  right: 15%;
  transform: rotate(20deg);
}

.experience__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.exp-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
}

.exp-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}

.exp-card--coral {
  background: var(--white);
  border-color: transparent;
}

.exp-card--coral h3 {
  color: var(--charcoal);
}

.exp-card--coral p {
  color: #6B6B80;
}

.exp-card__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.exp-card--coral .exp-card__number {
  color: var(--coral);
  opacity: 0.3;
}

.exp-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.exp-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  overflow: hidden;
  padding: 80px 0;
  background: var(--cream-dark);
}

.gallery__track {
  display: flex;
  gap: 16px;
  animation: scroll 40s linear infinite;
}

.gallery__item {
  flex-shrink: 0;
  width: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-320px * 5 - 16px * 5)); }
}

/* ============================================
   LOCATION
   ============================================ */
.location {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.location::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--coral);
  border-radius: 50%;
  bottom: -100px;
  left: -80px;
  opacity: 0.04;
  pointer-events: none;
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.75;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location__detail svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.location__detail strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}

.location__detail span,
.location__detail a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.location__detail a:hover {
  color: var(--coral);
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__sub {
  color: #6B6B80;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 16px;
}

.contact__form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 14px 16px;
  border: 1.5px solid #E8E8F0;
  border-radius: var(--radius-md);
  background: var(--cream);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 100, 91, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A8A8BC;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.form-success strong {
  color: #16a34a;
}

.form-success p {
  color: #15803d;
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--coral);
  padding-left: 4px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__contact a {
  transition: var(--transition);
}

.footer__contact a:hover {
  color: var(--coral);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__img-float {
    right: 0;
  }

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

  .experience__cards .exp-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

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

  .location__map {
    min-height: 300px;
  }

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

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

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

  .nav__toggle {
    display: flex;
  }

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

  .highlight-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero__headline {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .menu {
    padding: 60px 0;
  }

  .about {
    padding: 60px 0;
  }

  .experience {
    padding: 60px 0;
  }

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

  .experience__cards .exp-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .gallery__item {
    width: 260px;
  }

  .location {
    padding: 60px 0;
  }

  .contact {
    padding: 60px 0;
  }

  .contact__form {
    padding: 24px;
  }

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

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

  .about__stats {
    gap: 24px;
  }
}

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

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

  .hero__content {
    padding-top: 60px;
  }

  .hero__geo--tr {
    width: 300px;
    height: 300px;
  }

  .hero__geo--bl {
    width: 200px;
    height: 200px;
  }

  .about__img-float {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
  }

  .about__img-stack {
    display: flex;
    flex-direction: column;
  }

  .gallery__item {
    width: 220px;
  }
}
