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

:root {
  --cream: #F8F6F1;
  --cream2: #EDE9E0;
  --dark: #141414;
  --dark2: #1C1C1E;
  --dark3: #242424;
  --orange: #F97316;
  --orange-dark: #C2540A;
  --text-dark: #1A1818;
  --text-light: #F0EDE6;
  --muted-dark: #706A65;
  --muted-light: #9E9994;
  --border-light: rgba(0,0,0,0.1);
  --border-dark: rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.2px;
  border: none;
  cursor: pointer;
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(0,0,0,0.25);
}
.btn-outline-dark:hover { border-color: var(--text-dark); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--orange); font-weight: 700; }
.btn-white:hover { background: var(--cream2); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  font-weight: 600;
}
.btn-outline-white:hover { border-color: #fff; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
nav.nav-solid {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--border-light);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-logo span { color: var(--orange); }
nav.nav-solid .nav-logo { color: var(--text-dark); }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
nav.nav-solid .nav-links a { color: var(--muted-dark); }
nav.nav-solid .nav-links a:hover { color: var(--text-dark); }
.nav-call {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-call:hover { background: var(--orange-dark); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.25s;
}
nav.nav-solid .nav-hamburger span { background: var(--text-dark); }
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 5%;
  z-index: 190;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Barlow Condensed', sans-serif;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero-viewport {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 68px 5% 5rem;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/shop-front-signboard.png');
  background-size: cover;
  background-position: center 82%;
  pointer-events: none;
}
.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20,20,20,0.52) 0%, rgba(20,20,20,0.78) 50%, rgba(20,20,20,0.97) 100%);
}
.hero-dot-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 5% 3rem 7%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.5);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  width: fit-content;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.9;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.hero-title .line-accent { color: var(--orange); }
.hero-title .line-outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.75);
  color: transparent;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; position: relative; z-index: 2; }
.hero-mobile-img { display: none; }
.hero-right { position: relative; overflow: hidden; }
.hero-img-wrap {
  position: absolute;
  inset: 0;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(248,246,241,0.25), transparent 40%);
}
.hero-img-badge {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  z-index: 2;
}

/* ── TICKER ── */
.ticker {
  background: var(--orange);
  padding: 0.85rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 32s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.ticker-item::after { content: '✦'; font-size: 0.55rem; opacity: 0.65; }

/* ── ABOUT ── */
#about { background: var(--dark); padding: 7rem 5%; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.about-img-container {
  position: relative;
  border-radius: 6px;
  overflow: visible;
}
.about-img-container img {
  width: 100%;
  display: block;
  border-radius: 6px;
}
.about-img-tag {
  position: absolute;
  top: 1.2rem; left: 1.25rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 3px;
}
.about-year-box {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--dark2);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  text-align: center;
}
.about-year-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
}
.about-year-label {
  font-size: 0.7rem;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.about-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-light);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}
.about-body {
  font-size: 0.95rem;
  color: var(--muted-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about-checks { display: flex; flex-direction: column; gap: 0.65rem; }
.about-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-light);
}
.check-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--orange);
  flex-shrink: 0;
}

/* ── SERVICES ── */
#services { background: var(--cream); padding: 7rem 5%; }
.section-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 4rem;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.label-orange { color: var(--orange); }
.label-muted { color: var(--muted-light); }
.section-title-dark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.0;
  margin-bottom: 0.75rem;
}
.section-title-light {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.0;
  margin-bottom: 0.75rem;
}
.section-body-dark { font-size: 0.9rem; color: var(--muted-dark); line-height: 1.75; }
.section-body-light { font-size: 0.9rem; color: var(--muted-light); line-height: 1.75; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}
.service-item {
  background: var(--cream);
  padding: 2.25rem 2rem;
  position: relative;
  transition: background 0.2s;
}
.service-item:hover { background: #fff; }
.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4.5rem;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  position: absolute;
  top: 0.75rem; right: 1.25rem;
  user-select: none;
  transition: color 0.2s;
}
.service-item:hover .service-num { color: rgba(249,115,22,0.1); }
.service-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(249,115,22,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  margin-bottom: 1rem;
}
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.4rem;
}
.service-desc { font-size: 0.83rem; color: var(--muted-dark); line-height: 1.65; }

