/* css/design.css */

/* ── MODAL (Address Change) ── */
#address-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13, 12, 10, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
#address-modal.show {
  opacity: 1;
  pointer-events: auto;
  animation: fadeIn 0.4s forwards;
}
.modal-content {
  background: var(--ink2);
  border: 1px solid var(--gold2);
  max-width: 500px;
  width: 100%;
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(184, 137, 42, 0.15);
  transform: translateY(20px);
  opacity: 0;
}
#address-modal.show .modal-content {
  animation: modalSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.1s;
}
.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s;
}
.modal-close:hover {
  color: var(--gold3);
}

/* ── NAVBAR ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.2rem 0; /* Reduced top/bottom padding */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s, padding 0.4s, box-shadow 0.4s;
  background: linear-gradient(to bottom, rgba(13, 12, 10, 0.95) 0%, rgba(13, 12, 10, 0) 100%);
}
#nav.solid {
  background: rgba(13, 12, 10, 0.98);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0; /* Tight wrap on scroll */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 85px; /* Shrunk Logo slightly down for elegance */
  width: auto;
  filter: drop-shadow(0 0 10px rgba(184, 137, 42, 0.5));
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
#nav.solid .nav-logo img {
  height: 60px; /* Slimmer on scroll */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9); /* Higher contrast */
  transition: color 0.3s;
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold2);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  transform-origin: center;
}
.nav-links a:hover {
  color: var(--gold3);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.5rem 1.3rem;
  color: var(--gold2) !important;
  transition: all 0.3s !important;
  text-shadow: none !important;
  background: rgba(13,12,10,0.5);
}
.nav-cta:hover {
  background: var(--gold2) !important;
  color: var(--ink) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 2px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold2);
  transition: all 0.3s;
}

/* ── MOBILE MENU ── */
.mob-menu {
  position: fixed;
  inset: 0;
  background: rgba(13, 12, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mob-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mob-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--warm);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.mob-menu.open a {
  opacity: 1;
  transform: translateY(0);
}
.mob-menu a:nth-child(2) { transition-delay: 0.1s; }
.mob-menu a:nth-child(3) { transition-delay: 0.15s; }
.mob-menu a:nth-child(4) { transition-delay: 0.2s; }
.mob-menu a:nth-child(5) { transition-delay: 0.25s; }
.mob-menu a:nth-child(6) { transition-delay: 0.3s; }
.mob-menu a:nth-child(7) { transition-delay: 0.35s; }

.mob-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 2rem;
  color: var(--muted);
  cursor: pointer;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
#hero-left-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 50%, rgba(139, 58, 82, 0.15), transparent 60%);
  pointer-events: none;
}
.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 1rem 5rem;
  z-index: 2;
  margin-top: 0;
}
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 12, 10, 1) 0%, rgba(13, 12, 10, 0.92) 80%, transparent 100%);
  pointer-events: none;
}
.hero-left > * { position: relative; z-index: 1; }
.hero-badge { margin-bottom: 1.8rem; }
.hero-eyebrow {
  font-family: var(--script);
  font-size: 1.8rem;
  color: var(--gold3);
  opacity: 0.85;
  display: block;
  margin-bottom: 0.3rem;
}
.hero-name {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 400;
  line-height: 1.0;
  margin-bottom: 0.6rem;
  text-shadow: 0 10px 30px rgba(184, 137, 42, 0.15);
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}
.hero-desc {
  font-size: 0.9rem;
  color: rgba(245, 239, 230, 0.7);
  line-height: 1.95;
  max-width: 440px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 4rem;
}
.hero-metrics {
  display: flex;
  gap: 3rem;
}
.metric-val {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  display: block;
}
.metric-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 150px;
  background: linear-gradient(90deg, var(--ink), transparent);
  z-index: 2;
  pointer-events: none;
}
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 4px;
}
.mosaic-item {
  overflow: hidden;
  position: relative;
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  filter: brightness(0.85);
  transform-origin: center;
}
.mosaic-item:hover img {
  transform: scale(1.08); /* More pronounced scaling for immersive feel */
  filter: brightness(1);
}
.mosaic-item.span-row { grid-row: 1 / 3; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
}
.scroll-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.scroll-track {
  width: 60px;
  height: 1px;
  background: rgba(184, 137, 42, 0.3);
  position: relative;
  overflow: hidden;
}
.scroll-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: var(--gold2);
  animation: scroll-anim 2s ease-in-out infinite;
}

