/* ========================================
   2nd Gear: Sanguine Arts Tattoo Studio
   Stylesheet
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
  --color-terracotta: #C0603A;
  --color-terracotta-dark: #A04E2E;
  --color-terracotta-light: #D4845E;
  --color-sand: #F5E6D3;
  --color-sand-light: #FBF5EE;
  --color-sand-dark: #E8D5BF;
  --color-cream: #FFF9F4;
  --color-charcoal: #2D2420;
  --color-warm-gray: #5C4A3E;
  --color-warm-gray-light: #8A7568;
  --color-white: #FFFFFF;
  --color-black: #1A1412;
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(45, 36, 32, 0.06), 0 1px 2px rgba(45, 36, 32, 0.04);
  --shadow-md: 0 4px 16px rgba(45, 36, 32, 0.08), 0 2px 4px rgba(45, 36, 32, 0.04);
  --shadow-lg: 0 12px 40px rgba(45, 36, 32, 0.12), 0 4px 12px rgba(45, 36, 32, 0.06);
  --shadow-xl: 0 24px 60px rgba(45, 36, 32, 0.16);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

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

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  background: rgba(192, 96, 58, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

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

.section-desc {
  font-size: 1.0625rem;
  color: var(--color-warm-gray);
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-terracotta);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(192, 96, 58, 0.3);
}

.btn--primary:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 96, 58, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--color-charcoal);
  border: 1.5px solid var(--color-sand-dark);
}

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

.btn--white {
  background: var(--color-white);
  color: var(--color-terracotta);
  box-shadow: var(--shadow-md);
}

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

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

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

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

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 249, 244, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 213, 191, 0.5);
  transition: all var(--transition-normal);
}

.nav.scrolled {
  background: rgba(255, 249, 244, 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 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

.nav__logo-icon {
  color: var(--color-terracotta);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 96, 58, 0.1);
  border-radius: var(--radius-sm);
}

.nav__logo-text {
  display: none;
}

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

.nav__link {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-warm-gray);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav__link:hover {
  color: var(--color-terracotta);
  background: rgba(192, 96, 58, 0.06);
}

.nav__link--cta {
  background: var(--color-terracotta);
  color: var(--color-white) !important;
  font-weight: 500;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.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 Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--color-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--color-charcoal);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

.mobile-menu__close:hover {
  background: rgba(192, 96, 58, 0.1);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-charcoal);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--color-terracotta);
}

.mobile-menu__link--cta {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  background: var(--color-terracotta);
  color: var(--color-white) !important;
  padding: 16px 32px;
  border-radius: var(--radius-full);
}

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

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse at 20% 50%, rgba(192, 96, 58, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 230, 211, 0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(192, 96, 58, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content {
  max-width: 520px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-terracotta);
  background: rgba(192, 96, 58, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero__badge svg {
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-charcoal);
  margin-bottom: 20px;
}

.hero__headline em {
  font-style: italic;
  color: var(--color-terracotta);
}

.hero__subheadline {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-warm-gray);
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

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

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

.hero__trust-number {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

.hero__trust-label {
  font-size: 0.8125rem;
  color: var(--color-warm-gray-light);
}

.hero__trust-divider {
  width: 1px;
  height: 40px;
  background: var(--color-sand-dark);
  flex-shrink: 0;
}

/* Hero Image Stack */
.hero__image-stack {
  position: relative;
  height: 680px;
}

.hero__image {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.hero__image--main {
  width: 340px;
  height: 440px;
  top: 0;
  right: 0;
  z-index: 2;
}

.hero__image--accent {
  width: 260px;
  height: 200px;
  bottom: 180px;
  left: -20px;
  z-index: 3;
  border: 4px solid var(--color-cream);
}

.hero__image--detail {
  width: 200px;
  height: 150px;
  bottom: 20px;
  right: 40px;
  z-index: 1;
}

.hero__float-card {
  position: absolute;
  bottom: 260px;
  left: 20px;
  z-index: 4;
  background: var(--color-white);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

.hero__float-card svg {
  color: var(--color-terracotta);
  flex-shrink: 0;
}

/* Scroll Hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-warm-gray-light);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ========================================
   Services Section
   ======================================== */
.services {
  padding: 100px 0;
  background: var(--color-white);
}

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

.service-card {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192, 96, 58, 0.15);
  background: var(--color-white);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.service-card:hover .service-card__icon {
  background: var(--color-terracotta);
  color: var(--color-white);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-warm-gray);
}

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

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

.gallery__item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 36, 32, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.gallery__item-overlay span {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
}

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

.gallery__item--wide {
  grid-column: span 7;
}

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

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

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

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

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

.about__image-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-white);
}

