.reputation-card {
  padding: 18px;
  text-align: center;
  background: linear-gradient(180deg, rgba(40, 29, 22, .96), rgba(26, 19, 15, .98));
  border: 1px solid rgba(240, 179, 106, .12);
}

.reputation-title {
  margin-bottom: 8px;
  font-size: 1.8rem;
  color: #fff7ef;
}

.reputation-subtitle {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.reputation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(240, 179, 106, .12);
  border: 1px solid rgba(240, 179, 106, .18);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.btn-google-review {
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: .25s ease;
}

.btn-google-review.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1d130b;
  box-shadow: 0 10px 20px rgba(216, 139, 61, .22);
}

.btn-google-review.primary:hover {
  transform: translateY(-1px);
  opacity: .96;
  color: #1d130b;
}

.btn-google-review.secondary {
  margin-top: 10px;
  background: rgba(255, 255, 255, .03);
  color: #fff;
  border: 1px solid rgba(240, 179, 106, .35);
}

.btn-google-review.secondary:hover {
  background: rgba(240, 179, 106, .10);
  color: #fff;
}

body.light-mode .reputation-card {
  background: linear-gradient(180deg, #ffffff, #f8f6f3);
  border: 1px solid rgba(216, 139, 61, .16);
}

body.light-mode .reputation-title {
  color: #1d1d1d;
}

body.light-mode .reputation-subtitle {
  color: #666;
}

body.light-mode .btn-google-review.secondary {
  background: #fff;
  color: #2a2a2a;
  border: 1px solid rgba(216, 139, 61, .35);
}

body.light-mode .btn-google-review.secondary:hover {
  background: rgba(216, 139, 61, .08);
}

:root {
  --bg: #14100e;
  --panel: #1d1714;
  --panel-2: #251e1a;
  --line: rgba(255, 255, 255, .08);
  --text: #f7f3f0;
  --muted: #cdbfb4;
  --accent: #d88b3d;
  --accent-2: #f0b36a;
  --success: #1f9d68;
  --shadow: 0 16px 40px rgba(0, 0, 0, .28);
  --radius: 22px;
  --shell-width: 100%;
  --mobile-pad: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 139, 61, .18), transparent 22%),
    radial-gradient(circle at top right, rgba(240, 179, 106, .08), transparent 28%),
    linear-gradient(180deg, #110d0b 0%, #191311 30%, #120e0c 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background .3s ease, color .3s ease;
}

a {
  text-decoration: none;
}

.page-shell {
  width: 100%;
  max-width: var(--shell-width);
  margin: 0 auto;
  min-height: 100vh;
  background: rgba(16, 12, 10, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .04);
  position: relative;
  overflow: hidden;
  transition: background .3s ease, box-shadow .3s ease;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  height: 280px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .16) 0%, rgba(0, 0, 0, .42) 52%, rgba(18, 14, 12, .96) 100%);
}

.topbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  padding: 14px var(--mobile-pad) 0;
}

.glass-btn,
.lang-btn {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: all .3s ease;
  cursor: pointer;
}

.logo-badge {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1008;
  font-size: 21px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.profile-card {
  position: relative;
  z-index: 5;
  margin: -58px var(--mobile-pad) 0;
  background: linear-gradient(180deg, rgba(37, 30, 26, .97), rgba(24, 18, 15, .99));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px 16px 20px;
  box-shadow: var(--shadow);
  transition: background .3s ease, border-color .3s ease;
}

.profile-avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, .16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .3);
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -.02em;
}

h1 {
  font-size: 1.65rem;
  margin-bottom: 4px;
}

.subtitle {
  color: var(--accent-2);
  font-weight: 600;
  font-size: 14px;
}

.lead-text {
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 16px 0;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: .25s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  background: rgba(216, 139, 61, .18);
}

.section {
  padding: 18px var(--mobile-pad) 0;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-title h2 {
  margin: 0;
  font-size: 1.35rem;
}

.section-sub {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.card-soft {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: background .3s ease, border-color .3s ease;
}

.service-card {
  padding: 15px;
  height: 100%;
  min-height: 100%;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-size: 20px;
  color: #1a1008;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.service-card h3,
.contact-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.service-card p,
.contact-card p,
.testimonial-text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 132px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .55));
  color: white;
  opacity: 0;
  transition: .3s ease;
  font-size: 28px;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.testimonial-card {
  padding: 18px;
}

.stars {
  color: #ffcf63;
  letter-spacing: 2px;
  font-size: 14px;
}

.quote-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(216, 139, 61, .14);
  color: var(--accent-2);
  font-size: 18px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.reviewer img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-card {
  display: flex;
  gap: 12px;
  padding: 15px;
  height: 100%;
  align-items: flex-start;
}

.contact-card .mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(216, 139, 61, .14);
  color: var(--accent-2);
  flex-shrink: 0;
  font-size: 18px;
}

.footer-note {
  color: #9c9087;
  font-size: 12px;
  text-align: center;
  padding: 24px 14px 30px;
}

body.light-mode {
  --bg: #f8f9fa;
  --panel: #ffffff;
  --panel-2: #f1f1f1;
  --line: rgba(0, 0, 0, .08);
  --text: #1a1a1a;
  --muted: #555;
  background: linear-gradient(180deg, #f8f9fa 0%, #ececec 100%);
}

body.light-mode .page-shell {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .04);
}

body.light-mode .profile-card {
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
}

body.light-mode .card-soft {
  background: linear-gradient(180deg, #ffffff, #f6f6f6);
}

body.light-mode .lang-btn,
body.light-mode .glass-btn {
  background: rgba(0, 0, 0, .05);
  color: #111;
  border: 1px solid rgba(0, 0, 0, .08);
}

body.light-mode .socials a {
  color: #111;
  background: rgba(0, 0, 0, .04);
  border: 1px solid rgba(0, 0, 0, .06);
}

body.light-mode .socials a:hover {
  background: rgba(216, 139, 61, .18);
}

@media (min-width: 576px) {
  :root {
    --shell-width: 520px;
    --mobile-pad: 18px;
  }

  .page-shell {
    margin: 0 auto;
  }

  .hero-slide {
    height: 320px;
  }

  .profile-card {
    padding: 22px;
  }

  h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.55rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .gallery-item {
    height: 136px;
  }
}

@media (min-width: 768px) {
  body {
    padding: 24px 0;
  }

  :root {
    --shell-width: 560px;
  }

  .page-shell {
    border-radius: 28px;
  }
}

.contact-link {
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  color: inherit;
  border-color: rgba(240, 179, 106, .28);
  background: linear-gradient(180deg, rgba(45, 33, 25, .98), rgba(30, 22, 18, .98));
}

.contact-link:active {
  transform: scale(0.99);
}

.contact-link h4,
.contact-link p {
  color: inherit;
}

body.light-mode .contact-link:hover {
  background: linear-gradient(180deg, #fffaf5, #f7f1ea);
}