/* ========================================
   Xpressions — Beauty & Hair Salon
   Bold Editorial Style
   Midnight Blue + Mint Palette
======================================== */

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

:root {
  --color-midnight: #0a1628;
  --color-midnight-light: #132240;
  --color-mint: #7ecfc0;
  --color-mint-light: #a8e0d4;
  --color-mint-pale: #e8f5f1;
  --color-cream: #f7f5f2;
  --color-white: #ffffff;
  --color-text: #1a1a1a;
  --color-text-light: #555555;
  --color-text-muted: #888888;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-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;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* --- TYPOGRAPHY --- */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mint);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-midnight);
  margin-bottom: 20px;
}

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

.accent-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--color-mint);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 60px;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--color-mint-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(126, 207, 192, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn--ghost:hover {
  border-color: var(--color-mint);
  color: var(--color-mint);
  transform: translateY(-2px);
}

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

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

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

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

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.15);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.nav__logo-x {
  color: var(--color-mint);
  font-size: 1.8rem;
  font-weight: 900;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}

.nav__link:hover {
  color: var(--color-mint);
}

.nav__cta {
  padding: 10px 24px;
  background: var(--color-mint);
  color: var(--color-midnight);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 60px;
  transition: all 0.35s var(--ease-out);
  letter-spacing: 0.02em;
}

.nav__cta:hover {
  background: var(--color-mint-light);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

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

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

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

/* --- MOBILE NAV OVERLAY --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-midnight);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--color-white);
  line-height: 1;
  transition: color 0.3s;
}

.nav-overlay__close:hover {
  color: var(--color-mint);
}

.nav-overlay__list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-overlay__link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

.nav-overlay__link:hover {
  color: var(--color-mint);
}

.nav-overlay__cta {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 40px;
  background: var(--color-mint);
  color: var(--color-midnight);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 60px;
  letter-spacing: 0.04em;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  background: var(--color-midnight);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-mint);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--color-white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero__title-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--color-mint);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}

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

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

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__trust-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-mint);
  line-height: 1;
}

.hero__trust-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

.hero__trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

.hero__image-col {
  position: relative;
  height: 700px;
}

.hero__image-main {
  width: 100%;
  height: 100%;
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
}

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

.hero__image-float {
  position: absolute;
  bottom: 40px;
  left: -60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 4px solid var(--color-midnight);
}

.hero__image-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-float-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(10,22,40,0.9));
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 500;
}

.hero__image-float-badge svg {
  color: var(--color-mint);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-mint), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Decorative background element */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(126,207,192,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* --- MARQUEE --- */
.marquee {
  background: var(--color-mint);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
}

.marquee__item {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-midnight);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.services__header {
  text-align: center;
  margin-bottom: 72px;
}

.services__header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.service-card:hover .service-card__arrow {
  transform: translate(4px, -4px);
  color: var(--color-mint);
}

.service-card__img {
  height: 220px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.service-card__body {
  padding: 28px 28px 32px;
  position: relative;
}

.service-card__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-mint-pale);
  line-height: 1;
  margin-bottom: 8px;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-midnight);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--color-midnight);
  transition: all 0.3s var(--ease-out);
}

/* --- ABOUT --- */
.about {
  padding: 120px 0;
  background: var(--color-midnight);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(126,207,192,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.about__images {
  position: relative;
  height: 700px;
}

.about__img-main {
  width: 75%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

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

.about__img-side {
  position: absolute;
  top: 60px;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 4px solid var(--color-midnight);
}

.about__img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__accent-box {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--color-mint);
  padding: 24px 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 40px rgba(126,207,192,0.3);
}

.about__accent-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-midnight);
  line-height: 1;
}

.about__accent-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-midnight);
  opacity: 0.7;
  letter-spacing: 0.04em;
}

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

.about__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

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

.about__value-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(126,207,192,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-mint);
}

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

.about__value span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

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

.gallery__header {
  text-align: center;
  margin-bottom: 64px;
}

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

.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(10,22,40,0.8));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-overlay span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-white);
  font-weight: 700;
}

.gallery__item--large {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery__item:nth-child(2) { grid-column: span 3.5; }
.gallery__item:nth-child(3) { grid-column: span 3.5; }
.gallery__item:nth-child(4) { grid-column: span 3.5; }
.gallery__item:nth-child(5) { grid-column: span 3.5; }

/* --- CTA BANNER --- */
.cta-banner {
  padding: 100px 0;
  background: var(--color-mint);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-banner__eyebrow {
  color: var(--color-midnight);
  opacity: 0.6;
  margin-bottom: 16px;
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-midnight);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-banner__text {
  font-size: 1.1rem;
  color: rgba(10,22,40,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

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

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

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

.contact__detail dt {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--color-mint-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-mint);
}

.contact__detail dd a {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
  transition: color 0.3s;
}

.contact__detail dd a:hover {
  color: var(--color-mint);
}

.contact__hours {
  background: var(--color-cream);
  padding: 28px 32px;
  border-radius: 16px;
}

.contact__hours strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mint);
  margin-bottom: 12px;
}

.contact__hours p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- FORM --- */
.contact__form-wrap {
  background: var(--color-cream);
  border-radius: 24px;
  padding: 48px;
}

.contact__form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-midnight);
  margin-bottom: 32px;
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form__input {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-white);
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: all 0.3s;
  outline: none;
}

.form__input:focus {
  border-color: var(--color-mint);
  box-shadow: 0 0 0 4px rgba(126,207,192,0.15);
}

.form__input::placeholder {
  color: var(--color-text-muted);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  color: var(--color-mint);
}

.form__success svg {
  color: var(--color-mint);
}

.form__success p {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 500;
}

/* --- FOOTER --- */
.footer {
  background: var(--color-midnight);
  padding: 64px 0 32px;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 40px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer__logo-x {
  color: var(--color-mint);
  font-size: 2rem;
  font-weight: 900;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  max-width: 240px;
}

.footer__nav {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer__nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

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

/* --- ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.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; }
.reveal-delay-6 { transition-delay: 0.6s; }

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

  .hero__image-col {
    height: 560px;
  }

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

  .about__grid {
    gap: 48px;
  }

  .about__images {
    height: 500px;
  }

  .gallery__grid {
    grid-template-rows: repeat(2, 240px);
  }

  .gallery__item--large {
    grid-column: span 6;
    grid-row: span 2;
  }

  .gallery__item:nth-child(2) { grid-column: span 3; }
  .gallery__item:nth-child(3) { grid-column: span 3; }
  .gallery__item:nth-child(4) { grid-column: span 3; }
  .gallery__item:nth-child(5) { grid-column: span 3; }

  .contact__grid {
    gap: 48px;
  }
}

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

  .nav__toggle {
    display: flex;
  }

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

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

  .hero__image-col {
    height: 420px;
    order: -1;
  }

  .hero__image-float {
    left: -20px;
    bottom: 20px;
  }

  .hero__scroll {
    display: none;
  }

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

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

  .about__images {
    height: 400px;
    order: -1;
  }

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

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

  .gallery__item:nth-child(2) { grid-column: span 1; }
  .gallery__item:nth-child(3) { grid-column: span 1; }
  .gallery__item:nth-child(4) { grid-column: span 1; }
  .gallery__item:nth-child(5) { grid-column: span 1; }

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

  .contact__form-wrap {
    padding: 32px 24px;
  }

  .footer__top {
    flex-direction: column;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.6rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero__trust-divider {
    display: none;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

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

  .gallery__item--large {
    grid-column: span 1;
  }

  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5) {
    grid-column: span 1;
  }
}
