@charset "UTF-8";

:root {
  --navy-950: #071426;
  --navy-900: #0a1d35;
  --navy-800: #123257;
  --blue-700: #1956b3;
  --blue-600: #2166d1;
  --blue-100: #e9f1fd;
  --gold-500: #c99b42;
  --gold-100: #f7edd8;
  --ink: #132036;
  --muted: #5d687a;
  --line: #dbe3ed;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-blue: #edf4fc;
  --whatsapp: #167a4a;
  --success: #14734d;
  --danger: #a33a3a;
  --shadow-sm: 0 10px 30px rgba(7, 20, 38, 0.08);
  --shadow-md: 0 22px 60px rgba(7, 20, 38, 0.13);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1240px;
  --header-offset: 136px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--blue-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue-600);
}

h1,
h2,
h3,
p,
figure,
ul,
dl {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.2rem, 5.25vw, 4.65rem);
}

h2 {
  font-size: clamp(2.15rem, 3.7vw, 3.35rem);
}

h3 {
  font-size: 1.25rem;
}

h1 span,
h2 span {
  color: var(--blue-600);
}

[id] {
  scroll-margin-top: 12px;
}

:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

::selection {
  background: var(--gold-100);
  color: var(--navy-950);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--navy-950);
  font-weight: 800;
  transform: translateY(-160%);
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  transform: translateY(0);
}

i[data-icon] {
  display: inline-flex;
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-style: normal;
  vertical-align: -0.2em;
}

i[data-icon] svg {
  width: 100%;
  height: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(219, 227, 237, 0.9);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(7, 20, 38, 0.09);
}

.top-bar {
  min-height: 38px;
  background: var(--navy-950);
  color: #edf4fc;
  font-size: 0.82rem;
  font-weight: 650;
}

.top-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 23px;
}

.top-bar__inner > :first-child {
  margin-right: auto;
}

.top-bar span,
.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
}

.top-bar a:last-child {
  color: #d7f6e6;
}

.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 260px;
  align-items: center;
  gap: 13px;
  color: var(--navy-950);
  text-decoration: none;
}

.brand:hover {
  color: var(--navy-950);
}

.brand-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--navy-950);
  box-shadow: 0 5px 18px rgba(7, 20, 38, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1.36rem;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
}