/* ── OWNER ── */
#owner {
  background: var(--dark);
  padding: 7rem 5%;
  position: relative;
  overflow: hidden;
}
#owner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.owner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.owner-video-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(249,115,22,0.2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(249,115,22,0.08);
  position: relative;
}
.owner-video-card video {
  width: 100%;
  display: block;
  background: #000;
}
.owner-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: opacity 0.25s;
}
.owner-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.owner-play-btn {
  width: 72px; height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  padding-left: 5px;
  box-shadow: 0 4px 32px rgba(249,115,22,0.6);
  transition: transform 0.2s, box-shadow 0.2s;
}
.owner-play-overlay:hover .owner-play-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 40px rgba(249,115,22,0.8);
}
.owner-text { position: relative; }
.owner-text::before {
  content: '"';
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 14rem;
  line-height: 1;
  color: rgba(249,115,22,0.07);
  position: absolute;
  top: -3rem;
  left: -1rem;
  pointer-events: none;
  user-select: none;
}
.owner-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.owner-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--text-light);
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 2rem;
}
.owner-quote {
  font-size: 1rem;
  color: var(--muted-light);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.owner-attribution {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
}
.owner-attr-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.owner-attr-role {
  font-size: 0.8rem;
  color: var(--muted-light);
}

/* ── GALLERY ── */
#gallery { background: var(--dark2); padding: 7rem 5%; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-ig {
  grid-row: 1 / 3;
  overflow: hidden;
  border-radius: 12px;
}
.ig-clip {
  height: calc(320px * 2 + 1rem);
  overflow: hidden;
  border-radius: 12px;
}
.ig-clip iframe {
  display: block;
  transform: translateY(-63px);
}
.gallery-ig .instagram-media {
  margin: 0 !important;
  min-width: unset !important;
  width: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.gallery-photo {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-dark);
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ── GALLERY SOCIAL CARD ── */
.gallery-social-card {
  border-radius: 12px;
  border: 1px solid var(--border-dark);
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-social-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  gap: 0.85rem;
}
.gallery-social-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 0.25rem;
}
.gallery-social-quote {
  font-size: 0.9rem;
  color: var(--muted-light);
  line-height: 1.6;
  max-width: 260px;
}
.gallery-social-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
}
.gallery-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.25rem;
}
.gsocial-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  border: 1px solid var(--border-dark);
  color: #fff;
}
.gsocial-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.gsocial-yt  { background: rgba(255,0,0,0.15); border-color: rgba(255,0,0,0.3); }
.gsocial-ig  { background: rgba(193,53,132,0.15); border-color: rgba(193,53,132,0.3); }
.gsocial-fb  { background: rgba(24,119,242,0.15); border-color: rgba(24,119,242,0.3); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--orange);
  padding: 4.5rem 5%;
  text-align: center;
}
.cta-strip-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}
.cta-strip h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  line-height: 1.0;
}
.cta-strip p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}
.cta-strip-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── CONTACT ── */
#contact { background: var(--dark); padding: 7rem 5%; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-left-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.contact-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-light);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.contact-left p {
  font-size: 0.9rem;
  color: var(--muted-light);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--dark3);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted-light);
  margin-bottom: 0.15rem;
}
.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
}
.contact-value:hover { color: var(--orange); }
.social-head {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 1rem;
}
.social-links { display: flex; flex-direction: column; gap: 0.65rem; }
.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: var(--dark2);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.social-link:hover {
  border-color: rgba(249,115,22,0.35);
  background: var(--dark3);
}
.social-link-icon { font-size: 1.2rem; width: 1.75rem; }
.social-link-name { font-weight: 600; font-size: 0.9rem; color: var(--text-light); }
.social-link-handle { font-size: 0.77rem; color: var(--muted-light); }
.social-link-arrow { margin-left: auto; color: var(--muted-light); font-size: 0.85rem; }

/* ── MAP ── */
.map-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  background: var(--dark3);
}
.map-embed iframe {
  width: 100%;
  flex: 1;
  border: none;
  min-height: 240px;
  filter: invert(0.9) hue-rotate(180deg);
}
.map-footer {
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
  color: var(--muted-light);
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.map-footer i { color: var(--orange); }

/* ── FOOTER ── */
footer {
  background: #0A0A0A;
  border-top: 1px solid var(--border-dark);
  padding: 2.5rem 5%;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-left {}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.footer-logo span { color: var(--orange); }
.footer-copy { font-size: 0.72rem; color: rgba(158,153,148,0.45); }
.footer-dev {
  font-size: 0.78rem;
  color: var(--muted-light);
  text-align: right;
}
.footer-dev a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}
.footer-dev a:hover { text-decoration: underline; }

/* ── FLOATING WHATSAPP ── */
.wa-fab {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 500;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}
.wa-fab i { font-size: 1.6rem; color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-call { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-viewport { height: auto; }
  .hero { min-height: 0; padding: 90px 6% 3rem; background: var(--dark); }
  .hero-bg-img, .hero-dot-bg { display: none; }
  .hero-mobile-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
  }
  .hero-badge { font-size: 0.55rem; padding: 0.25rem 0.65rem; letter-spacing: 1px; }
  .hero-sub { margin-bottom: 2rem; }
  .hero-img-badge {
    position: static;
    transform: none;
    width: fit-content;
    margin: 1.5rem auto 0;
    font-size: 0.6rem;
    padding: 0.3rem 0.6rem;
  }
  .hero-actions { flex-wrap: nowrap; }
  .hero-actions .btn { font-size: 0.75rem; padding: 0.7rem 1.1rem; }
  .ticker-item { font-size: 0.72rem; padding: 0 1.25rem; gap: 1.25rem; letter-spacing: 1px; }
  .about-img-tag { font-size: 0.55rem; padding: 0.25rem 0.55rem; letter-spacing: 1px; }

  /* Sections — reduce padding */
  #about, #owner, #gallery, #contact { padding: 4rem 5%; }
  #services { padding: 4rem 5%; }
  .cta-strip { padding: 3.5rem 5%; }
  .cta-strip-actions { flex-direction: column; }
  .cta-strip-actions .btn { width: 100%; justify-content: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-year-box { right: 0; bottom: -1rem; }

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

  /* Owner */
  #owner { overflow: hidden; }
  .owner-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .owner-video-card { max-width: 340px; margin: 0 auto; }
  .owner-text { text-align: center; }
  .owner-text::before { font-size: 6rem; top: -1.5rem; left: 0; }
  .owner-attribution { justify-content: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 0.75rem; }
  .gallery-ig { grid-row: auto; }
  .ig-clip { height: 400px; }
  .gallery-photo { height: 200px; }
  .gallery-social-card { height: 200px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-dev { text-align: left; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3.2rem; }
  .section-header { padding: 0 1rem; }
  .owner-title { font-size: 2.8rem; }
  .about-title { font-size: 2rem; }
  .about-img-tag {
    top: 0;
  }
}
