/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');

/* ── Custom Properties ── */
:root {
  --primary: #1a2e44;
  --accent: #c9a84c;
  --offwhite: #f8f7f4;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.15);
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Typography ── */
.serif { font-family: 'Playfair Display', serif; }
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.navbar-brand img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: contain;
}
.navbar-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: color var(--transition);
  padding: 0.5rem 0;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--accent); }
.btn-nav-quote {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 9999px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.btn-nav-quote:hover { background: #b8922e !important; color: var(--white) !important; }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  padding: 0.25rem;
}
.mobile-toggle svg { display: block; }
.mobile-menu {
  display: none;
  position: absolute;
  top: 5rem;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 0.75rem 1rem 1rem; }
.mobile-menu li a {
  display: block;
  padding: 0.75rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--primary);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu li a:hover { background: var(--gray-100); color: var(--accent); }
.mobile-menu .btn-mobile-quote {
  display: block;
  margin: 0.5rem 0.75rem 0;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,168,76,.35);
}
.btn-accent:hover { background: #b8922e; transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: #152438; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,46,68,.88) 0%, rgba(26,46,68,.72) 50%, rgba(26,46,68,.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 6rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-logo {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  padding: 0.75rem;
  border: 4px solid rgba(255,255,255,0.2);
  box-shadow: var(--shadow-xl);
  margin-bottom: 2rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero h1 .text-accent { color: var(--accent); }
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 40rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  line-height: 0;
}
.hero-curve svg { display: block; width: 100%; }

/* ── Trust Strip ── */
.trust-strip {
  padding: 3.5rem 0;
  background: var(--offwhite);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.trust-card:hover { box-shadow: var(--shadow-md); }
.trust-icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.trust-icon-wrap svg { color: var(--accent); width: 2rem; height: 2rem; }
.trust-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.trust-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.5; }

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 36rem;
  margin: 0 auto;
}

/* ── Gallery ── */
.gallery-section { padding: 5rem 0; background: var(--offwhite); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.gallery-item.featured {
  grid-column: span 2;
  height: 14rem;
}
.gallery-item:not(.featured) { height: 11rem; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,68,.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { color: var(--white); font-weight: 700; font-size: 0.9rem; }
.gallery-sub { color: var(--accent); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Services Section (Home preview) ── */
.services-preview { padding: 5rem 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.service-card {
  background: var(--offwhite);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  cursor: pointer;
}
.service-card:hover {
  background: var(--white);
  border-color: rgba(201,168,76,0.25);
  box-shadow: var(--shadow-md);
}
.service-dot-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background var(--transition);
}
.service-card:hover .service-dot-wrap { background: rgba(201,168,76,0.3); }
.service-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}
.service-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }
.services-cta { text-align: center; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--primary);
  padding: 5rem 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); color: var(--white); margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 40rem; }
.page-hero-bg-icon {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  opacity: 0.08;
  width: 16rem;
  height: 16rem;
}

/* ── Full Services Page ── */
.services-full { padding: 4rem 0 5rem; }
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.service-full-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.service-full-icon {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius-lg);
  background: rgba(248,247,244,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-full-icon svg { width: 2.5rem; height: 2.5rem; color: var(--accent); }
.service-full-card h3 { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.service-full-card p { color: var(--gray-600); line-height: 1.8; }
.methods-section {
  padding: 4rem 0;
  background: rgba(220,218,214,0.3);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.methods-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  max-width: 48rem;
  margin: 0 auto;
}
.method-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.method-item:last-child { margin-bottom: 0; }
.method-check { flex-shrink: 0; color: var(--accent); width: 1.5rem; height: 1.5rem; margin-top: 0.2rem; }
.method-item h4 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.method-item p { color: var(--gray-600); font-size: 0.95rem; }

/* ── About Page ── */
.about-content { padding: 5rem 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 52rem;
  margin: 0 auto;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.why-icon { flex-shrink: 0; color: var(--accent); width: 2.5rem; height: 2.5rem; }
.why-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.why-card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }
.pricing-section {
  padding: 4rem 0;
  background: rgba(220,218,214,0.3);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 52rem;
  margin: 0 auto;
}
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-700);
  font-size: 0.95rem;
}
.pricing-list li svg { flex-shrink: 0; color: var(--accent); width: 1.5rem; height: 1.5rem; margin-top: 0.1rem; }
.reward-card {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.reward-bg-icon {
  position: absolute;
  right: -1rem;
  top: -1rem;
  opacity: 0.15;
  width: 8rem;
  height: 8rem;
}
.reward-card svg.main-icon { color: var(--accent); width: 2.5rem; height: 2.5rem; margin-bottom: 1rem; }
.reward-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.reward-card p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.7; }
.reward-card a { color: var(--accent); font-weight: 700; transition: color var(--transition); }
.reward-card a:hover { color: var(--white); }

