/* ============================================
   MODEL NAILS — CSS
   Palette: Burgundy (#7B1042) + Blush (#F5D0C4)
   Fonts: Playfair Display + Outfit
   ============================================ */

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

:root {
  --burgundy: #7B1042;
  --burgundy-deep: #5C0D33;
  --burgundy-light: #9E1956;
  --blush: #F5D0C4;
  --blush-light: #FBE8E2;
  --blush-pale: #FFF5F2;
  --cream: #FFFAF8;
  --dark: #1A0A10;
  --dark-soft: #2D1520;
  --gray: #6B5060;
  --gray-light: #9E8090;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(123, 16, 66, 0.08);
  --shadow-md: 0 8px 32px rgba(123, 16, 66, 0.12);
  --shadow-lg: 0 16px 64px rgba(123, 16, 66, 0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  font-weight: 700;
}

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;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123, 16, 66, 0.08);
  transition: var(--transition);
}

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

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--burgundy);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  color: var(--burgundy);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-soft);
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a:hover {
  color: var(--burgundy);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--burgundy) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--burgundy-deep) !important;
  transform: translateY(-1px);
}

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

.nav-toggle-line {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}

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

.nav-toggle.active .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

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

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--burgundy);
  padding: 8px;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  padding: 12px 24px;
  transition: color var(--transition);
  display: block;
}

.mobile-link:hover {
  color: var(--burgundy);
}

.mobile-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: var(--burgundy);
  color: var(--white) !important;
  padding: 14px 36px;
  border-radius: 100px;
  margin-top: 16px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
  background: var(--cream);
}

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

.shape {
  position: absolute;
}

.circle-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--blush-light);
  top: -200px;
  right: -100px;
  opacity: 0.6;
}

.circle-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--blush);
  bottom: -80px;
  left: -60px;
  opacity: 0.4;
}

.rect-1 {
  width: 200px;
  height: 200px;
  background: var(--burgundy);
  opacity: 0.06;
  top: 15%;
  left: 5%;
  transform: rotate(15deg);
  border-radius: var(--radius-lg);
}

.rect-2 {
  width: 120px;
  height: 360px;
  background: var(--burgundy);
  opacity: 0.04;
  bottom: 5%;
  right: 10%;
  transform: rotate(-10deg);
  border-radius: var(--radius-md);
}

.diag {
  width: 400px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--blush), transparent);
  top: 30%;
  right: -100px;
  transform: rotate(-30deg);
}

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

.hero-content {
  max-width: 540px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--burgundy);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero-accent {
  color: var(--burgundy);
  font-style: italic;
  position: relative;
}

.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--blush);
  z-index: -1;
  border-radius: 3px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
}

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

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

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

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

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

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

.hero-float-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.float-card-icon {
  width: 44px;
  height: 44px;
  background: var(--blush-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card-label {
  font-size: 0.75rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.float-card-value {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  position: relative;
  padding: 0 16px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--burgundy);
  opacity: 0.4;
}

.section-tag::before {
  left: -4px;
}

.section-tag::after {
  right: -4px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.accent {
  color: var(--burgundy);
  font-style: italic;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush), var(--burgundy));
}

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

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blush);
  background: var(--white);
}

.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .service-card-accent {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--blush-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--burgundy);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--burgundy);
  color: var(--white);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
}

.services-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.services-cta p {
  font-size: 1.05rem;
  color: var(--gray);
}

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

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

.about-image-col {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.about-img-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(123, 16, 66, 0.03) 20px,
    rgba(123, 16, 66, 0.03) 40px
  );
  pointer-events: none;
}

.about-floating-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--burgundy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

.about-content {
  max-width: 480px;
}

.about-content .section-tag {
  text-align: left;
  padding-left: 0;
}

.about-content .section-tag::before {
  display: none;
}

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

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-soft);
}

.about-value-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush-light);
  border-radius: 50%;
}

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

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  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);
}

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

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

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

.gallery-overlay span {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

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

.gallery-item:not(.gallery-item--tall) {
  grid-column: span 4;
  height: 280px;
}

.gallery-item--tall img {
  height: 100%;
}

/* ============================================
   VISIT / CONTACT
   ============================================ */
.visit {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.visit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blush), var(--burgundy), var(--blush));
}

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

.visit-info {
  max-width: 520px;
}

.visit-info .section-tag {
  text-align: left;
  padding-left: 0;
}

.visit-info .section-tag::before {
  display: none;
}

.visit-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

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

.visit-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--blush-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.visit-detail span,
.visit-detail a {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

.visit-detail a:hover {
  color: var(--burgundy);
  text-decoration: underline;
}

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

.visit-map-link {
  display: block;
  position: relative;
}

.visit-map-link img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.visit-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(123, 16, 66, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition);
}

.visit-map-link:hover .visit-map-overlay {
  background: rgba(123, 16, 66, 0.4);
}

/* Contact Form */
.visit-form-col {
  max-width: 480px;
}

.visit-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--blush-light);
}

.visit-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.visit-form-card > p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-soft);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(123, 16, 66, 0.1);
  background: var(--white);
}

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

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

.form-success {
  text-align: center;
  padding: 32px 16px;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  background: var(--blush-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h4 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

.form-success a {
  color: var(--burgundy);
  font-weight: 600;
}

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

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

.footer-brand p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

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

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

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

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

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

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

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].revealed:nth-child(2) { transition-delay: 0.1s; }
[data-reveal].revealed:nth-child(3) { transition-delay: 0.2s; }
[data-reveal].revealed:nth-child(4) { transition-delay: 0.3s; }
[data-reveal].revealed:nth-child(5) { transition-delay: 0.4s; }
[data-reveal].revealed:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }

  .hero-img-main img {
    height: 520px;
  }

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

  .about-container {
    gap: 48px;
  }

  .about-img-wrapper img {
    height: 480px;
  }

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

  .gallery-item:not(.gallery-item--tall) {
    grid-column: span 6;
  }

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

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

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

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-sub {
    max-width: 100%;
  }

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

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

  .hero-image-col {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-img-main img {
    height: 480px;
  }

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

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

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

  .about-image-col {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .about-img-wrapper img {
    height: 400px;
  }

  .about-floating-badge {
    right: 0;
    bottom: -16px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

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

  .gallery-item--tall {
    grid-column: span 2;
    grid-row: span 1;
    height: 320px;
  }

  .gallery-item:not(.gallery-item--tall) {
    grid-column: span 1;
    height: 200px;
  }

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

  .visit-info {
    max-width: 100%;
  }

  .visit-form-col {
    max-width: 100%;
  }

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

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

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

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

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

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

  .hero-float-card {
    left: 16px;
    right: 16px;
  }

  .services, .about, .gallery, .visit {
    padding: 60px 0;
  }

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

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

  .gallery-item--tall {
    grid-column: span 1;
    height: 320px;
  }

  .gallery-item:not(.gallery-item--tall) {
    grid-column: span 1;
    height: 200px;
  }

  .visit-form-card {
    padding: 24px;
  }
}