/* ── SERVICES ── */
#services { padding: 5rem 0; position: relative;}
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .hairline { margin: 1rem auto 0; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(184, 137, 42, 0.15);
  perspective: 1200px;
}
.svc-card {
  background: var(--ink2);
  padding: 3rem 2.2rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.4s;
  box-shadow: 0 0 0 transparent; /* base */
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}
.svc-card:hover {
  background: #201c17;
  /* 3D shadow handled by JS, but add fallback */
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-top-color: transparent;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 2rem;
  filter: brightness(0.8) saturate(1.1);
  transition: all 0.6s var(--ease);
}
.svc-card:hover .svc-photo {
  filter: brightness(1) saturate(1.2);
  transform: scale(1.03);
}
.svc-no {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(184, 137, 42, 0.12);
  margin-bottom: 0.5rem;
  position: absolute;
  right: 2rem;
  top: 15rem;
  z-index: 0;
}
.svc-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold3);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.svc-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.tag {
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(184, 137, 42, 0.25);
  color: var(--gold);
  text-transform: uppercase;
}

/* ── RATES ── */
#rates { 
  padding: 5rem 0 6rem; 
  background: linear-gradient(180deg, var(--ink), var(--ink2));
}
.rates-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: #110e0b;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(184, 137, 42, 0.15);
}
.rate-table th {
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  color: var(--ink);
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.2rem;
  font-size: 0.85rem;
  text-align: center;
}
.rate-sec-head {
  background: #1c130d; /* Subtle dark orange/brown tint */
  color: var(--gold3);
  font-family: var(--serif);
  font-size: 1.05rem;
  text-align: center;
  padding: 0.35rem 0.5rem; /* Heavily slimmed down to fit exactly */
  line-height: 1.2;
  border-bottom: 1px solid rgba(184,137,42,0.1);
  border-top: 1px solid rgba(184,137,42,0.1);
}
.rate-row {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
}
.rate-row:hover { background: rgba(184,137,42,0.05); }
.rate-row td {
  padding: 0.85rem 1.2rem;
  font-size: 0.85rem;
  color: var(--warm);
}
.rate-row td.price {
  text-align: right;
  color: var(--gold2);
  white-space: nowrap;
}
.rate-row td.price span {
  font-size: 0.7rem;
  color: var(--muted);
  margin-right: 0.5rem;
}
.beauty-highlight {
  background: rgba(139, 58, 82, 0.15);
  border: 1px solid rgba(139, 58, 82, 0.5);
  padding: 1rem;
  text-align: center;
  margin-top: 2rem;
  border-radius: 4px;
}
.beauty-highlight p {
  color: var(--gold3);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ── WORK SHOWCASE ── */
#showcase {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--ink2) 0%, var(--ink) 100%);
}
.showcase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.showcase-grid { columns: 3; column-gap: 16px; }
.showcase-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.showcase-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.88) saturate(1.05);
}
.showcase-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.2);
}
.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 12, 10, 0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.showcase-item:hover .showcase-overlay { opacity: 1; }
.so-label {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold3);
  font-style: italic;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease);
}
.showcase-item:hover .so-label { transform: translateY(0); }
.load-more-wrap { text-align: center; margin-top: 4rem; }
.hidden-item { display: none; }
.hidden-item.shown { display: block; }

