/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --midnight: #1B3A5C;
  --midnight-light: #2A5278;
  --midnight-dark: #132B44;
  --mint: #A8E6CF;
  --mint-light: #C8F3E2;
  --mint-dark: #7DCFB0;
  --cream: #FAFAF8;
  --warm-white: #F7F5F2;
  --sand: #EDE9E3;
  --text: #2D3436;
  --text-light: #636E72;
  --text-muted: #999;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(27, 58, 92, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 58, 92, 0.1);
  --shadow-lg: 0 8px 40px rgba(27, 58, 92, 0.12);
  --shadow-xl: 0 16px 60px rgba(27, 58, 92, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--midnight);
}

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

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--mint);
  color: var(--midnight-dark);
  border-color: var(--mint);
}

.btn--primary:hover {
  background: var(--mint-light);
  border-color: var(--mint-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

.btn--full {
  width: 100%;
  padding: 16px 32px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 58, 92, 0.06);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 250, 248, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--midnight);
}

.logo-text {
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

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

.nav-links a:hover {
  color: var(--midnight);
  background: rgba(168, 230, 207, 0.2);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--midnight);
  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;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, #F0F7F4 50%, var(--sand) 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.shape--1 {
  width: 600px;
  height: 600px;
  background: var(--mint);
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.shape--2 {
  width: 400px;
  height: 400px;
  background: var(--midnight);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.shape--3 {
  width: 200px;
  height: 200px;
  background: var(--mint-dark);
  top: 40%;
  left: 45%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.02); }
  66% { transform: translate(-10px, 15px) scale(0.98); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--mint);
  color: var(--midnight);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  color: var(--midnight);
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--mint-dark), var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}

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

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

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--midnight);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sand);
}

/* Hero images */
.hero-image-wrapper {
  position: relative;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  grid-template-rows: 250px 200px;
}

.hero-img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.hero-img:hover {
  transform: scale(1.02);
}

.hero-img--1 {
  grid-row: 1 / 3;
  border-radius: var(--radius-xl);
}

.hero-img--2 {
  border-radius: var(--radius-lg);
}

.hero-img--3 {
  border-radius: var(--radius-lg);
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
  z-index: 2;
}

.hero-float-card strong {
  display: block;
  color: var(--midnight);
  font-size: 0.95rem;
}

.hero-float-card span:last-child {
  font-size: 0.8rem;
  color: var(--text-light);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  background: rgba(168, 230, 207, 0.3);
  color: var(--midnight);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.text-highlight {
  position: relative;
  color: var(--midnight);
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--mint);
  opacity: 0.4;
  border-radius: 4px;
  z-index: -1;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--white);
}

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

.about-images {
  position: relative;
}

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

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

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

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

.about-experience-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: var(--midnight);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge .badge-number {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 4px;
}

.about-experience-badge .badge-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.about-content .section-tag {
  margin-bottom: 16px;
}

.about-text {
  color: var(--text-light);
  font-size: 1.02rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

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

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

.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(168, 230, 207, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item strong {
  display: block;
  color: var(--midnight);
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-item span {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== CATEGORIES ===== */
.categories {
  padding: 120px 0;
  background: var(--cream);
}

.section-header {
  margin-bottom: 60px;
}

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

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

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

.category-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

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

.category-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 92, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-overlay svg {
  color: var(--white);
  transform: translateX(-8px);
  transition: transform var(--transition);
}

.category-card:hover .category-overlay svg {
  transform: translateX(0);
}

.category-info {
  padding: 20px 24px;
}

.category-info h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--midnight);
  margin-bottom: 6px;
}

.category-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0;
  background: var(--white);
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

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

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

.gallery-item--large img {
  height: 400px;
}

.gallery-item:not(.gallery-item--large) img {
  height: 240px;
}

.gallery-item--wide {
  grid-column: 1 / 13;
}

.gallery-item--wide img {
  height: 260px;
}

/* ===== WHY US ===== */
.why-us {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: var(--mint);
  opacity: 0.06;
  border-radius: 50%;
}

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

.why-us .section-tag {
  background: rgba(168, 230, 207, 0.2);
  color: var(--mint);
}

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

.why-us .section-title .text-highlight {
  color: var(--mint);
}

.why-us .section-title .text-highlight::after {
  background: var(--mint);
  opacity: 0.3;
}

.why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--mint);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.why-item strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.why-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

.why-img-stack {
  position: relative;
}

.why-img-stack img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.why-floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}

.wfc-icon {
  background: var(--mint);
  border-radius: 50%;
  padding: 8px;
}

.wfc-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wfc-value {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--midnight);
}

/* ===== VISIT ===== */
.visit {
  padding: 120px 0;
  background: var(--cream);
}

.visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.visit-info {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
}

.visit-info .section-tag {
  margin-bottom: 16px;
}

.visit-info .section-subtitle {
  margin-bottom: 40px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
}

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

.visit-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(168, 230, 207, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-detail strong {
  display: block;
  color: var(--midnight);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.visit-detail span {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.visit-map {
  min-height: 450px;
  background: var(--sand);
}

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

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

.contact-content .section-tag {
  margin-bottom: 16px;
}

.contact-content .section-subtitle {
  margin-bottom: 40px;
}

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

.contact-method {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.contact-method:hover {
  background: rgba(168, 230, 207, 0.15);
  transform: translateX(4px);
}

.cm-icon {
  width: 48px;
  height: 48px;
  background: rgba(168, 230, 207, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  color: var(--midnight);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-method span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Form */
.contact-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 44px;
}

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

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

.form-group label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--midnight);
}

.form-group input,
.form-group textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  padding: 14px 18px;
  border: 2px solid var(--sand);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(168, 230, 207, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 12px;
}

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

.form-success strong {
  font-size: 1.2rem;
  color: var(--midnight);
}

.form-success span {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--midnight-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

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

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

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-contact ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-contact ul li svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.6;
}

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

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ===== 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) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image-wrapper {
    max-width: 500px;
  }

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

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

  .visit-card {
    grid-template-columns: 1fr;
  }

  .visit-map {
    min-height: 300px;
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 8px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    align-items: stretch;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: 20px;
  }

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

  .hero-image-grid {
    grid-template-rows: 200px 160px;
  }

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

  .gallery-item--large {
    grid-column: 1 / -1;
  }

  .gallery-item--large img,
  .gallery-item:not(.gallery-item--large) img,
  .gallery-item--wide img {
    height: 220px;
  }

  .gallery-item--wide {
    grid-column: 1 / -1;
  }

  .about-img-accent {
    width: 120px;
    right: -10px;
    bottom: -20px;
  }

  .about-experience-badge {
    top: -10px;
    right: 20px;
    padding: 14px 18px;
  }

  .why-floating-card {
    left: 10px;
    bottom: 20px;
  }

  .contact-form-wrapper {
    padding: 28px;
  }

  .visit-info {
    padding: 40px 28px;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .hero-image-grid {
    grid-template-rows: 180px 140px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
