/* ==========================================================
   Vista Time — Stylesheet
   ========================================================== */

:root {
  --bg: #f9f9f7;
  --bg-alt: #ffffff;
  --ink: #1a1a2e;
  --ink-soft: #4a4a5a;
  --muted: #8a8a96;
  --line: #e6e3dd;
  --gold: #c9a84c;
  --gold-dark: #a98c34;
  --black: #0e0e14;
  --shadow: 0 10px 30px rgba(20, 20, 40, 0.06);
  --radius: 4px;
  --max: 1200px;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 249, 247, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.brand .dot { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.socials { display: flex; gap: 14px; }
.socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: all 0.25s ease;
}
.socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.socials svg { width: 15px; height: 15px; }
.socials .carousell-img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: block;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--black);
  background: var(--black);
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: all 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(14,14,30,0.78) 0%, rgba(26,26,46,0.68) 50%, rgba(21,21,42,0.82) 100%),
    url('images/workshop-joey.jpg') center 30%/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 168, 76, 0.10), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(201, 168, 76, 0.08), transparent 45%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 900px;
}
.hero .eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(48px, 9vw, 110px);
  letter-spacing: 0.12em;
  color: #fff;
  font-weight: 400;
  margin-bottom: 18px;
}
.hero .subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  font-weight: 300;
}
.hero .hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto;
}
.hero p.lede {
  max-width: 580px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

/* ---------- Section base ---------- */
section { padding: 90px 0; }
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Info Strip ---------- */
.info-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 70px 0;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.info-card {
  text-align: center;
  padding: 10px 28px;
  border-right: 1px solid var(--line);
}
.info-card:last-child { border-right: none; }
.info-card .icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 18px;
}
.info-card .icon svg { width: 20px; height: 20px; }
.info-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--ink);
}
.info-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
}
.info-card a { color: var(--ink); }
.info-card a:hover { color: var(--gold); }

.map-wrap {
  margin-top: 60px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; width: 100%; border: 0; }

.center-cta { text-align: center; margin-top: 40px; }

/* ---------- Services Preview ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 168, 76, 0.4);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: linear-gradient(180deg, var(--bg) 0%, #f4f3ef 100%);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--bg-alt);
  padding: 38px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.testi-card .quote {
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1;
  color: var(--gold);
  position: absolute;
  top: 16px; left: 22px;
  opacity: 0.4;
}
.testi-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-top: 28px;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-card .name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  font-weight: 600;
}
.stars { color: var(--gold); margin-top: 4px; font-size: 13px; letter-spacing: 2px; }

/* ---------- Founder Story ---------- */
.story {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.story h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
}
.story .divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 36px;
}
.story p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 15.5px;
  line-height: 1.85;
}
.story .signed {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-top: 30px;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.25s ease;
}
.faq-q:hover { color: var(--gold); }
.faq-q .plus {
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.3s ease;
  font-family: var(--sans);
  font-weight: 300;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 240px;
  padding-bottom: 24px;
}
.faq-a p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  padding: 100px 0 70px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.page-hero h1 {
  font-size: clamp(44px, 7vw, 80px);
  letter-spacing: 0.02em;
}
.page-hero p {
  color: var(--ink-soft);
  margin-top: 18px;
  max-width: 620px;
  font-size: 16px;
}

/* ---------- Service rows ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse .service-text { order: 2; }
.service-row.reverse .service-image { order: 1; }
.service-image {
  min-height: 460px;
  background-color: #1a1a2e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-image.img-repair { background-image: url('images/workshop-joey.jpg'); background-position: center 25%; }
.service-image.img-auth   { background-image: url('images/rolex-teardown.jpg'); }
.service-image.img-retail { background-image: url('images/workshop-shop.jpg'); }
.service-text .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.service-text h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 8px;
}
.service-text .gold-line {
  width: 50px; height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.service-text p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 15.5px;
  line-height: 1.85;
}
.service-text h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 22px;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--ink);
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info .biz-name {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--ink);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.contact-info .gold-line {
  width: 50px; height: 1px;
  background: var(--gold);
  margin: 20px 0;
}
.contact-info p, .contact-info li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
  list-style: none;
}
.contact-info a { color: var(--ink); }
.contact-info a:hover { color: var(--gold); }
/* Restore proper button colors inside .contact-info (override link colors) */
.contact-info a.btn { color: #fff; }
.contact-info a.btn:hover { color: var(--black); }
.contact-info a.btn-outline { color: var(--ink); }
.contact-info a.btn-outline:hover { color: #fff; }
.contact-info ul { padding: 0; margin: 0; }
.contact-info .hours-list li {
  display: flex; justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding: 8px 0;
}
.contact-info .hours-list li:last-child { border-bottom: none; }
.contact-info .hours-list .day { color: var(--ink); font-weight: 500; }

.contact-buttons { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

.contact-map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-map iframe { display: block; width: 100%; border: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.footer .brand-foot {
  font-family: var(--serif);
  font-size: 34px;
  color: #fff;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}
.footer .brand-foot .dot { color: var(--gold); }
.footer p, .footer a, .footer li {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
}
.footer ul { list-style: none; }
.footer a:hover { color: var(--gold); }
.footer .socials a {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}
.footer .socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer .btn {
  margin-top: 14px;
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.footer .btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--black);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 50px;
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ---------- Process Infographic ---------- */
.process {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 168, 76, 0.04), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(26, 26, 46, 0.03), transparent 40%);
  pointer-events: none;
}
.process .container { position: relative; z-index: 1; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 30px;
  position: relative;
}
.process-grid::before {
  /* Dashed connector line behind step row 1 */
  content: "";
  position: absolute;
  top: 48px;
  left: 8%;
  right: 8%;
  height: 1px;
  background-image: linear-gradient(to right, var(--gold) 50%, transparent 50%);
  background-size: 12px 1px;
  opacity: 0.45;
  z-index: 0;
}
.process-grid.row-2 {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
}
.process-grid.row-2::before {
  left: 10%;
  right: 10%;
}

.step {
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}
.step-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  position: relative;
  transition: all 0.35s ease;
}
.step-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.step:hover .step-icon {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(201, 168, 76, 0.18);
}
.step:hover .step-icon::before { opacity: 1; }
.step-icon svg {
  width: 42px;
  height: 42px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.step-label {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.35;
  font-weight: 500;
}

@media (max-width: 900px) {
  .process-grid,
  .process-grid.row-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
    margin-top: 20px;
  }
  .process-grid::before { display: none; }
  .step-icon { width: 80px; height: 80px; margin-bottom: 16px; }
  .step-icon svg { width: 36px; height: 36px; }
  .step-label { font-size: 16px; }
}
@media (max-width: 480px) {
  .process-grid,
  .process-grid.row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr; }
  .info-card { border-right: none; border-bottom: 1px solid var(--line); padding: 28px 20px; }
  .info-card:last-child { border-bottom: none; }
  .services-grid, .testi-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 36px; padding: 60px 0; }
  .service-row.reverse .service-text,
  .service-row.reverse .service-image { order: initial; }
  .service-image { min-height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  section { padding: 70px 0; }
  .menu-toggle { display: block; order: 3; }
  .nav-right { gap: 10px; }
  .nav-right .socials { display: none; }
  .nav-right .btn { display: none; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-alt);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { font-size: 14px; padding: 8px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .wa-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}