.nav-links > a {
  padding: 10px 10px;
  border-radius: 9px;
  color: #273348;
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links > a:hover,
.nav-links > a.active {
  background: var(--blue-100);
  color: var(--blue-700);
}

.nav-links > .nav-button {
  margin-left: 7px;
  padding: 11px 15px;
  gap: 7px;
  background: var(--whatsapp);
  color: #ffffff;
}

.nav-links > .nav-button:hover {
  background: #11663e;
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle > span[aria-hidden] {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 5px;
  background: var(--navy-950);
}

/* Shared actions and type */
.eyebrow {
  margin-bottom: 14px;
  color: #9a6d19;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--blue-600);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(33, 102, 209, 0.22);
}

.btn-gold:hover {
  background: var(--blue-700);
  color: #ffffff;
  box-shadow: 0 15px 32px rgba(33, 102, 209, 0.28);
}

.btn-outline {
  border-color: #bac8da;
  background: var(--surface);
  color: var(--navy-900);
}

.btn-outline:hover {
  border-color: var(--blue-600);
  background: var(--blue-100);
  color: var(--blue-700);
}

.btn.full,
.full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover span {
  transform: translateX(3px);
}

.text-link span {
  transition: transform 160ms ease;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 29px;
}

.hero-actions.compact {
  margin-top: 25px;
}

/* Hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(201, 155, 66, 0.13), transparent 26%),
    linear-gradient(145deg, #f7f9fc 0%, #edf4fc 100%);
}

.page-hero::after {
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(33, 102, 209, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

.page-hero-copy {
  max-width: 700px;
}

.page-hero-copy h1 {
  margin-bottom: 18px;
}

.page-hero-home .page-hero-copy h1 span {
  display: block;
}

.hero-title-sub {
  max-width: 640px;
  margin-bottom: 14px;
  color: var(--navy-800);
  font-size: clamp(1.18rem, 1.7vw, 1.46rem);
  font-weight: 750;
  line-height: 1.42;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.home-integrated-visual {
  position: relative;
  width: min(100%, 520px);
  margin: 0 auto;
}

.home-integrated-visual > img {
  width: 100%;
  aspect-ratio: 4 / 4.75;
  border: 1px solid rgba(10, 29, 53, 0.1);
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.hero-location-card {
  position: absolute;
  right: -24px;
  bottom: 26px;
  display: flex;
  max-width: 300px;
  align-items: flex-start;
  gap: 12px;
  padding: 17px 19px;
  border: 1px solid rgba(219, 227, 237, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  line-height: 1.45;
}

.hero-location-card i {
  width: 27px;
  height: 27px;
  padding: 5px;
  border-radius: 8px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.hero-location-card strong {
  display: block;
  color: var(--navy-950);
}

.home-trust-row,
.repair-trust-strip,
.accessory-trust-strip,
.printing-trust-strip,
.watch-trust-strip,
.contact-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.home-trust-row > span,
.repair-trust-strip > span,
.accessory-trust-strip > span,
.printing-trust-strip > span,
.watch-trust-strip > span,
.contact-trust-strip > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid #d4dfec;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #344157;
  font-size: 0.83rem;
  font-weight: 750;
}

.home-trust-row i,
.repair-trust-strip i,
.accessory-trust-strip i,
.printing-trust-strip i,
.watch-trust-strip i,
.contact-trust-strip i {
  color: var(--blue-700);
}

.service-hero-panel,
.repair-proof-panel,
.warranty-summary-card {
  padding: clamp(27px, 3.2vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  color: #dce7f4;
  box-shadow: var(--shadow-md);
}

.service-hero-panel .eyebrow,
.repair-proof-panel .eyebrow,
.warranty-summary-card .eyebrow {
  color: #e5bd6b;
}

.service-hero-panel h2,
.service-hero-panel h3,
.repair-proof-panel h2,
.repair-proof-panel h3,
.warranty-summary-card h2 {
  color: #ffffff;
}

.service-hero-panel h2,
.repair-proof-panel h2,
.warranty-summary-card h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.service-hero-panel .text-link,
.repair-proof-panel .text-link {
  margin-top: 22px;
  color: #d7e8ff;
}

.hero-service-list {
  display: grid;
  gap: 13px;
}

.hero-service-list > div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.065);
}

.hero-service-list i {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(229, 189, 107, 0.14);
  color: #e5bd6b;
}

.hero-service-list span {
  color: #c9d5e5;
  font-size: 0.92rem;
  line-height: 1.48;
}

.hero-service-list strong {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 0.98rem;
}

/* Sections and cards */
.section {
  padding: clamp(72px, 8vw, 108px) 0;
}

.compact-section {
  padding: clamp(62px, 6.5vw, 86px) 0;
}

.split-section,
.customer-journey-section,
.accessory-feature-section,
.printing-price-section,
.watch-battery-plans,
.privacy-content-section,
.map-section {
  background: var(--surface-soft);
}

.section-head {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-head.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head h2,
.section-copy h2,
.visit-copy h2 {
  margin-bottom: 17px;
}

.section-head p:last-child,
.section-copy > p:last-of-type,
.visit-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.two-col,
.aftercare-grid,
.visit-panel,
.faq-grid,
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(38px, 6vw, 78px);
}

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px;
}

.home-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.next-card,
.accessory-shop-card,
.accessory-feature-card,
.accessory-trust-card,
.printing-service-card,
.jewellery-service,
.journey-card,
.review-step-card,
.warranty-period-card,
.battery-plan-card,
.option-card,
.price-card,
.note-card,
.review-example-card,
.watch-note-card,
.accessory-check-card,
.passport-info-card,
.shop-detail-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.next-card {
  display: flex;
  min-height: 258px;
  flex-direction: column;
  align-items: flex-start;
  padding: 27px;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

button.next-card {
  width: 100%;
  cursor: pointer;
}

.next-card:hover {
  transform: translateY(-5px);
  border-color: #a7bfdf;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(7, 20, 38, 0.12);
}

.next-card > i,
.accessory-shop-card i,
.accessory-feature-card > i,
.accessory-trust-card > i,
.printing-service-card > i,
.jewellery-service i,
.journey-card > i,
.review-step-card > i,
.warranty-period-card > i,
.note-card > i {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  padding: 12px;
  border-radius: 14px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.next-card h3 {
  margin-bottom: 11px;
}

.next-card p {
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 0.94rem;
}

.next-card > span {
  margin-top: auto;
  color: var(--blue-700);
  font-weight: 850;
}

.service-choice-section {
  background: var(--surface);
}

.service-choice-section .section-head h2,
.service-choice-section .section-head p {
  color: var(--navy-950);
}

.service-choice-section .section-head > p:last-child {
  color: var(--muted);
}

.signal-strip {
  border-top: 1px solid rgba(219, 227, 237, 0.9);
  border-bottom: 1px solid rgba(219, 227, 237, 0.9);
  background: var(--surface);
}

.signal-strip__inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.signal-strip__inner > * {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
  color: var(--navy-800);
  font-size: 0.91rem;
  text-align: center;
  text-decoration: none;
}

.signal-strip__inner > :last-child {
  border-right: 0;
}

.signal-strip i {
  color: var(--blue-700);
}

.repair-focus-section {
  background: var(--navy-950);
}

.repair-focus-section .section-copy h2,
.repair-focus-section .section-copy h2 span {
  color: #ffffff;
}

.repair-focus-section .section-copy > p:last-of-type,
.repair-focus-section .check-list li,
.repair-focus-section .check-list span {
  color: #cbd8e8;
}

.repair-focus-section .section-copy .eyebrow,
.repair-focus-section .text-link {
  color: #e5bd6b;
}

.repair-focus-section .repair-proof-panel {
  border-color: rgba(255, 255, 255, 0.18);
  background: #102a4b;
  box-shadow: none;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

.check-list li > i {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.check-list strong {
  display: block;
  color: inherit;
}

.journey-grid,
.accessory-feature-grid,
.accessory-trust-grid,
.printing-service-grid,
.warranty-period-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.journey-card,
.review-step-card {
  padding: 27px;
}

.journey-card > b,
.review-step-card > b {
  display: block;
  margin-bottom: 18px;
  color: #a67a28;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.journey-card h3,
.review-step-card h3,
.accessory-trust-card h3,
.printing-service-card h3,
.warranty-period-card h3 {
  margin-bottom: 10px;
}

.journey-card p,
.review-step-card p,
.accessory-trust-card p,
.printing-service-card p,
.warranty-period-card p,
.note-card p,
.option-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.aftercare-section {
  background: var(--surface);
}

.aftercare-grid {
  align-items: start;
}

.aftercare-actions {
  display: grid;
  gap: 14px;
}

.aftercare-actions a {
  display: grid;
  grid-template-columns: 47px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--ink);
  text-decoration: none;
}

.aftercare-actions a:hover {
  border-color: #a7bfdf;
}

.aftercare-actions i {
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.aftercare-actions span {
  color: var(--muted);
  font-size: 0.91rem;
}

.aftercare-actions strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-950);
  font-size: 1rem;
}

.aftercare-actions b {
  color: var(--blue-700);
  font-size: 1.3rem;
}

.customer-review-section {
  background: var(--surface-soft);
}

.customer-review-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.5fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(28px, 4.5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.google-rating-summary {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-md);
  background: var(--navy-950);
  color: #ffffff;
}

.google-rating-summary .eyebrow {
  color: #b9d4ff;
}

.google-rating-number {
  margin: 4px 0 10px;
  color: #ffffff;
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.google-rating-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  color: #e1b653;
}

.google-rating-stars i {
  width: 23px;
  height: 23px;
}

.google-rating-summary > p:last-child {
  margin: 0;
  color: #c9d5e5;
  font-size: 0.94rem;
}

.google-rating-summary > p:last-child strong {
  display: block;
}

.google-rating-summary > p:last-child strong {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 1rem;
}

.customer-review-copy {
  align-self: center;
}

.customer-review-copy h2 {
  max-width: 720px;
  margin-bottom: 22px;
}

.customer-review-copy blockquote {
  margin: 0 0 26px;
  padding: 0 0 0 22px;
  border-left: 4px solid var(--gold-500);
}

.customer-review-copy blockquote > p {
  margin-bottom: 17px;
  color: var(--navy-800);
  font-size: clamp(1.1rem, 1.55vw, 1.32rem);
  font-weight: 650;
  line-height: 1.55;
}

.customer-review-copy blockquote footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 12px;
  color: var(--muted);
  font-size: 0.91rem;
}

.customer-review-copy blockquote footer strong {
  color: var(--navy-950);
}

.customer-review-actions {
  margin-top: 0;
}

.visit-section {
  background: var(--surface-blue);
}

.visit-panel {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid #d5e0ed;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.visit-address-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px;
  border-radius: 22px;
  background: var(--navy-950);
  color: #dce7f4;
  text-align: center;
}

.visit-address-number {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(4.8rem, 8vw, 7.8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.visit-address-card p {
  margin-bottom: 3px;
}

.visit-address-card strong {
  color: #ffffff;
  font-size: 1.2rem;
}

.visit-address-card > span:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: #e5bd6b;
  font-weight: 750;
}

.visit-details {
  display: grid;
  gap: 12px;
  margin-top: 25px;
}

.visit-details p {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  color: var(--muted);
}

.visit-details i {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 11px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.visit-details strong {
  display: block;
  color: var(--navy-950);
}

.launch-panel,
.review-support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  align-items: center;
  gap: 35px;
  padding: clamp(32px, 4.5vw, 56px);
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  color: #ccdae9;
  box-shadow: var(--shadow-md);
}

.launch-panel h2,
.review-support-panel h2,
.launch-panel h2 span,
.review-support-panel h2 span {
  margin-bottom: 12px;
  color: #ffffff;
}

.launch-panel p:last-child,
.review-support-panel p:last-child {
  margin-bottom: 0;
}

.launch-panel .eyebrow,
.review-support-panel .eyebrow {
  color: #e5bd6b;
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 11px;
}

.launch-panel .btn-outline,
.review-support-panel .btn-outline {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #ffffff;
}

.launch-panel .btn-outline:hover,
.review-support-panel .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Lists, processes and forms */
.process-steps,
.clean-list {
  display: grid;
  gap: 14px;
  margin-top: 29px;
}

.process-steps > div {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.process-steps b {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--navy-950);
  color: #ffffff;
}

.process-steps strong,
.clean-list strong {
  display: block;
  color: var(--navy-950);
}

.process-steps small,
.clean-list span {
  display: block;
  color: var(--muted);
  font-size: 0.93rem;
}

.clean-list > div {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}

.clean-list i {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.enquiry-panel {
  padding: clamp(26px, 3.5vw, 40px);
  border: 1px solid #d2dce9;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.enquiry-panel h2,
.enquiry-panel h3 {
  margin-bottom: 9px;
  color: var(--navy-950);
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
}

.enquiry-panel > p {
  margin-bottom: 22px;
  color: var(--muted);
}

.enquiry-panel label {
  display: block;
  margin-bottom: 16px;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 800;
}

.enquiry-panel input,
.enquiry-panel select,
.enquiry-panel textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #bac8d9;
  border-radius: 11px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: inset 0 1px 2px rgba(7, 20, 38, 0.025);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.enquiry-panel input::placeholder,
.enquiry-panel textarea::placeholder {
  color: #7b8798;
  opacity: 1;
}

.enquiry-panel input:focus,
.enquiry-panel select:focus,
.enquiry-panel textarea:focus {
  border-color: var(--blue-600);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(33, 102, 209, 0.12);
}

.enquiry-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.enquiry-panel > small {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.enquiry-panel > small i {
  margin-top: 2px;
  color: var(--success);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  margin: 13px 0 0;
  padding: 11px 13px;
  border-radius: 10px;
  background: #e7f6ef;
  color: #0c633e;
  font-size: 0.88rem;
  font-weight: 700;
}

.repair-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 28px;
}

.repair-mini-grid > div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-soft);
}

.repair-mini-grid strong,
.repair-mini-grid span {
  display: block;
}

.repair-mini-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.repair-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.option-card {
  padding: 28px;
}

.option-card h3 {
  margin-bottom: 10px;
}

.option-card ul,
.coverage-card ul,
.shop-detail-card ul {
  margin: 20px 0 0;
  padding-left: 21px;
  color: var(--muted);
}

.option-card li,
.coverage-card li,
.shop-detail-card li {
  margin: 8px 0;
}

.repair-warning,
.statutory-note,
.repair-card-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid #d4dfec;
  border-radius: 14px;
  background: var(--surface-blue);
  color: #344157;
}

.repair-warning i,
.statutory-note i {
  margin-top: 3px;
  color: var(--blue-700);
}

.repair-warning p,
.statutory-note {
  margin-bottom: 0;
}

.repair-warning span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.faq-list summary {
  position: relative;
  padding: 18px 52px 18px 19px;
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 17px;
  right: 19px;
  color: var(--blue-700);
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 19px 18px;
  color: var(--muted);
}

/* Accessories */
.accessory-shop-grid,
.jewellery-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.accessory-shop-card,
.jewellery-service {
  padding: 27px;
}

.accessory-shop-card h3,
.jewellery-service h3,
.accessory-feature-card h3 {
  margin-bottom: 10px;
}

.accessory-shop-card p,
.jewellery-service p,
.accessory-feature-card p {
  color: var(--muted);
}

.accessory-shop-card a {
  color: var(--blue-700);
  font-weight: 850;
  text-decoration: none;
}

.accessory-feature-card,
.accessory-trust-card,
.printing-service-card,
.warranty-period-card {
  padding: 25px;
}

.accessory-feature-card > span {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--gold-100);
  color: #79540f;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mini-fill-btn {
  padding: 9px 12px;
  border: 1px solid #b6c7dd;
  border-radius: 9px;
  background: var(--surface);
  color: var(--blue-700);
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 850;
}

.accessory-check-card,
.watch-note-card,
.passport-info-card,
.review-example-card {
  padding: clamp(27px, 3.5vw, 40px);
}

.accessory-check-card > i,
.watch-note-card > i,
.passport-info-card > i,
.review-example-card > i {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  padding: 14px;
  border-radius: 16px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.accessory-check-card p,
.watch-note-card p,
.passport-info-card > p:not(.eyebrow),
.review-example-card p {
  color: var(--muted);
}

/* Printing */
.passport-section {
  background: var(--surface);
}

.price-card {
  overflow: hidden;
  padding: 0;
}

.price-card h3 {
  margin: 0;
  padding: 21px 23px;
  background: var(--navy-950);
  color: #ffffff;
}

.price-card dl {
  margin: 0;
  padding: 9px 23px 19px;
}

.price-card dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.price-card dl > div:last-child {
  border-bottom: 0;
}

.price-card dt {
  color: var(--muted);
}

.price-card dd {
  margin: 0;
  color: var(--navy-950);
  font-weight: 850;
  text-align: right;
}

/* Watches and warranty */
.battery-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.battery-plan-card {
  padding: 30px;
  text-align: center;
}

.battery-plan-card > span {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.battery-plan-card > strong {
  display: block;
  margin: 14px 0 4px;
  color: var(--navy-950);
  font-size: 3rem;
  letter-spacing: -0.05em;
}

.battery-plan-card h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.battery-plan-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.battery-plan-card.featured {
  border: 2px solid var(--blue-600);
  transform: translateY(-8px);
}

.battery-plan-card.featured > b {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue-700);
  font-size: 0.8rem;
}

.warranty-summary-card > i {
  width: 60px;
  height: 60px;
  margin-bottom: 23px;
  padding: 15px;
  border-radius: 17px;
  background: rgba(229, 189, 107, 0.15);
  color: #e5bd6b;
}

.warranty-summary-card .check-list li,
.warranty-summary-card .check-list span {
  color: #cbd8e8;
}

.warranty-summary-card .check-list li > i {
  background: rgba(255, 255, 255, 0.09);
  color: #e5bd6b;
}

.coverage-grid {
  align-items: stretch;
}

.coverage-card {
  padding: clamp(28px, 3.5vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.coverage-card.covered {
  border-top: 5px solid var(--success);
}

.coverage-card.excluded {
  border-top: 5px solid var(--danger);
}

.special-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.note-card {
  padding: 27px;
}

/* Contact */
.contact-hero-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.contact-live-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 10px;
  align-items: center;
  padding: 15px 20px;
  background: var(--navy-950);
  color: #cbd8e8;
}

.contact-live-card p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-live-card strong {
  grid-column: 2;
  color: #ffffff;
  font-size: 0.92rem;
}

.live-dot {
  grid-row: span 2;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #74dca8;
  box-shadow: 0 0 0 5px rgba(116, 220, 168, 0.14);
}

.contact-panel-main {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
}

.contact-panel-main h2 {
  margin-bottom: 5px;
  font-size: 1.75rem;
}

.contact-panel-main p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-panel-logo {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  overflow: hidden;
  border-radius: 50%;
}

.contact-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.contact-panel-grid a {
  display: flex;
  min-height: 78px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--surface-soft);
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-panel-grid a:hover {
  background: var(--blue-100);
  color: var(--blue-700);
}

.contact-panel-grid i {
  width: 25px;
  height: 25px;
}

.contact-shop-photo {
  position: relative;
  margin: 0;
}

.contact-shop-photo img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.contact-shop-photo figcaption {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(7, 20, 38, 0.88);
  color: #ffffff;
}

.contact-shop-photo strong,
.contact-shop-photo small {
  display: block;
}

.contact-shop-photo small {
  color: #cbd8e8;
}

.contact-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.contact-action-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.contact-action-card:hover {
  border-color: #a7bfdf;
  color: var(--ink);
}

.contact-action-card i {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  padding: 12px;
  border-radius: 14px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.contact-action-card strong {
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 1.2rem;
}

.contact-action-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.route-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 38px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-lg);
  background: var(--navy-950);
}

.route-panel h2,
.route-panel h2 span {
  color: #ffffff;
}

.route-panel .eyebrow {
  color: #e5bd6b;
}

.route-panel .section-copy > p:last-child {
  color: #cbd8e8;
}

.route-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.route-chip-grid a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.075);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.route-chip-grid a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.contact-side-panel {
  display: grid;
  gap: 17px;
}

.shop-detail-card {
  padding: 28px;
}

.shop-detail-card > i {
  width: 48px;
  height: 48px;
  margin-bottom: 19px;
  padding: 12px;
  border-radius: 14px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.shop-detail-card.soft {
  background: var(--surface-blue);
}

.shop-detail-card p {
  color: var(--muted);
}

.map-shell {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(237, 244, 252, 0.9), rgba(237, 244, 252, 0.9)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(33, 102, 209, 0.08) 18px 20px);
}

.map-shell iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
}

.map-load-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border: 0;
  border-radius: 12px;
  background: var(--blue-600);
  color: #ffffff;
  cursor: pointer;
  font-weight: 850;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-md);
}