/* ── Contact Page ── */
.contact-layout {
  padding: 4rem 0 5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.contact-info-box {
  background: rgba(220,218,214,0.3);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--gray-100);
}
.contact-info-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-list svg { flex-shrink: 0; color: var(--accent); width: 1.5rem; height: 1.5rem; margin-top: 0.1rem; }
.contact-list .label { display: block; font-weight: 700; color: var(--primary); font-size: 0.9rem; }
.contact-list a { color: var(--gray-600); font-size: 0.9rem; transition: color var(--transition); }
.contact-list a:hover { color: var(--accent); }
.contact-list span.detail { color: var(--gray-600); font-size: 0.9rem; }
.status-box {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--white);
  margin-top: 1.5rem;
}
.status-box h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.status-box p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.status-indicator { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--accent); }
.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.form-box h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--primary); margin-bottom: 0.5rem; }
.form-box .form-intro { color: var(--gray-600); margin-bottom: 2rem; font-size: 0.95rem; }

/* ── Inquiry Form ── */
.inquiry-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field label { font-weight: 600; color: var(--primary); font-size: 0.875rem; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.85);
  color: var(--primary);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-field input.error,
.form-field select.error,
.form-field textarea.error { border-color: #ef4444; }
.form-field .field-error { color: #ef4444; font-size: 0.8rem; }
.form-field textarea { min-height: 7.5rem; resize: vertical; }
.btn-submit {
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  align-self: flex-start;
}
.btn-submit:hover { background: #152438; }

/* ── Quote Section (Home) ── */
.quote-section { padding: 6rem 0; background: var(--offwhite); }
.quote-box {
  max-width: 52rem;
  margin: 0 auto;
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.quote-box-header {
  background: var(--primary);
  padding: 1.25rem 2rem;
}
.quote-box-header p { color: rgba(255,255,255,0.75); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.quote-box-body { padding: 2rem 2rem; }

/* ── CTA Section ── */
.cta-section { padding: 4rem 0; text-align: center; }
.cta-section h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); color: var(--primary); margin-bottom: 1.5rem; }

/* ── Footer ── */
footer {
  background: var(--primary);
  color: var(--white);
}
.footer-inner { padding: 3rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255,255,255,0.1);
  padding: 0.25rem;
}
.footer-brand span { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
.footer-tagline { color: rgba(255,255,255,0.65); font-size: 0.875rem; line-height: 1.6; }
.footer-col h3 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col ul li span { color: rgba(255,255,255,0.65); font-size: 0.875rem; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact-list svg { flex-shrink: 0; color: var(--accent); width: 1.1rem; height: 1.1rem; margin-top: 0.2rem; }
.footer-contact-list a,
.footer-contact-list span { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}

/* ── Contact Details (replaces forms) ── */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-detail-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 1.25rem;
}
.contact-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-detail-label {
  font-weight: 700;
  color: var(--gray-500);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 7rem;
  flex-shrink: 0;
}
.contact-detail-value {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}
.contact-detail-value small {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-500);
  margin-top: 0.2rem;
}
a.contact-detail-value { transition: color var(--transition); }
a.contact-detail-value:hover { color: var(--accent); }

/* ── QR Codes ── */
.qr-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.qr-image {
  width: 100%;
  max-width: 220px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.qr-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
}
@media (max-width: 600px) {
  .qr-row { flex-direction: column; align-items: center; }
  .qr-image { max-width: 200px; }
}

/* ── Page Sections (tab/anchor routing) ── */
.page { display: none; }
.page.active { display: block; }

/* ── Responsive ── */
@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.featured { grid-column: 1; grid-row: span 2; height: auto; min-height: 22rem; }
  .gallery-item:not(.featured) { height: 11rem; }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 2fr; }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .toast { left: auto; width: 28rem; }
  .btn-submit { width: auto; }
}

@media (min-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
  .navbar-links { display: none; }
  .mobile-toggle { display: block; }
  .navbar-brand span { display: none; }
}
