/* ============================================
   Fisher Home Hardware — Professional Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=DM+Serif+Display&display=swap');

/* --- Custom Properties --- */
:root {
  /* Core palette — matches store signage */
  --navy-950: #0c1a3a;
  --navy-900: #12234e;
  --navy-800: #1b2e6b;
  --navy-700: #243a7a;
  --navy-600: #2f4a8f;
  --navy-500: #4060a8;

  --gold-700: #b8930a;
  --gold-600: #d4a90c;
  --gold-500: #e8b800;
  --gold-400: #f0c830;
  --gold-300: #f5d966;
  --gold-100: #fdf3d0;
  --gold-50: #fefbee;

  --grey-900: #111827;
  --grey-800: #1f2937;
  --grey-700: #374151;
  --grey-600: #4b5563;
  --grey-500: #6b7280;
  --grey-400: #9ca3af;
  --grey-300: #d1d5db;
  --grey-200: #e5e7eb;
  --grey-100: #f3f4f6;
  --grey-50: #f9fafb;

  --white: #ffffff;
  --star: #f59e0b;

  /* Semantic */
  --color-primary: var(--navy-800);
  --color-accent: var(--gold-500);
  --color-accent-hover: var(--gold-600);
  --color-text: var(--grey-700);
  --color-text-secondary: var(--grey-500);
  --color-heading: var(--navy-900);
  --color-bg: var(--white);
  --color-bg-alt: var(--grey-50);
  --color-border: var(--grey-200);

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;
  --text-6xl: 4rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  --space-5xl: 7rem;

  /* Shapes */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --container-max: 1180px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-heading);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-5xl) 0;
}

.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--navy-900); color: var(--grey-300); }
.section--tinted { background: var(--gold-50); }

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.section__tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--color-accent);
}

.section__tag::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--color-accent);
}

.section--dark .section__tag { color: var(--gold-400); }
.section--dark .section__tag::before,
.section--dark .section__tag::after { background: var(--gold-400); }

.section__title {
  font-size: var(--text-4xl);
  color: var(--color-heading);
  margin-bottom: var(--space-md);
}

.section--dark .section__title { color: var(--white); }

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section--dark .section__subtitle { color: var(--grey-400); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-slow);
  background: transparent;
}

.navbar--scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--grey-200);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--white);
  transition: color var(--transition-base);
  z-index: 1001;
}

.navbar--scrolled .navbar__brand { color: var(--color-heading); }

.navbar__brand-icon {
  width: 34px; height: 34px;
  background: var(--navy-800);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
}

.navbar__brand-icon svg { width: 18px; height: 18px; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar__link {
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 8px 14px;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.navbar--scrolled .navbar__link { color: var(--grey-500); }

.navbar__link:hover,
.navbar__link--active {
  color: var(--white);
}

.navbar--scrolled .navbar__link:hover,
.navbar--scrolled .navbar__link--active {
  color: var(--color-heading);
  background: var(--grey-100);
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 8px 20px;
  margin-left: 8px;
  background: var(--color-accent);
  color: var(--navy-900);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.navbar__cta svg { width: 14px; height: 14px; }

.navbar__cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  z-index: 1001;
  padding: 2px 0;
}

.navbar__toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar--scrolled .navbar__toggle span { background: var(--navy-800); }

.navbar__toggle--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__toggle--active span:nth-child(2) { opacity: 0; }
.navbar__toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}

.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(12,26,58,0.94) 0%,
    rgba(18,35,78,0.90) 40%,
    rgba(27,46,107,0.80) 100%
  );
}