.map-shell.is-loaded .map-load-button {
  display: none;
}

/* Privacy and review */
.privacy-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.privacy-content .note-card h2 {
  margin-bottom: 12px;
  color: var(--navy-950);
  font-size: 1.45rem;
}

.privacy-content .note-card p {
  color: var(--muted);
}

.review-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.review-brand-card {
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: 45px;
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  box-shadow: var(--shadow-md);
}

.review-brand-card img {
  width: min(100%, 320px);
  border-radius: 50%;
}

.review-stars {
  display: flex;
  gap: 7px;
  margin-top: 22px;
  color: var(--gold-500);
}

.review-stars i {
  width: 29px;
  height: 29px;
}

.review-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-helper {
  display: block;
  margin-top: 15px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 70px 0 0;
  background: var(--navy-950);
  color: #bdcbdc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.15fr;
  gap: clamp(28px, 4vw, 54px);
}

nav[aria-label="Footer services"] {
  display: none;
}

.footer-logo-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-mark {
  width: 62px;
  height: 62px;
  flex-basis: 62px;
  box-shadow: none;
}

.footer-brand-card h2,
.footer-column h3 {
  color: #ffffff;
}

.footer-brand-card h2 {
  margin-bottom: 9px;
  font-size: 1.75rem;
}

.footer-tagline {
  max-width: 370px;
  color: #bdcbdc;
  font-size: 0.91rem;
}

