/* ============================================
   LV NAILS — Editorial Beauty Salon Website
   Color Palette: Teal (#0D7377) + Slate Grey (#2C3E50)
   Fonts: Playfair Display (serif headlines) + Inter (sans body)
   ============================================ */

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

:root {
  --teal: #0D7377;
  --teal-dark: #095456;
  --teal-light: #14919B;
  --teal-pale: #E8F4F5;
  --slate: #2C3E50;
  --slate-dark: #1A252F;
  --slate-light: #5D6D7E;
  --slate-pale: #F0F3F5;
  --cream: #FAFAF8;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --grey-100: #F7F7F5;
  --grey-200: #E8E8E4;
  --grey-300: #D1D1CC;
  --grey-500: #76766E;
  --grey-700: #3A3A36;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--slate);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  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.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--slate-dark);
  margin-bottom: 24px;
}

.section-headline em {
  font-style: italic;
  color: var(--teal);
}

.section-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--slate-light);
  max-width: 560px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  padding: 14px 32px;
}

.btn--teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 115, 119, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--slate);
  padding: 14px 32px;
  border: 1.5px solid var(--grey-300);
}

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

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

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

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

/* ── NAV ── */
.nav {
  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(0,0,0,0.05);
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(250, 250, 248, 0.95);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
}

.nav-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 10px;
}

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-dark);
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-light);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: width 0.3s var(--ease-out);
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

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

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

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

/* ── MOBILE NAV OVERLAY ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  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-inner {
  text-align: center;
}

.nav-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--slate);
  padding: 8px;
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-overlay-links a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--slate);
  transition: color 0.2s;
}

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

.nav-overlay-links .btn {
  margin-top: 16px;
}

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(13, 115, 119, 0.04) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(13, 115, 119, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero Text */
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--slate-dark);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-em {
  font-style: italic;
  color: var(--teal);
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--slate-light);
  max-width: 480px;
  margin-bottom: 40px;
}

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

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

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

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

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--slate-light);
  line-height: 1.4;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--grey-300);
}

/* Hero Images */
.hero-images {
  position: relative;
  height: 680px;
}

.hero-img {
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

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

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

.hero-img--primary {
  width: 340px;
  height: 480px;
  top: 0;
  right: 40px;
  z-index: 2;
}

.hero-img--accent {
  width: 260px;
  height: 200px;
  bottom: 140px;
  right: 0;
  z-index: 3;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.hero-img--detail {
  width: 160px;
  height: 160px;
  bottom: 20px;
  right: 160px;
  z-index: 4;
  border-radius: 50%;
  border: 4px solid var(--cream);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.hero-badge {
  position: absolute;
  bottom: 260px;
  left: -20px;
  z-index: 5;
  background: var(--white);
  border-radius: 100px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.hero-badge svg {
  color: #F59E0B;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--grey-300), 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); }
}

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

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

.services-header .section-sub {
  margin: 0 auto;
}

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

.service-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

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

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

.service-card-body {
  padding: 28px;
}

.service-card-num {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--teal);
  font-style: italic;
  margin-bottom: 8px;
  display: block;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--slate-light);
}

/* ── EDITORIAL BANNER ── */
.editorial-banner {
  padding: 120px 0;
  background: var(--slate-dark);
  position: relative;
  overflow: hidden;
}

.editorial-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(13, 115, 119, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

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

.editorial-banner-eyebrow {
  color: var(--teal-light);
}

.editorial-banner-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 0;
}

.editorial-banner-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.editorial-feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(13, 115, 119, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
}

.editorial-feature-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.editorial-feature-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--slate-light);
}

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

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

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

.about-img {
  position: absolute;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.about-img:hover img {
  transform: scale(1.03);
}

.about-img--main {
  width: 360px;
  height: 480px;
  top: 0;
  left: 0;
  z-index: 2;
}

.about-img--secondary {
  width: 260px;
  height: 300px;
  bottom: 0;
  right: 0;
  z-index: 3;
  border: 5px solid var(--cream);
}

.about-quote {
  position: absolute;
  bottom: 100px;
  left: -30px;
  z-index: 4;
  background: var(--teal);
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 280px;
  color: var(--white);
  box-shadow: 0 12px 40px rgba(13, 115, 119, 0.3);
}

.about-quote svg {
  opacity: 0.4;
  margin-bottom: 8px;
}

.about-quote p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.55;
}

.about-content .section-headline {
  margin-bottom: 28px;
}

