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

:root {
  --charcoal: #3D405B;
  --charcoal-dark: #2B2D42;
  --charcoal-light: #515A7D;
  --coral: #E07A5F;
  --coral-dark: #C96A52;
  --coral-light: #F2A68E;
  --cream: #F4F1DE;
  --cream-dark: #E8E4D0;
  --white: #FFFFFF;
  --sand: #F0EBE0;
  --green: #4A7C59;
  --green-light: #6BA37A;
  --shadow-sm: 0 2px 8px rgba(61, 64, 91, 0.08);
  --shadow-md: 0 8px 30px rgba(61, 64, 91, 0.12);
  --shadow-lg: 0 20px 60px rgba(61, 64, 91, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --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: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(244, 241, 222, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(61, 64, 91, 0.06);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(244, 241, 222, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
}

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

.nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav a:hover {
  background: rgba(224, 122, 95, 0.1);
  color: var(--coral);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  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);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 122, 95, 0.35);
}

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

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

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

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

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

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* ─── MOBILE TOGGLE ─── */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: 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);
}

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(224, 122, 95, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(74, 124, 89, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(224, 122, 95, 0.08) 0%, transparent 50%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0 120px;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 122, 95, 0.2);
  border: 1px solid rgba(224, 122, 95, 0.4);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral-light);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-headline em {
  color: var(--coral-light);
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(244, 241, 222, 0.75);
  margin-bottom: 36px;
  max-width: 500px;
}

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

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

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(244, 241, 222, 0.5);
  margin-top: 6px;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(244, 241, 222, 0.15);
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
}

.hero-image-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--coral);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.3;
}

.hero-float-card {
  position: absolute;
  bottom: 40px;
  left: -50px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 200px;
}

.hero-float-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.float-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
}

.hero-dots {
  position: absolute;
  top: -30px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-dots span:nth-child(2) {
  opacity: 0.7;
  width: 12px;
  height: 12px;
}

.hero-dots span:nth-child(3) {
  opacity: 0.4;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

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

/* ─── SECTION COMMON ─── */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 16px;
  background: rgba(224, 122, 95, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* ─── CABINS ─── */
.cabins {
  background: var(--cream);
}

.cabins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

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

.cabin-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

.cabin-card:hover .cabin-img img {
  transform: scale(1.08);
}

.cabin-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cabin-badge.popular {
  background: var(--coral);
  color: var(--white);
}

.cabin-badge.family {
  background: var(--green);
  color: var(--white);
}

.cabin-info {
  padding: 28px;
}

.cabin-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.cabin-desc {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cabin-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.cabin-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* ─── EXPERIENCE ─── */
.experience {
  background: var(--charcoal);
  color: var(--white);
  padding: 120px 0;
}

.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-content .section-tag {
  background: rgba(224, 122, 95, 0.2);
}

.experience-content .section-title {
  color: var(--white);
  text-align: left;
}

.experience-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(244, 241, 222, 0.7);
  margin-bottom: 48px;
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.exp-feature {
  display: flex;
  gap: 20px;
}

.exp-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(224, 122, 95, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-feature h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.exp-feature p {
  font-size: 0.95rem;
  color: rgba(244, 241, 222, 0.6);
  line-height: 1.7;
}

.experience-images {
  position: relative;
}

.exp-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.exp-img-tall {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.exp-img-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  grid-column: 2;
}

.exp-img-stack img {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: block;
}

/* ─── GALLERY ─── */
.gallery {
  background: var(--sand);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 64, 91, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

/* ─── LOCATION ─── */
.location {
  background: var(--cream);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-info .section-title {
  text-align: left;
}

.location-text {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

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

.loc-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(224, 122, 95, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.loc-detail span {
  font-size: 1rem;
  color: var(--charcoal-light);
}

.location-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--charcoal);
}

/* ─── CTA / CONTACT ─── */
.cta {
  background: var(--charcoal);
  padding: 120px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-content .section-tag {
  background: rgba(224, 122, 95, 0.2);
}

.cta-content .section-title {
  color: var(--white);
  text-align: left;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(244, 241, 222, 0.7);
  line-height: 1.8;
}

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

.cta-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: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--charcoal-light);
  opacity: 0.6;
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 32px;
}

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

.form-success svg {
  width: 56px;
  height: 56px;
}

.form-success p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--charcoal-dark);
  color: var(--white);
  padding: 80px 0 0;
}

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

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

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(244, 241, 222, 0.5);
  line-height: 1.7;
  max-width: 280px;
}

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

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--coral-light);
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(244, 241, 222, 0.6);
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-col span {
  display: block;
  font-size: 0.9rem;
  color: rgba(244, 241, 222, 0.6);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(244, 241, 222, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(244, 241, 222, 0.4);
}

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--coral-dark);
  transform: translateY(-4px);
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-image-wrap {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-stats {
    justify-content: center;
  }

  .hero-float-card {
    left: -20px;
    bottom: 20px;
  }

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

  .experience-inner,
  .location-inner,
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .experience-content .section-title,
  .location-info .section-title,
  .cta-content .section-title {
    text-align: center;
  }

  .experience-content,
  .location-info,
  .cta-content {
    text-align: center;
  }

  .experience-text,
  .location-text,
  .cta-text {
    margin-left: auto;
    margin-right: auto;
  }

  .experience-features {
    max-width: 500px;
    margin: 0 auto;
  }

  .location-info .btn {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(244, 241, 222, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(61, 64, 91, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .hero-inner {
    padding: 40px 0;
  }

  .hero-image-wrap {
    max-width: 400px;
  }

  .hero-float-card {
    display: none;
  }

  .hero-dots {
    display: none;
  }

  .cabins-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }

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

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

  .exp-img-grid {
    grid-template-columns: 1fr;
  }

  .exp-img-tall {
    grid-column: 1;
    grid-row: auto;
  }

  .exp-img-stack {
    grid-column: 1;
  }

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

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

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

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

  section {
    padding: 80px 0;
  }

  .cta {
    padding: 80px 0;
  }
}

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

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

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-stat-divider {
    width: 48px;
    height: 1px;
  }

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

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
  }

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

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