.footer-column h3 {
  margin-bottom: 18px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-links a,
.footer-contact a {
  color: #bdcbdc;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

.socials {
  display: flex;
  gap: 9px;
  margin-top: 23px;
}

.socials a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  color: #ffffff;
  text-decoration: none;
}

.socials a:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-contact-list p {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  margin: 0;
  font-size: 0.88rem;
}

.footer-contact-list i {
  margin-top: 2px;
  color: #e5bd6b;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa1b5;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 15px 38px rgba(6, 71, 40, 0.29);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 170ms ease, transform 170ms ease;
}

body.show-floating .floating-wa {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-wa:hover {
  background: #11663e;
  color: #ffffff;
}

.reveal {
  opacity: 1;
}

.error-panel {
  max-width: 780px;
  padding: clamp(54px, 8vw, 96px) 0;
  text-align: center;
}

.error-panel > p:not(.eyebrow) {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.error-panel .hero-actions {
  justify-content: center;
}

@media (max-width: 1120px) {
  :root {
    --header-offset: 98px;
  }

  .top-bar {
    display: none;
  }

  .navbar {
    min-height: 82px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px 24px;
    border-top: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-md);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links > a {
    padding: 13px 14px;
  }

  .nav-links > .nav-button {
    margin: 7px 0 0;
    justify-content: center;
  }

  .page-hero-grid,
  .review-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
    gap: 42px;
  }

  .home-service-grid,
  .journey-grid,
  .accessory-feature-grid,
  .accessory-trust-grid,
  .printing-service-grid,
  .warranty-period-grid,
  .price-grid,
  .contact-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  :root {
    --header-offset: 92px;
  }

  h1 {
    font-size: clamp(2.75rem, 10vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 7.8vw, 3rem);
  }

  .page-hero {
    padding: 58px 0 68px;
  }

  .page-hero-grid,
  .review-hero-grid,
  .two-col,
  .customer-review-panel,
  .aftercare-grid,
  .visit-panel,
  .faq-grid,
  .coverage-grid,
  .route-panel {
    grid-template-columns: 1fr;
  }

  .page-hero-copy,
  .section-copy {
    max-width: 680px;
  }

  .home-integrated-visual {
    width: min(100%, 620px);
  }

  .home-integrated-visual > img {
    aspect-ratio: 4 / 4.15;
    object-position: center 45%;
  }

  .hero-location-card {
    right: 18px;
  }

  .signal-strip__inner {
    grid-template-columns: 1fr;
    padding: 9px 0;
  }

  .signal-strip__inner > * {
    min-height: 42px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip__inner > :last-child {
    border-bottom: 0;
  }

  .next-grid,
  .accessory-shop-grid,
  .jewellery-services,
  .repair-options,
  .battery-plan-grid,
  .review-step-grid,
  .special-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reverse-mobile > :first-child {
    order: 2;
  }

  .reverse-mobile > :last-child {
    order: 1;
  }

  .battery-plan-card.featured {
    transform: none;
  }

  .launch-panel,
  .review-support-panel {
    grid-template-columns: 1fr;
  }

  .launch-actions {
    justify-content: flex-start;
  }

  .route-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-brand-card {
    min-height: 310px;
  }
}

@media (max-width: 580px) {
  .container {
    width: calc(100% - 40px);
  }

  .navbar {
    min-height: 76px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 49px;
    height: 49px;
    flex-basis: 49px;
  }

  .brand-copy strong {
    font-size: 1.17rem;
  }

  .brand-copy small {
    max-width: 190px;
    font-size: 0.62rem;
  }

  .nav-links {
    top: 76px;
    max-height: calc(100vh - 76px);
  }

  .page-hero-copy h1 {
    margin-bottom: 15px;
  }

  .page-hero-home .page-hero-copy h1 span {
    display: inline;
  }

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

  .hero-actions .btn,
  .launch-actions .btn {
    width: 100%;
  }

  .home-trust-row,
  .repair-trust-strip,
  .accessory-trust-strip,
  .printing-trust-strip,
  .watch-trust-strip,
  .contact-trust-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .home-trust-row > span,
  .repair-trust-strip > span,
  .accessory-trust-strip > span,
  .printing-trust-strip > span,
  .watch-trust-strip > span,
  .contact-trust-strip > span {
    justify-content: flex-start;
  }

  .hero-location-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .next-grid,
  .home-service-grid,
  .journey-grid,
  .accessory-shop-grid,
  .accessory-feature-grid,
  .accessory-trust-grid,
  .printing-service-grid,
  .warranty-period-grid,
  .price-grid,
  .jewellery-services,
  .repair-options,
  .battery-plan-grid,
  .review-step-grid,
  .special-case-grid,
  .contact-action-grid,
  .privacy-content,
  .repair-mini-grid,
  .form-row,
  .route-chip-grid {
    grid-template-columns: 1fr;
  }

  .next-card {
    min-height: 0;
  }

  .visit-panel {
    padding: 20px;
  }

  .visit-address-card {
    min-height: 270px;
  }

  .launch-panel,
  .review-support-panel {
    padding: 30px 23px;
  }

  .contact-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-brand-card {
    min-height: 255px;
    padding: 35px;
  }

  .google-rating-summary {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-wa {
    right: 16px;
    bottom: 16px;
    width: 54px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .floating-wa i {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }
}
