/* ============================================
   LATIN TONIC — Styles
   Charcoal + Coral palette
   ============================================ */

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

:root {
  --charcoal: #1a1a2e;
  --charcoal-deep: #12121f;
  --charcoal-light: #2a2a3e;
  --coral: #e85d4a;
  --coral-light: #f07868;
  --coral-dark: #c94a38;
  --cream: #faf6f3;
  --cream-dark: #f0e8e2;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-light: #f5f0ed;
  --text-muted: #6b6b80;
  --text-muted-light: #a0a0b8;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 26, 46, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

a {
  color: var(--coral);
  text-decoration: none;
  transition: color var(--transition);
}

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

.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: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 74, 0.35);
}

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

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

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

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

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-dark:hover {
  background: var(--charcoal-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.3);
  color: var(--white);
}

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

/* --- Section helpers --- */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--charcoal);
}

.section--coral {
  background: var(--coral);
}

.section-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-tag--light {
  color: var(--coral-light);
}

.section-tag--dark {
  color: rgba(255,255,255,0.7);
}

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

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

.section-title .text-coral {
  color: var(--coral);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-desc--light {
  color: var(--text-muted-light);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--coral);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

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

.main-nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}

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

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

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

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.hero-bg-shape--1 {
  width: 600px;
  height: 600px;
  background: var(--coral);
  top: -200px;
  right: -100px;
}

.hero-bg-shape--2 {
  width: 400px;
  height: 400px;
  background: #ff8a65;
  bottom: -100px;
  left: 10%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral-light);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted-light);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 50px;
}

.hero-badge svg {
  color: var(--coral-light);
}

/* Hero image area */
.hero-image-wrap {
  position: relative;
  height: 600px;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-img-float {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--charcoal);
  box-shadow: var(--shadow-lg);
}

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

.hero-geo {
  position: absolute;
  pointer-events: none;
}

.hero-geo--1 {
  width: 80px;
  height: 80px;
  border: 3px solid var(--coral);
  border-radius: 50%;
  top: -20px;
  right: 30px;
  opacity: 0.5;
}

.hero-geo--2 {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid var(--coral);
  opacity: 0.3;
  bottom: 60px;
  right: -10px;
  transform: rotate(15deg);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  color: var(--cream);
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--cream);
}

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

.about-stat {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  white-space: nowrap;
}

.about-stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 0.8rem;
  opacity: 0.85;
}

.about-text .section-title {
  margin-bottom: 24px;
}

.about-text > p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 93, 74, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--charcoal);
}

.about-feature span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Menu --- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.menu-card {
  background: var(--charcoal-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.menu-card-visual {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.menu-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.menu-card-geo {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.2;
}

.menu-card-geo--2 {
  width: 60px;
  height: 60px;
  background: #ff8a65;
  top: 20px;
  left: 20px;
  border-radius: 50%;
  opacity: 0.25;
}

.menu-card-geo--3 {
  width: 50px;
  height: 50px;
  background: var(--white);
  bottom: 30px;
  right: 30px;
  border-radius: 50%;
  opacity: 0.1;
}

.menu-card-body {
  padding: 28px;
}

.menu-card-icon {
  width: 52px;
  height: 52px;
  background: var(--coral);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
}

.menu-card-title {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.menu-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted-light);
  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-muted-light);
  padding-left: 16px;
  position: relative;
}

.menu-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
}

.menu-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted-light);
  font-style: italic;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item--1 {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
  min-height: 500px;
}

.gallery-item--2 {
  grid-column: 6 / 9;
  grid-row: 1 / 2;
  min-height: 240px;
}

.gallery-item--3 {
  grid-column: 9 / 13;
  grid-row: 1 / 2;
  min-height: 240px;
}

.gallery-item--4 {
  grid-column: 6 / 10;
  grid-row: 2 / 3;
  min-height: 240px;
}

.gallery-item--5 {
  grid-column: 10 / 13;
  grid-row: 2 / 3;
  min-height: 240px;
}

/* --- Visit --- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-text .section-title {
  margin-bottom: 16px;
}

.visit-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.visit-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.visit-info-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.visit-info-item span,
.visit-info-item a {
  color: var(--white);
  font-size: 1rem;
  text-decoration: none;
}

.visit-info-item a:hover {
  text-decoration: underline;
}

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

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 480px;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text .section-title {
  margin-bottom: 16px;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--transition);
}

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

.contact-detail svg {
  color: var(--coral);
  flex-shrink: 0;
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 93, 74, 0.15);
}

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

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 32px;
  color: #2d8a4e;
}

.form-success svg {
  color: #2d8a4e;
}

.form-success p {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

/* --- Footer --- */
.footer {
  background: var(--charcoal-deep);
  color: var(--text-muted-light);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted-light);
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--text-muted-light);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--coral-light);
}

.footer-col span {
  font-size: 0.92rem;
  color: var(--text-muted-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Scroll reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

/* Fallback: content visible without JS */
@media not all and (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-wrap {
    height: 450px;
    max-width: 500px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-stack {
    height: 450px;
    max-width: 500px;
  }

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

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

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

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

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(26,26,46,0.08);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav a {
    font-size: 1.05rem;
    padding: 8px 0;
  }

  .main-nav .btn {
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero-image-wrap {
    height: 360px;
  }

  .hero-img-float {
    width: 140px;
    height: 140px;
    left: -20px;
    bottom: -20px;
  }

  .hero-wave svg {
    height: 50px;
  }

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

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

  .gallery-item--1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    min-height: 300px;
  }

  .gallery-item--2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    min-height: 200px;
  }

  .gallery-item--3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    min-height: 200px;
  }

  .gallery-item--4 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    min-height: 200px;
  }

  .gallery-item--5 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    min-height: 200px;
  }

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

  .contact-form-wrap {
    padding: 24px;
  }

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

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

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

  .hero-headline {
    font-size: 1.9rem;
  }

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

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

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

  .about-img-stack {
    height: 340px;
  }

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

  .gallery-item--1,
  .gallery-item--2,
  .gallery-item--3,
  .gallery-item--4,
  .gallery-item--5 {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 220px;
  }

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