.hero__content {
  position: relative; z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-3xl)) var(--space-xl) var(--space-3xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__text { color: var(--white); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(232,184,0,0.12);
  border: 1px solid rgba(232,184,0,0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gold-400);
  margin-bottom: var(--space-lg);
}

.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.hero__title-accent {
  color: var(--gold-400);
}

.hero__subtitle {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero__stats {
  display: flex;
  gap: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__stat-value .stars {
  color: var(--star);
  font-size: var(--text-base);
  letter-spacing: 1px;
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero image card */
.hero__image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(800px) rotateY(-4deg) rotateX(1deg);
  transition: transform var(--transition-slow);
}

.hero__image-card:hover {
  transform: perspective(800px) rotateY(-1deg) rotateX(0deg);
}

.hero__image-card img {
  width: 100%; height: 480px;
  object-fit: cover;
}

.hero__floating-badge {
  position: absolute;
  bottom: var(--space-lg); left: var(--space-lg); right: var(--space-lg);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: var(--shadow-md);
}

.hero__floating-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.hero__floating-icon svg { width: 20px; height: 20px; }

.hero__floating-title {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-heading);
}

.hero__floating-desc {
  font-size: var(--text-xs);
  color: var(--grey-500);
  margin-top: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.btn svg { width: 16px; height: 16px; }

.btn--primary {
  background: var(--color-accent);
  color: var(--navy-900);
  font-weight: 700;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232,184,0,0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-heading);
  border-color: var(--grey-300);
}

.btn--outline:hover {
  background: var(--grey-50);
  border-color: var(--grey-400);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--navy-900);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
}

.btn--lg {
  font-size: var(--text-base);
  padding: 14px 30px;
}

.btn--white {
  background: var(--white);
  color: var(--color-heading);
}

.btn--white:hover {
  background: var(--grey-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  position: relative;
  z-index: 10;
  margin-top: -50px;
  padding-bottom: var(--space-4xl);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--grey-100);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 52px; height: 52px;
  margin: 0 auto var(--space-lg);
  background: var(--gold-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-800);
  transition: all var(--transition-base);
}

.feature-card__icon svg { width: 24px; height: 24px; }

.feature-card:hover .feature-card__icon {
  background: var(--navy-800);
  color: var(--gold-400);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-heading);
  margin-bottom: 6px;
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--grey-500);
  line-height: 1.6;
}