/* ── ABOUT STUDIO ── */
#about { padding: 6rem 0; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.about-imgs { position: relative; height: 600px; }
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 70%; height: 95%;
  object-fit: cover;
  border: 1px solid var(--border);
}
.about-img-accent {
  position: absolute;
  bottom: -2rem; right: 0;
  width: 60%; height: 50%;
  object-fit: cover;
  border: 4px solid var(--ink);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  filter: brightness(0.9);
}
.about-frame {
  position: absolute;
  top: -2rem; left: -2rem; right: 4rem; bottom: 4rem;
  border: 1px solid rgba(184, 137, 42, 0.2);
  pointer-events: none;
}
.about-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.2rem; }
.about-eyebrow span { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold2); }
.about-eyebrow .hairline { flex: 1; max-width: 50px; }
.about-quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold3);
  line-height: 1.85;
  padding: 1.2rem 0 1.2rem 1.6rem;
  border-left: 2px solid var(--gold2);
  margin: 1.8rem 0;
  background: linear-gradient(90deg, rgba(184,137,42,0.05), transparent);
}
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2.5rem 0; }
.about-feat { display: flex; gap: 1.2rem; align-items: flex-start; }
.af-icon { 
  flex-shrink: 0; 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 137, 42, 0.08);
  border: 1px solid rgba(184, 137, 42, 0.15);
}
.af-svg { width: 22px; height: 22px; color: var(--gold2); stroke-width: 1.5px; opacity: 0.9; }
.af-strong { font-size: 0.88rem; font-weight: 600; color: var(--gold3); display: block; margin-bottom: 0.2rem; }
.af-sub { font-size: 0.78rem; color: var(--muted); }

/* ── WHY US ── */
#whyus { padding: 6rem 0 5rem; background: var(--ink2); position: relative; overflow: hidden; }
.whyus-glow {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 1000px; height: 800px;
  background: radial-gradient(ellipse, rgba(184, 137, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.whyus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(184, 137, 42, 0.15);
  margin-top: 3.5rem;
  perspective: 1200px;
}
.why-card {
  background: var(--ink2);
  padding: 3rem 2.5rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
  position: relative; overflow: hidden;
  transition: background 0.45s;
  box-shadow: 0 0 0 transparent;
}
.why-card:hover { background: #1c1912; box-shadow: 0 15px 35px rgba(0,0,0,0.3); z-index: 2; }
.why-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold2), transparent);
  transform: scaleY(0); transition: transform 0.5s var(--ease);
}
.why-card:hover::before { transform: scaleY(1); }
.why-num {
  font-family: var(--serif); font-size: 6rem; font-weight: 700; line-height: 0.8;
  color: rgba(184, 137, 42, 0.05); position: absolute; right: 1.5rem; bottom: 1rem;
  pointer-events: none; transition: color 0.4s, transform 0.4s;
}
.why-card:hover .why-num { color: rgba(184, 137, 42, 0.15); transform: scale(1.1) translateX(-10px); }
.why-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border: 1px solid rgba(184, 137, 42, 0.2); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(184, 137, 42, 0.06); transition: all 0.35s;
}
.why-card:hover .why-icon { border-color: var(--gold2); background: rgba(184, 137, 42, 0.12); box-shadow: 0 0 20px rgba(184, 137, 42, 0.25); transform: scale(1.05); }
.why-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold2); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.35s; }
.why-card:hover .why-icon svg { stroke: var(--gold3); }
.why-body { flex: 1; min-width: 0; position: relative; z-index: 1; }
.why-ttl { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--gold3); margin-bottom: 0.6rem; line-height: 1.25; }
.why-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.85; }

