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

:root {
  --dark:    #0b0f14;
  --darker:  #070a0e;
  --deepest: #040608;
  --forest:  #111c16;
  --ocean:   #0c1822;
  --green:       #2a5c30;
  --green-light: #3d7d45;
  --green-mid:   #1e4025;
  --gold:       #c8a45a;
  --gold-light: #e2c07d;
  --gold-dim:   #9a7a3c;
  --gold-glow:  rgba(200, 164, 90, 0.18);
  --cream:      #f2eadb;
  --white:      #ffffff;
  --mist:       #b0c4b8;
  --text-muted: #7a8e84;
  --text-faint: #4a5a52;
  --teal:       #2d7a72;
  --teal-light: #3da898;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Raleway', sans-serif;
  --border-gold:  rgba(200, 164, 90, 0.18);
  --border-white: rgba(255,255,255,0.06);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 60px;
  background: rgba(7, 10, 14, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  transition: background 0.3s;
}

body {
  overflow-x: hidden;
}

/* Tablet */
@media (max-width: 992px) {
  .navbar {
    padding: 16px 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 12px;
    padding: 15px 20px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .navbar {
    padding: 12px 15px;
  }

  .nav-links {
    gap: 10px;
    font-size: 14px;
  }
}
body {
  overflow-x: hidden;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold); letter-spacing: 1px;
}
.nav-links { list-style: none; display: flex; gap: 36px; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--mist); transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold); transition: width 0.35s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(155deg, #070e08 0%, #101e14 35%, #0a1620 70%, #06090d 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(42, 92, 48, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 18%, rgba(200, 164, 90, 0.12) 0%, transparent 48%),
    radial-gradient(ellipse at 55% 85%, rgba(12, 24, 34, 0.9) 0%, transparent 55%);
}
.hero-mountains {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 45%;
  background: linear-gradient(to top, #0b0f14 0%, transparent 100%);
  clip-path: polygon(0% 100%, 0% 60%, 5% 45%, 10% 55%, 18% 30%, 25% 50%, 32% 20%, 40% 45%, 50% 15%, 58% 40%, 65% 25%, 72% 50%, 80% 30%, 88% 55%, 95% 40%, 100% 50%, 100% 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px;
  animation: fadeUp 1.2s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem; letter-spacing: 6px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px; opacity: 0.9;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900; line-height: 1;
  color: var(--white); margin-bottom: 14px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.3vw, 1.7rem);
  font-weight: 400; color: var(--mist);
  margin-bottom: 42px; font-style: italic;
}
.hero-desc {
  font-size: 0.93rem; color: #8fa49a;
  max-width: 520px; margin: 0 auto 52px;
  font-weight: 300; line-height: 2;
}
.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  padding: 14px 42px;
  background: var(--gold); color: var(--darker);
  font-family: var(--font-body);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(200, 164, 90, 0.32);
}
.btn-outline {
  padding: 14px 42px; background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  border: 1px solid rgba(242, 234, 219, 0.28);
  cursor: pointer; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.68rem;
  letter-spacing: 3px; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; } 50% { opacity: 1; }
}
section { padding: 100px 60px; }
.section-label {
  font-size: 0.70rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
  color: var(--text-muted); font-size: 0.93rem;
  font-weight: 300; max-width: 560px; line-height: 1.95;
}
.divider { width: 56px; height: 2px; background: var(--gold); margin: 28px 0; }
.intro-strip {
  background: var(--forest); padding: 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.strip-item {
  text-align: center; padding: 40px 30px;
  border-right: 1px solid var(--border-gold);
  transition: background 0.35s;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: rgba(200, 164, 90, 0.06); }
.strip-icon { font-size: 2rem; margin-bottom: 16px; }
.strip-title {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 600; color: var(--white); margin-bottom: 10px;
}
.strip-text { font-size: 0.84rem; color: var(--text-muted); font-weight: 300; line-height: 1.85; }
.highlights {
  background: var(--darker);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.highlights-text .section-desc { margin-bottom: 30px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 0.88rem; color: var(--mist); font-weight: 300;
}
.feature-list li::before {
  content: '◆'; color: var(--gold); font-size: 0.58rem;
  margin-top: 6px; flex-shrink: 0;
}
.highlights-visual { position: relative; }
.visual-card-main {
  background: linear-gradient(135deg, #142218, #0c1a26);
  border: 1px solid var(--border-gold);
  padding: 60px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.visual-card-main::before {
  content: '';
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(200, 164, 90, 0.06) 0%, transparent 70%);
}
.visual-number {
  font-family: var(--font-display); font-size: 7rem; font-weight: 900;
  color: rgba(200, 164, 90, 0.10); line-height: 1;
  position: absolute; top: 10px; right: 20px;
}
.visual-stat { position: relative; z-index: 1; }
.stat-big {
  font-family: var(--font-display); font-size: 3.5rem;
  font-weight: 700; color: var(--gold); display: block;
}
.stat-label {
  font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--mist); margin-top: 8px; display: block;
}

.destinations-preview { background: var(--dark); }
.destinations-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; margin-top: 60px;
}
.dest-card {
  position: relative; height: 380px;
  overflow: hidden; cursor: pointer;
}
.dest-card-bg {
  position: absolute; inset: 0; transition: transform 0.6s ease;
}
.dest-card:hover .dest-card-bg { transform: scale(1.08); }
.dest-card-bg.card-1 { background: linear-gradient(155deg, #163826 0%, #0a1e3a 100%); }
.dest-card-bg.card-2 { background: linear-gradient(155deg, #2c1c10 0%, #181e2e 100%); }
.dest-card-bg.card-3 { background: linear-gradient(155deg, #0e2436 0%, #0e2016 100%); }
.dest-pattern {
  position: absolute; inset: 0; opacity: 0.12;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 20px,
    rgba(200, 164, 90, 0.35) 20px, rgba(200, 164, 90, 0.35) 21px
  );
}
.dest-card-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(7, 10, 14, 0.97) 0%, transparent 65%);
}
.dest-emoji { font-size: 2.5rem; margin-bottom: 16px; }
.dest-name {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.dest-tagline { font-size: 0.82rem; color: var(--mist); font-weight: 300; margin-bottom: 16px; }
.dest-link {
  font-size: 0.70rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 8px; transition: gap 0.3s;
}
.dest-card:hover .dest-link { gap: 14px; }
.quote-band {
  background: linear-gradient(135deg, var(--forest), var(--ocean));
  padding: 80px 60px; text-align: center;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-style: italic; color: var(--cream);
  max-width: 800px; margin: 0 auto 24px; line-height: 1.55;
}
.quote-text span { color: var(--gold); }
.quote-author {
  font-size: 0.76rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--text-muted);
}

.cta-section { background: var(--darker); text-align: center; }
.cta-section .section-title { margin-bottom: 16px; }
.cta-section .section-desc { margin: 0 auto 40px; }
footer {
  background: var(--deepest); padding: 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; border-top: 1px solid var(--border-gold);
}
.footer-brand {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 700; color: var(--gold); margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.84rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.85; max-width: 280px;
}
.footer-heading {
  font-size: 0.70rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.84rem; color: var(--text-muted);
  font-weight: 300; transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  background: #C8A45A; padding: 20px 60px;
  text-align: center; font-size: 0.76rem;
  border-top: 1px solid var(--border-white);
}
.page-hero {
  height: 50vh; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; padding-top: 80px;
  background: linear-gradient(155deg, #080e09 0%, #121e16 50%, #0c1820 100%);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(42, 92, 48, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse at 72% 30%, rgba(200, 164, 90, 0.10) 0%, transparent 50%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .hero-eyebrow { margin-bottom: 16px; }
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900; color: var(--white);
}
.page-hero-content h1 em { color: var(--gold); font-style: italic; }
.about-intro {
  background: var(--darker);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-box {
  background: linear-gradient(135deg, var(--forest), #0a1c28);
  border: 1px solid var(--border-gold);
  padding: 40px 20px; text-align: center; transition: transform 0.3s;
}
.stat-box:hover { transform: translateY(-4px); }
.stat-box .stat-big { font-size: 2.5rem; }
.stat-box .stat-label { font-size: 0.70rem; }
.about-story { background: var(--dark); }
.story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 60px; }
.story-block {
  background: var(--forest); padding: 50px 40px;
  border: 1px solid rgba(200, 164, 90, 0.06); transition: background 0.3s;
}
.story-block:hover { background: #1a3220; }
.story-block-icon { font-size: 2rem; margin-bottom: 20px; }
.story-block-title {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 600; color: var(--white); margin-bottom: 14px;
}
.story-block-text { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.95; }
.all-destinations { background: var(--darker); }
.dest-full-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3px; margin-top: 60px;
}
.dest-full-card {
  background: linear-gradient(135deg, var(--forest), #091820);
  border: 1px solid rgba(200, 164, 90, 0.08);
  padding: 50px 40px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 30px; align-items: start; transition: background 0.3s, border-color 0.3s; cursor: pointer;
}
.dest-full-card:hover {
  background: linear-gradient(135deg, #1c3820, #0d2242);
  border-color: rgba(200, 164, 90, 0.28);
}
.dest-full-icon {
  font-size: 3rem; width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200, 164, 90, 0.08);
  border: 1px solid var(--border-gold);
}
.dest-full-name {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.dest-full-region {
  font-size: 0.68rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.dest-full-desc {
  font-size: 0.86rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.85; margin-bottom: 20px;
}
.dest-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 4px 14px;
  background: rgba(200, 164, 90, 0.08);
  border: 1px solid var(--border-gold);
  font-size: 0.68rem; letter-spacing: 1px; color: var(--gold);
}
.tips-section { background: var(--dark); }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.tip-card {
  border: 1px solid var(--border-gold); padding: 40px 30px; text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.tip-card:hover { border-color: rgba(200, 164, 90, 0.35); transform: translateY(-4px); }
.tip-icon { font-size: 2.2rem; margin-bottom: 20px; }
.tip-title {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 600; color: var(--white); margin-bottom: 12px;
}
.tip-text { font-size: 0.84rem; color: var(--text-muted); font-weight: 300; line-height: 1.85; }
.gallery-section { background: var(--darker); }
.gallery-intro { max-width: 600px; margin-bottom: 60px; }
.gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%; min-height: 250px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: transform 0.5s ease;
  position: relative; overflow: hidden;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.g1 { background: linear-gradient(135deg, #1a3824, #0a2418); min-height: 320px; }
.g2 { background: linear-gradient(135deg, #2a1c10, #1a2832); }
.g3 { background: linear-gradient(135deg, #162a3c, #0c1c22); }
.g4 { background: linear-gradient(135deg, #28281a, #182e20); }
.g5 { background: linear-gradient(135deg, #1c1a3a, #281c22); }
.g6 { background: linear-gradient(135deg, #0c3020, #281c10); min-height: 400px; }
.g7 { background: linear-gradient(135deg, #1a2c1c, #0c1a2c); }
.gallery-emoji { font-size: 3.5rem; margin-bottom: 16px; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5)); }
.gallery-label { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(7, 10, 14, 0.75);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-title {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 700; color: var(--white); margin-bottom: 8px;
  transform: translateY(10px); transition: transform 0.4s;
}
.gallery-item:hover .gallery-overlay-title { transform: translateY(0); }
.gallery-overlay-sub { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.gallery-credits {
  background: var(--dark); padding: 40px 60px;
  text-align: center; border-top: 1px solid var(--border-gold);
}
.gallery-credits p { font-size: 0.76rem; color: var(--text-muted); font-weight: 300; }
.gallery-credits a { color: var(--gold); }

/* ===== CONTACT PAGE ===== */
.contact-section {
  background: var(--darker);
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.contact-info { padding-top: 20px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 40px; }
.contact-icon {
  font-size: 1.5rem; width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200, 164, 90, 0.08);
  border: 1px solid var(--border-gold); flex-shrink: 0;
}
.contact-item-title {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 600; color: var(--white); margin-bottom: 4px;
}
.contact-item-text { font-size: 0.84rem; color: var(--text-muted); font-weight: 300; }
.contact-form-wrapper {
  background: linear-gradient(135deg, var(--forest), #091826);
  border: 1px solid var(--border-gold); padding: 60px 50px;
}
.form-title {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.form-subtitle { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 40px; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 0.68rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  color: var(--cream); font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 300;
  padding: 14px 18px; outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); background: rgba(200, 164, 90, 0.05);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122, 142, 132, 0.5); }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--gold); color: var(--darker);
  font-family: var(--font-body); font-size: 0.76rem;
  font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.3s; margin-top: 10px;
}
.form-submit:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(200, 164, 90, 0.28);
}
@media (max-width: 900px) {
  section { padding: 70px 28px; }
  .navbar { padding: 16px 24px; }
  .nav-links { gap: 18px; }
  .intro-strip { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid var(--border-gold); }
  .highlights { grid-template-columns: 1fr; gap: 40px; }
  .destinations-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .story-grid { grid-template-columns: 1fr; }
  .dest-full-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
  .contact-section { grid-template-columns: 1fr; gap: 50px; }
  footer { grid-template-columns: 1fr; gap: 40px; padding: 50px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { padding: 20px 28px; }
}