.about-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--slate-light);
  margin-bottom: 20px;
}

.about-cta {
  margin-top: 36px;
}

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

.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 {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  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.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 37, 47, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

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

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

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

.gallery-item:nth-child(2) {
  grid-column: span 4;
  grid-row: span 1;
}

.gallery-item:nth-child(3) {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-item:nth-child(4) {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-item:nth-child(5) {
  grid-column: span 4;
  grid-row: span 1;
}

.gallery-item:nth-child(6) {
  grid-column: span 3;
  grid-row: span 1;
}

/* ── HOURS ── */
.hours {
  padding: 120px 0;
  background: var(--slate-pale);
}

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

.hours-content .section-headline {
  margin-bottom: 40px;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-200);
}

.hours-row:first-child {
  border-top: 1px solid var(--grey-200);
}

.hours-day {
  font-weight: 500;
  color: var(--slate);
}

.hours-time {
  color: var(--slate-light);
}

.hours-row--closed .hours-day,
.hours-row--closed .hours-time {
  color: var(--grey-500);
}

.hours-map {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hours-map-frame {
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.hours-address {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.hours-address svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}

.hours-address-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 4px;
}

.hours-address p {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.5;
}

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

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

.contact-info .section-headline {
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--slate-light);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-decoration: none;
  transition: transform 0.2s;
}

.contact-detail:hover {
  transform: translateX(4px);
}

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

.contact-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.5;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: 24px;
  padding: 48px;
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 32px;
}

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

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--grey-200);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--slate);
  background: var(--white);
  transition: all 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
}

.form-input::placeholder {
  color: var(--grey-300);
}

.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='%2376766E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Epolyline 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: 40px;
}

.form-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: 16px;
}

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

.form-success svg {
  color: var(--teal);
}

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

.form-success a {
  color: var(--teal);
  font-weight: 500;
  text-decoration: underline;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 10px;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--slate-light);
  line-height: 1.6;
  max-width: 280px;
}

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

.footer-links a {
  font-size: 0.9375rem;
  color: var(--slate-light);
  transition: color 0.2s;
}

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

.footer-phone {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 8px;
  display: block;
}

.footer-address {
  font-size: 0.9375rem;
  color: var(--slate-light);
  line-height: 1.6;
}

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

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(13, 115, 119, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s var(--ease-out);
  z-index: 100;
}

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

.back-to-top:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

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

.reveal.revealed {
  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-layout {
    gap: 40px;
  }

  .hero-images {
    height: 560px;
  }

  .hero-img--primary {
    width: 280px;
    height: 400px;
  }

  .hero-img--accent {
    width: 220px;
    height: 170px;
  }

  .hero-img--detail {
    width: 130px;
    height: 130px;
  }

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

  .editorial-banner-inner {
    gap: 48px;
  }

  .about-images {
    height: 500px;
  }

  .about-img--main {
    width: 280px;
    height: 400px;
  }

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

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

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

  .gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 1; }
  .gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 3; grid-row: span 1; }
}

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

  .nav-toggle {
    display: flex;
  }

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

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

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

  .hero-img--primary {
    width: 220px;
    height: 300px;
    right: 20px;
  }

  .hero-img--accent {
    width: 160px;
    height: 120px;
    bottom: 60px;
    right: 0;
  }

  .hero-img--detail {
    width: 100px;
    height: 100px;
    bottom: 0;
    right: 100px;
  }

  .hero-badge {
    left: 0;
    bottom: 100px;
    font-size: 0.8125rem;
    padding: 10px 16px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-stats {
    gap: 24px;
  }

  .services {
    padding: 80px 0;
  }

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

  .editorial-banner {
    padding: 80px 0;
  }

  .editorial-banner-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about {
    padding: 80px 0;
  }

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

  .about-images {
    height: 400px;
    order: -1;
  }

  .about-img--main {
    width: 220px;
    height: 300px;
  }

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

  .about-quote {
    left: 10px;
    bottom: 60px;
    max-width: 220px;
    padding: 18px 20px;
  }

  .gallery {
    padding: 80px 0;
  }

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

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

  .gallery-item {
    height: 200px;
  }

  .hours {
    padding: 80px 0;
  }

  .hours-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact {
    padding: 80px 0;
  }

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

  .contact-form-wrap {
    padding: 32px 24px;
  }

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

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

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

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

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

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

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

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

  .section-headline {
    font-size: 2rem;
  }

  .services-header,
  .gallery-header {
    margin-bottom: 48px;
  }
}