.about__image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  max-width: 480px;
}

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

.about__content .section-title {
  margin-bottom: 24px;
}

.about__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-warm-gray);
  margin-bottom: 16px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

.about__value-icon {
  width: 40px;
  height: 40px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  flex-shrink: 0;
}

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

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse at 30% 50%, rgba(192, 96, 58, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(245, 230, 211, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta__content {
  flex: 1;
  max-width: 560px;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
  padding: 100px 0;
  background: var(--color-cream);
}

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

.contact__info {
  max-width: 440px;
}

.contact__info .section-title {
  margin-bottom: 16px;
}

.contact__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-warm-gray);
  margin-bottom: 36px;
}

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

.contact__detail {
  display: flex;
  gap: 16px;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  flex-shrink: 0;
}

.contact__detail strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-terracotta);
  margin-bottom: 4px;
}

.contact__detail p {
  font-size: 0.9375rem;
  color: var(--color-warm-gray);
  line-height: 1.6;
}

.contact__detail a {
  color: var(--color-warm-gray);
  transition: color var(--transition-fast);
}

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

/* Contact Form */
.contact__form-col {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 28px;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-warm-gray);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  background: var(--color-cream);
  border: 1.5px solid var(--color-sand-dark);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--color-terracotta);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(192, 96, 58, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-warm-gray-light);
}

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

.form__success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(192, 96, 58, 0.08);
  border-radius: var(--radius-md);
  color: var(--color-terracotta);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 16px;
}

.form__success.show {
  display: flex;
}

.form__success svg {
  flex-shrink: 0;
}

/* ========================================
   Map Section
   ======================================== */
.map-section {
  padding: 0 0 100px;
  background: var(--color-cream);
}

.map-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 1200px;
  margin: 0 auto;
}

.map-section__content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-charcoal);
  color: var(--color-white);
}

.map-section__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.map-section__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.map-section__map {
  min-height: 360px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 64px 0 0;
}

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

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer__logo-icon {
  color: var(--color-terracotta-light);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 96, 58, 0.2);
  border-radius: var(--radius-sm);
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-terracotta-light);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer__contact a:hover {
  color: var(--color-terracotta-light);
}

.footer__contact svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

/* ========================================
   Scroll Reveal (Progressive Enhancement)
   ======================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .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; }
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (min-width: 640px) {
  .nav__logo-text {
    display: block;
  }
  
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .gallery__grid {
    grid-template-rows: repeat(2, 300px);
  }
  
  .gallery__item--large {
    grid-row: span 2;
  }
}

@media (min-width: 768px) {
  .hero__image-stack {
    height: 600px;
  }
  
  .hero__image--main {
    width: 380px;
    height: 480px;
  }
  
  .about__inner {
    gap: 80px;
  }
}

@media (max-width: 1023px) {
  .nav__links {
    display: none;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero__content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero__actions {
    justify-content: center;
  }
  
  .hero__trust {
    justify-content: center;
  }
  
  .hero__image-stack {
    height: 500px;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .hero__image--main {
    width: 280px;
    height: 360px;
  }
  
  .hero__image--accent {
    width: 200px;
    height: 160px;
  }
  
  .hero__image--detail {
    width: 160px;
    height: 120px;
  }
  
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about__image-col {
    height: 480px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .cta__inner {
    flex-direction: column;
    text-align: center;
  }
  
  .cta__actions {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
  
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact__info {
    max-width: 100%;
    text-align: center;
  }
  
  .contact__details {
    align-items: center;
  }
  
  .map-section__inner {
    grid-template-columns: 1fr;
  }
  
  .map-section__content {
    padding: 36px;
  }
  
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 639px) {
  .hero {
    padding: 96px 20px 60px;
  }
  
  .hero__image-stack {
    height: 400px;
  }
  
  .hero__image--main {
    width: 220px;
    height: 280px;
  }
  
  .hero__image--accent {
    width: 160px;
    height: 120px;
    bottom: 120px;
    left: -10px;
  }
  
  .hero__image--detail {
    width: 130px;
    height: 100px;
    bottom: 10px;
    right: 20px;
  }
  
  .hero__float-card {
    display: none;
  }
  
  .services,
  .gallery,
  .about,
  .cta,
  .contact {
    padding: 72px 0;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .gallery__item--large,
  .gallery__item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .gallery__item {
    height: 260px;
  }
  
  .about__image-col {
    height: 360px;
  }
  
  .contact__form-col {
    padding: 28px;
  }
  
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