/* ── TESTIMONIALS ── */
#testimonials { padding: 5rem 0; }
.testi-header { text-align: center; margin-bottom: 3.5rem; }
.testi-track { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2px; background: rgba(184, 137, 42, 0.15); }
.testi-card { background: var(--ink2); padding: 3rem 2.5rem; transition: background 0.4s; }
.testi-card:hover { background: #1a1710; }
.testi-stars { display: flex; gap: 0.2rem; margin-bottom: 1.2rem; }
.testi-stars span { color: var(--gold2); font-size: 0.9rem; }
.testi-text { font-family: var(--serif); font-size: 1.1rem; font-style: italic; font-weight: 400; line-height: 1.85; color: var(--warm); margin-bottom: 2rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar { width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%; background: linear-gradient(135deg, var(--gold2), #8b3a52); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.1rem; color: var(--warm); box-shadow: 0 0 15px rgba(184,137,42,0.15); }
.testi-name { font-weight: 600; font-size: 0.88rem; color: var(--gold3); }
.testi-sub { font-size: 0.75rem; color: var(--muted); }

/* ── CONTACT ── */
#contact { padding: 6rem 0 5rem; background: linear-gradient(135deg, #130a0e 0%, #0d0c0a 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; margin-top: 3.5rem; }
.contact-info h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--gold3); margin-bottom: 2.5rem; line-height: 1.35; }
.c-item { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.c-item:last-of-type { border-bottom: none; }
.c-icon { width: 48px; height: 48px; border: 1px solid rgba(184, 137, 42, 0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; background: rgba(184, 137, 42, 0.08); }
.c-lbl { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold2); margin-bottom: 0.4rem; }
.c-val { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.c-val a { color: var(--muted); transition: color 0.3s; }
.c-val a:hover { color: var(--gold3); }
.hours-box { background: rgba(184, 137, 42, 0.04); border: 1px solid var(--border); padding: 2rem; margin-top: 2rem; }
.hours-title { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold2); margin-bottom: 1.2rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.03); font-size: 0.85rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--muted); }
.hours-time { color: var(--gold3); font-weight: 500; }

.contact-action-box { display:flex; gap:1.5rem; margin-top:2rem; align-items: center; }
.wa-link-btn { display: flex; align-items: center; gap: 1rem; background: #25d366; color: #fff; padding: 1rem 2rem; border-radius: 8px; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; box-shadow: 0 4px 15px rgba(37,211,102,0.3); }
.wa-link-btn:hover { background: #1eb956; transform: translateY(-4px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.wa-link-btn svg { width: 24px; height: 24px; fill: #fff; }

.map-card { background:#1b1814; padding:0.5rem; border:1px solid var(--border); }
.map-wrap { position:relative; padding-top:60%; }
.map-wrap iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:none; filter: grayscale(80%) sepia(20%) brightness(0.85); transition: filter 0.5s; }
.map-wrap:hover iframe { filter: none; }

/* ── FOOTER ── */
#footer { background: var(--ink); border-top: 1px solid var(--border); padding: 5rem 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.foot-logo img { height: 130px; filter: drop-shadow(0 0 10px rgba(184, 137, 42, 0.4)); margin-bottom: 1.5rem; display: block; }
.foot-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.8; max-width: 320px; }
.foot-h { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold2); margin-bottom: 1.5rem; }
.foot-links li { margin-bottom: 0.75rem; }
.foot-links a { font-size: 0.85rem; color: var(--muted); transition: color 0.3s; }
.foot-links a:hover { color: var(--gold3); }

/* Unified Social Group for Footer/Contact */
.socials { display: flex; gap: 0.75rem; margin-top: 2rem; }
.soc-btn { width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: all 0.35s; background: rgba(255, 255, 255, 0.03); }
.soc-btn svg { width: 22px; height: 22px; transition: transform 0.35s; }
.soc-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.soc-btn.ig:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.soc-btn.fb:hover { background: #1877f2; border-color: transparent; }
.soc-btn.wa:hover { background: #25d366; border-color: transparent; }

.foot-bottom { border-top: 1px solid rgba(255, 255, 255, 0.04); padding-top: 2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.foot-bottom p { font-size: 0.75rem; color: var(--muted); }
.foot-bottom span { color: var(--gold2); }

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 6.5rem 2rem 2rem; margin-top: 0; }
  .hero-right { height: 60vw; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-imgs { height: 60vw; min-height: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .rates-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-action-box { flex-direction: column; align-items: stretch; }
}
@media(max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .showcase-grid { columns: 2; }
  .foot-grid { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: 1fr 1fr; }
  .hero-metrics { gap: 1.5rem; }
  .modal-content { padding: 2.5rem 1.5rem; }
  /* Ensure Logo scales safely on mobile */
  .nav-logo img { height: 75px; }
  #nav.solid .nav-logo img { height: 55px; }
}
@media(max-width: 480px) {
  html { font-size: 14.5px; } /* Slightly reduce global scaling on small devices */
  .showcase-grid { columns: 1; }
  .testi-track { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: 1fr; }
  .hero-left { padding: 6.5rem 1.2rem 2rem; margin-top: 0; }
  .services-header, .testi-header, .about-eyebrow, .rates-header { padding: 0 0.5rem; }
  
  /* Compact spacing for ultimate mobile layout */
  #services, #rates, #showcase, #about, #whyus, #testimonials, #contact { padding: 4rem 0; }
  .services-header, .rates-header, .showcase-header { margin-bottom: 2.5rem; }
  .about-imgs { min-height: 320px; }
  
  .nav-logo img { height: 70px; }
  #nav.solid .nav-logo img { height: 50px; }
}