/* ============================================
   ABOUT
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about__experience-badge {
  position: absolute;
  bottom: var(--space-xl); right: var(--space-xl);
  background: var(--navy-900);
  color: var(--white);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
}

.about__experience-value {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  line-height: 1;
}

.about__experience-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
  margin-top: 4px;
}

.about__content .section__tag { margin-bottom: var(--space-sm); }

.about__content .section__title {
  text-align: left;
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

.about__content .section__title::after { display: none; }

.about__desc {
  color: var(--grey-600);
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
  line-height: 1.8;
}

.about__checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: var(--space-xl);
}

.about__check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--grey-700);
}

.about__check-icon {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--gold-50);
  color: var(--navy-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__check-icon svg { width: 12px; height: 12px; }

/* ============================================
   PRODUCTS
   ============================================ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--grey-200);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--grey-300);
}

.product-card__image {
  height: 140px;
  background: var(--grey-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  border-bottom: 1px solid var(--grey-100);
}

.product-card__image svg { width: 40px; height: 40px; }

.product-card:hover .product-card__image {
  color: var(--color-accent);
}

.product-card__body { padding: var(--space-lg); }

.product-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  color: var(--color-heading);
  margin-bottom: 4px;
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--grey-500);
  line-height: 1.6;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-700);
  transition: gap var(--transition-fast);
}

.product-card:hover .product-card__link { gap: 8px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--navy-900);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-banner__subtitle {
  font-size: var(--text-base);
  color: var(--grey-400);
  margin-bottom: var(--space-xl);
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
}

.why-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.1);
}

.why-card__icon {
  width: 52px; height: 52px;
  margin: 0 auto var(--space-lg);
  background: rgba(232,184,0,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  transition: transform var(--transition-base);
}

.why-card__icon svg { width: 24px; height: 24px; }

.why-card:hover .why-card__icon { transform: scale(1.08); }

.why-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: 6px;
}

.why-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews__rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
  padding: var(--space-lg) var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--grey-100);
}

.reviews__rating-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--color-heading);
  line-height: 1;
}

.reviews__rating-info { text-align: left; }

.reviews__stars {
  color: var(--star);
  font-size: var(--text-lg);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 4px;
}

.reviews__rating-sub {
  font-size: var(--text-sm);
  color: var(--grey-500);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: all var(--transition-base);
  position: relative;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-card__quote {
  position: absolute;
  top: 16px; right: 24px;
  font-size: 56px;
  font-family: var(--font-heading);
  color: var(--grey-100);
  line-height: 1;
  pointer-events: none;
}

.review-card__stars {
  color: var(--star);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.review-card__text {
  font-size: var(--text-base);
  color: var(--grey-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: var(--text-xs);
}

.review-card__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-heading);
}

.review-card__source {
  font-size: var(--text-xs);
  color: var(--grey-400);
}

.reviews__google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-3xl);
  padding: var(--space-lg) var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--grey-100);
}

.reviews__google-icon svg { width: 32px; height: 32px; }

.reviews__google-info { text-align: left; }

.reviews__google-rating {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-heading);
}

.reviews__google-count {
  font-size: var(--text-sm);
  color: var(--grey-500);
}

/* ============================================
   CONTACT
   ============================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
}

.contact__card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact__card-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--gold-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-800);
}

.contact__card-icon svg { width: 20px; height: 20px; }

.contact__card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-heading);
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.contact__detail-icon {
  min-width: 20px;
  margin-top: 3px;
  color: var(--grey-400);
}

.contact__detail-icon svg { width: 18px; height: 18px; }

.contact__detail-text {
  font-size: var(--text-base);
  color: var(--grey-600);
  line-height: 1.6;
}

.contact__detail-text strong {
  color: var(--color-heading);
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact__detail-text a {
  color: var(--navy-700);
  font-weight: 600;
}

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

.contact__hours-grid { display: grid; gap: 0; }

.contact__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-100);
}

.contact__hours-row:last-child { border-bottom: none; }

.contact__hours-day { font-weight: 500; color: var(--grey-700); }
.contact__hours-time { color: var(--grey-500); }

.contact__hours-row--highlight { background: var(--gold-50); margin: 0 -var(--space-md); padding: 10px var(--space-md); border-radius: var(--radius-sm); }
.contact__hours-row--highlight .contact__hours-day { color: var(--navy-800); }
.contact__hours-row--highlight .contact__hours-time { color: var(--navy-800); font-weight: 600; }

.contact__actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
  height: 100%; min-height: 440px;
}

.contact__map iframe {
  width: 100%; height: 100%;
  border: 0; min-height: 440px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-950);
  color: var(--grey-400);
  padding: var(--space-4xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer__brand-icon {
  width: 30px; height: 30px;
  background: var(--navy-800);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.footer__brand-icon svg { width: 16px; height: 16px; }

.footer__desc {
  font-size: var(--text-sm);
  color: var(--grey-500);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 8px;
}

.footer__social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-500);
  transition: all var(--transition-base);
}

.footer__social-link svg { width: 16px; height: 16px; }

.footer__social-link:hover {
  background: var(--color-accent);
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--gold-400);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--grey-400);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.footer__link {
  font-size: var(--text-sm);
  color: var(--grey-500);
  transition: all var(--transition-fast);
  padding: 3px 0;
}

.footer__link:hover { color: var(--gold-400); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--grey-500);
  margin-bottom: var(--space-md);
}

.footer__contact-icon {
  min-width: 18px;
  margin-top: 2px;
  color: var(--grey-600);
}

.footer__contact-icon svg { width: 16px; height: 16px; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) 0;
  font-size: var(--text-sm);
  color: var(--grey-600);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  color: var(--grey-600);
  transition: color var(--transition-fast);
}

.footer__bottom-links a:hover { color: var(--gold-400); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger--visible > *:nth-child(1) { transition-delay: 40ms; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(3) { transition-delay: 120ms; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(4) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(5) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(6) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(7) { transition-delay: 280ms; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(8) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(9) { transition-delay: 360ms; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(10) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }

/* Hero entrance */
.hero-enter {
  opacity: 0;
  transform: translateY(30px);
  animation: hero-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-enter--delay-1 { animation-delay: 150ms; }
.hero-enter--delay-2 { animation-delay: 300ms; }
.hero-enter--delay-3 { animation-delay: 450ms; }
.hero-enter--delay-4 { animation-delay: 600ms; }
.hero-enter--delay-5 { animation-delay: 800ms; }

@keyframes hero-up {
  to { opacity: 1; transform: translateY(0); }
}

.hero__image-card {
  opacity: 0;
  animation: hero-card-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes hero-card-in {
  from { opacity: 0; transform: perspective(800px) rotateY(-10deg) rotateX(3deg) translateX(24px); }
  to { opacity: 1; transform: perspective(800px) rotateY(-4deg) rotateX(1deg) translateX(0); }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl); right: var(--space-xl);
  width: 44px; height: 44px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  z-index: 999;
  cursor: pointer;
  border: none;
}

.back-to-top svg { width: 18px; height: 18px; }

.back-to-top--visible { opacity: 1; visibility: visible; transform: translateY(0); }

.back-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0; visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-overlay--visible { opacity: 1; visibility: visible; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; text-align: center; }
  .hero__title { font-size: var(--text-5xl); }
  .hero__subtitle { margin: 0 auto var(--space-2xl); }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__image-card { transform: none; max-width: 480px; margin: 0 auto; }
  .hero__image-card:hover { transform: none; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .navbar__links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    box-shadow: -8px 0 24px rgba(0,0,0,0.08);
    transition: right var(--transition-slow);
    gap: 2px;
  }

  .navbar__links--open { right: 0; }

  .navbar__links--open .navbar__link {
    color: var(--grey-600);
    font-size: var(--text-base);
    padding: var(--space-md);
    width: 100%;
  }

  .navbar__links--open .navbar__link:hover {
    background: var(--grey-50);
    color: var(--color-heading);
  }

  .navbar__links--open .navbar__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: var(--space-md);
    margin-left: 0;
  }

  .navbar__toggle { display: flex; }

  .hero__title { font-size: var(--text-4xl); }
  .section__title { font-size: var(--text-3xl); }
  .features__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .about__checklist { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: var(--space-md); align-items: center; }
  .contact__actions { flex-direction: column; }
  .contact__map { min-height: 300px; }
  .contact__map iframe { min-height: 300px; }
  .cta-banner__title { font-size: var(--text-2xl); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: var(--text-3xl); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .reviews__rating-bar { flex-direction: column; text-align: center; }
}

