/* ============================================
   Aloha Mall Barber Shop — Styles
   Colors: Midnight Blue #0A2342, Mint #4ADE80
   Fonts: Playfair Display + DM Sans
   ============================================ */

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

:root {
  --midnight: #0A2342;
  --midnight-light: #1E3A5F;
  --midnight-deeper: #061829;
  --mint: #4ADE80;
  --mint-light: #86EFAC;
  --mint-dark: #22C55E;
  --cream: #F5F0EB;
  --cream-dark: #EDE6DD;
  --white: #FFFFFF;
  --text-dark: #0A2342;
  --text-muted: #5A7A9A;
  --text-light: #8FA8C0;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-sm: 0 2px 8px rgba(10, 35, 66, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 35, 66, 0.10);
  --shadow-lg: 0 16px 60px rgba(10, 35, 66, 0.14);
  --shadow-card: 0 4px 20px rgba(10, 35, 66, 0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

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

ul {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--midnight);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 12px 28px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

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

.btn-primary:hover {
  background: var(--mint-light);
  border-color: var(--mint-light);
}

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

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

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

.btn-light:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.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(--midnight);
  border-color: var(--white);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

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

.section-header .section-eyebrow {
  justify-content: center;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 235, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 35, 66, 0.06);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(245, 240, 235, 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;
  text-decoration: none;
  color: var(--midnight);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

.nav a:hover {
  color: var(--midnight);
  background: rgba(10, 35, 66, 0.05);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--midnight);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(10, 35, 66, 0.08);
  padding: 24px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-menu a:hover {
  background: rgba(10, 35, 66, 0.05);
  color: var(--midnight);
}

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

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

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--mint);
  top: -100px;
  right: -100px;
  opacity: 0.15;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--mint-light);
  bottom: 10%;
  left: -50px;
  opacity: 0.12;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: var(--midnight);
  top: 40%;
  right: 30%;
  opacity: 0.04;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 20px;
  background: rgba(74, 222, 128, 0.12);
  padding: 8px 16px;
  border-radius: var(--radius-lg);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--midnight);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-item svg {
  color: var(--mint-dark);
  flex-shrink: 0;
}

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

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

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

.hero-image-float {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.hero-image-sm {
  width: 240px;
  bottom: 60px;
  left: -40px;
  animation-delay: -2s;
}

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

.float-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--midnight);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.hero-image-xs {
  width: 200px;
  top: 30px;
  right: -30px;
  animation-delay: -4s;
}

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

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

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}

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

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

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  border: 1px solid rgba(10, 35, 66, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mint);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.card-highlight {
  background: var(--midnight);
  border-color: transparent;
}

.service-card.card-highlight::before {
  background: var(--mint);
  transform: scaleX(1);
}

.service-card.card-highlight .service-name,
.service-card.card-highlight .service-desc {
  color: var(--white);
}

.card-highlight-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--mint);
  color: var(--midnight);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-lg);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(74, 222, 128, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--mint-dark);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--mint);
  color: var(--midnight);
}

.service-card.card-highlight .service-icon {
  background: rgba(74, 222, 128, 0.2);
  color: var(--mint);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

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

.about-images {
  position: relative;
  height: 600px;
}

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

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

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

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

.about-stats {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--midnight);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  gap: 32px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--mint);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-content .section-eyebrow {
  margin-bottom: 12px;
}

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

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about-features svg {
  flex-shrink: 0;
}

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

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

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

.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.05);
}

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

.gallery-item:not(.gallery-item--large) {
  grid-column: span 5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

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

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

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74, 222, 128, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--midnight);
}

.author-location {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  padding: 100px 0;
  background: var(--midnight);
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--mint);
  opacity: 0.12;
  top: -100px;
  left: -100px;
}

.cta-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--mint-light);
  opacity: 0.08;
  bottom: -80px;
  right: -80px;
}

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

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 520px;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: all var(--transition);
  border: 1px solid rgba(10, 35, 66, 0.05);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.info-card.card-highlight-info {
  background: var(--midnight);
  border-color: transparent;
}

.info-card.card-highlight-info h3 {
  color: var(--white);
}

.info-card.card-highlight-info p {
  color: var(--text-light);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(74, 222, 128, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mint-dark);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 6px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.info-card a {
  color: var(--mint-dark);
  font-weight: 600;
  transition: color var(--transition);
}

.info-card a:hover {
  color: var(--midnight);
}

.info-note {
  font-size: 0.8rem !important;
  color: var(--text-light) !important;
  margin-top: 4px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.9rem;
  padding: 4px 0;
}

.hours-row span:first-child {
  color: var(--text-muted);
}

.hours-row span:last-child {
  font-weight: 600;
  color: var(--text-dark);
}

.hours-closed span:last-child {
  color: var(--text-light);
  font-weight: 500;
}

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

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--midnight-deeper);
  padding: 64px 0 0;
  color: var(--text-light);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.logo-footer .logo-text {
  color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

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

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

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

.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-contact a {
  color: var(--mint);
  font-weight: 600;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom p:last-child {
  color: var(--text-light);
  opacity: 0.6;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

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

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

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

  .about-inner {
    gap: 48px;
  }

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    justify-self: center;
  }

  .cta-inner {
    gap: 40px;
  }

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

  .footer-inner > :first-child {
    grid-column: span 2;
  }
}

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

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu.hidden {
    display: none;
  }

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

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

  .hero-image-wrap {
    height: 400px;
    order: -1;
  }

  .hero-image-sm {
    width: 160px;
    left: -10px;
    bottom: 30px;
  }

  .hero-image-xs {
    width: 140px;
    right: -10px;
    top: 10px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

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

  .services {
    padding: 70px 0;
  }

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

  .about {
    padding: 70px 0;
  }

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

  .about-images {
    height: 400px;
  }

  .about-img-main {
    width: 80%;
    height: 320px;
  }

  .about-img-secondary {
    width: 55%;
    height: 200px;
  }

  .about-stats {
    left: 10px;
    bottom: 20px;
    padding: 16px 20px;
    gap: 20px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

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

  .gallery {
    padding: 70px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }

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

  .testimonials {
    padding: 70px 0;
  }

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .cta {
    padding: 70px 0;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-image {
    height: 320px;
    order: -1;
  }

  .visit {
    padding: 70px 0;
  }

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

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

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

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

  .footer-inner > :first-child {
    grid-column: span 1;
  }

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

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

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

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

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

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

  .hero-image-sm {
    width: 130px;
    left: -5px;
  }

  .hero-image-xs {
    width: 110px;
    right: -5px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

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

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

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

  .gallery-item:not(.gallery-item--large) {
    grid-column: span 1;
  }

  .info-card {
    flex-direction: column;
    gap: 12px;
  }
}