@media print {
  .navbar, .back-to-top, .cta-banner { display: none !important; }
  .hero { min-height: auto; padding: var(--space-xl) 0; }
  .section { padding: var(--space-xl) 0; }
  body { font-size: 12pt; color: #000; }
}

/* ============================================
   OFFERS SECTION (OVERHAULED)
   ============================================ */
.offers-hero-card {
  background: linear-gradient(145deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-800) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(240, 200, 48, 0.25);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  color: var(--white);
}

.offers-hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-800), var(--gold-400), var(--navy-800));
}

.offers-hero-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(240, 200, 48, 0.12);
  border: 1px solid rgba(240, 200, 48, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  margin-bottom: var(--space-lg);
}

.offers-hero-card__icon {
  width: 58px; height: 58px;
  margin: 0 auto var(--space-lg);
  background: rgba(240, 200, 48, 0.15);
  border: 1px solid rgba(240, 200, 48, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

.offers-hero-card__icon svg { width: 28px; height: 28px; }

.offers-hero-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.offers-hero-card__notice-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px dashed var(--gold-400);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  margin: var(--space-xl) auto;
  max-width: 680px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.offers-hero-card__notice-text {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--gold-300);
  margin: 0;
  line-height: 1.3;
}

.offers-hero-card__subtext {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}

.offers-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.offers-placeholder-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.offers-placeholder-item__icon {
  color: rgba(240, 200, 48, 0.4);
  margin-bottom: 8px;
}

.offers-placeholder-item__icon svg { width: 24px; height: 24px; }

.offers-placeholder-item__title {
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .offers-placeholder-grid { grid-template-columns: 1fr; }
}

/* Active Promotional Flyer Showcase */
.active-flyer-card {
  background: var(--navy-900);
  border: 1px solid rgba(240, 200, 48, 0.35);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: var(--space-xl) 0 var(--space-2xl);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.active-flyer-header {
  background: linear-gradient(90deg, #d97706, #f59e0b, #e8b800);
  color: #12234e;
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.active-flyer-header__badge {
  background: #12234e;
  color: #f0c830;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.active-flyer-body {
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 900px) {
  .active-flyer-body {
    grid-template-columns: 1fr;
  }
}

.flyer-preview-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border: 2px solid rgba(240, 200, 48, 0.4);
  cursor: pointer;
  background: #000;
}

.flyer-preview-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

.flyer-preview-box:hover img {
  transform: scale(1.03);
}

.flyer-preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 35, 78, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.flyer-preview-box:hover .flyer-preview-overlay {
  opacity: 1;
}

.flyer-zoom-btn {
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.deals-summary-list {
  text-align: left;
}

.deals-summary-title {
  font-family: var(--font-heading);
  color: var(--gold-400);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.deals-grid-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 550px) {
  .deals-grid-mini { grid-template-columns: 1fr; }
}

.deal-item-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.deal-item-card__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.deal-item-card__price {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--gold-400);
}

.deal-item-card__rrp {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  margin-left: 6px;
}

/* ============================================
   IN-STORE PHOTO GALLERY
   ============================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  background: var(--white);
  cursor: pointer;
  height: 240px;
  transition: all var(--transition-base);
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-500);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 26, 58, 0.88) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
  color: var(--white);
}

.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__caption {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  color: var(--white);
  margin-bottom: 4px;
}

.gallery-card__sub {
  font-size: var(--text-xs);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.gallery-card__sub svg { width: 14px; height: 14px; }

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(12, 26, 58, 0.94);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox-modal--active {
  opacity: 1;
  visibility: visible;
}

.lightbox-modal__content {
  position: relative;
  max-width: 1000px;
  max-height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-modal__img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
}

.lightbox-modal__caption {
  color: var(--white);
  margin-top: var(--space-md);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  text-align: center;
}

.lightbox-modal__close {
  position: absolute;
  top: -45px; right: 0;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-fast);
  line-height: 1;
}

.lightbox-modal__close:hover {
  color: var(--gold-400);
}

