@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --bg: #f1f2ef;
  --surface: #ffffff;
  --surface-2: #f7efe6;
  --line: #d8d9d3;
  --text: #16342c;
  --muted: #5f6761;
  --primary: #103828;
  --primary-strong: #0a2b21;
  --accent: #c09870;
  --accent-strong: #a57d56;
  --top: #0c2e24;
  --shadow: 0 18px 38px rgba(16, 56, 40, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  color: var(--text);
  line-height: 1.62;
  background:
    radial-gradient(circle at 92% -10%, #dbe4de 0%, transparent 38%),
    radial-gradient(circle at -12% 20%, #eee2d1 0%, transparent 32%),
    var(--bg);
}

a {
  color: inherit;
}

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

.container {
  width: min(1160px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.top-info,
.top-strip {
  background: var(--top);
  color: #fff;
}

.top-info-inner,
.top-strip-inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.top-info-inner p,
.top-strip-inner p {
  margin: 0;
  color: #e3ebe7;
  font-size: 0.93rem;
}

.top-info-inner strong,
.top-strip-inner strong {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(7px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(12, 34, 30, 0.08);
}

.header-row,
.nav-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-logo,
.logo-round {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid #c8d1cb;
  background: #fff;
  flex: 0 0 auto;
}

.brand span,
.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand strong {
  color: var(--primary-strong);
  font-size: 0.98rem;
}

.brand small,
.brand-text > span {
  color: var(--muted);
  font-size: 0.8rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 1px solid #c3cdc7;
  border-radius: 10px;
  padding: 0.42rem 0.72rem;
  background: #fff;
  color: var(--primary-strong);
  font: inherit;
  font-weight: 800;
  font-size: 0.82rem;
  line-height: 1;
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: #aab7b1;
  background: #f6f7f6;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.84rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  background: #f3ebe0;
  border-color: #dcc8af;
  color: var(--primary-strong);
}

.section {
  padding: clamp(1.7rem, 3.8vw, 3rem) 0;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--primary);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  line-height: 1.15;
  margin: 0;
  scroll-margin-top: 100px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 93% -24%, rgba(243, 176, 80, 0.34) 0%, transparent 36%),
    linear-gradient(150deg, #ffffff 0%, #f7f9f7 70%);
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 3.4vw, 2.5rem);
}

.hero-card h1 {
  margin-top: 0.6rem;
  font-size: clamp(2rem, 4.1vw, 3.15rem);
}

.hero-card p {
  margin-top: 0.8rem;
  color: var(--muted);
  max-width: 72ch;
}

.hero-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  background: #f5ede1;
  color: #7a6348;
  border: 1px solid #d7c1a7;
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.74rem 1.15rem;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #2f2418;
  box-shadow: 0 11px 24px rgba(165, 125, 86, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(145deg, #c9a57f 0%, #b38b63 100%);
}

.btn-outline {
  background: #ffffff;
  border-color: #c8d1cb;
  color: var(--primary-strong);
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.section-head p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  max-width: 72ch;
}

.services-showcase {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1.05fr;
  gap: 1rem;
  align-items: stretch;
}

.carousel-panel,
.service-list-panel,
.service-detail-panel,
.about-card,
.about-media,
.contact-card,
.contact-form,
.reviews-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.carousel-panel,
.service-list-panel,
.service-detail-panel,
.about-card,
.contact-card,
.contact-form {
  padding: 1rem;
}

.carousel-panel {
  background: linear-gradient(165deg, #f9faf9 0%, #f2f4f2 100%);
}

.carousel-stage {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
}

.carousel-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 26, 22, 0.05) 34%, rgba(8, 26, 22, 0.58) 100%);
}

.carousel-stage img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.carousel-panel:hover .carousel-stage img {
  transform: scale(1.05);
}

.carousel-overlay {
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.92rem;
  z-index: 2;
  color: #fff;
}

.carousel-kicker {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.carousel-overlay h3 {
  margin-top: 0.24rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.carousel-counter {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 3;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: rgba(10, 35, 29, 0.72);
  color: #fff;
  font-weight: 700;
  font-size: 0.76rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(17, 42, 35, 0.74);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.carousel-arrow.prev {
  left: 0.55rem;
}

.carousel-arrow.next {
  right: 0.55rem;
}

.carousel-dots {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.carousel-dots button {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 999px;
  background: #cfd6d1;
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--primary);
}

.service-list-panel {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f6 100%);
}

.service-list-panel h3 {
  margin: 0;
  font-size: 1.35rem;
}

.service-list-help {
  margin: 0.42rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.service-buttons {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.58rem;
  max-height: 470px;
  overflow: auto;
  padding-right: 0.25rem;
}

.service-buttons::-webkit-scrollbar {
  width: 8px;
}

.service-buttons::-webkit-scrollbar-thumb {
  background: #cfd6d1;
  border-radius: 999px;
}

.service-buttons::-webkit-scrollbar-track {
  background: transparent;
}

.service-option {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.72rem;
  text-align: left;
  border: 1px solid #cfd6d1;
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 0.74rem 0.76rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.service-option-main {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.58rem;
}

.service-option-index {
  flex: 0 0 auto;
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #d5e1db;
  background: #f8faf8;
  color: #466259;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.service-option-name {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.25;
}

.service-option-hint {
  align-self: center;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: #e6f1eb;
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
}

.service-option:hover,
.service-option:focus-visible {
  border-color: #aab7b1;
  background: #f8faf8;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(21, 84, 71, 0.11);
}

.service-option.active {
  border-color: var(--primary);
  background: linear-gradient(132deg, #155447 0%, #0f4035 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(12, 53, 44, 0.24);
}

.service-option.active .service-option-index {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.service-option.active .service-option-hint {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.service-detail-panel h3 {
  margin-top: 0.35rem;
  font-size: 1.75rem;
}

.service-detail-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dde1dd;
  border-radius: 999px;
  background: #f8faf8;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.24rem 0.52rem;
  min-height: 26px;
}

.service-detail-panel {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f7 100%);
}

.service-detail-panel p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.service-detail-panel ul {
  margin: 0.74rem 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.service-detail-panel li {
  position: relative;
  padding-left: 1.15rem;
  margin: 0;
  color: var(--muted);
}

.service-detail-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.service-pricing {
  margin-top: 0.72rem;
  border: 1px solid #dce2dd;
  border-radius: 12px;
  background: #fff;
  padding: 0.72rem;
}

.service-pricing h4 {
  margin: 0;
  font-size: 1.03rem;
  color: var(--primary-strong);
}

.pricing-table {
  width: 100%;
  margin-top: 0.52rem;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid #e2ebe5;
  text-align: left;
  padding: 0.48rem 0.42rem;
  vertical-align: top;
}

.pricing-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5e766d;
}

.pricing-table td:last-child {
  font-weight: 700;
  color: var(--primary-strong);
}

.pricing-note {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: #5f746c;
}

.service-detail-panel .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.service-empty {
  display: grid;
  gap: 0.62rem;
  border: 1px dashed #cfd6d1;
  border-radius: 12px;
  padding: 0.82rem;
  background: #fbfbfa;
}

.service-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (min-width: 1080px) {
  .service-detail-panel {
    position: sticky;
    top: 98px;
    align-self: start;
  }
}

.about-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
}

.about-card h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
}

.founder-box {
  margin-top: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem;
  border: 1px solid #d0ddd5;
  border-radius: 12px;
  background: #f8faf8;
}

.founder-avatar {
  width: 94px;
  height: 118px;
  border-radius: 14px;
  border: 2px solid #c2ccc6;
  background: #fff;
  object-fit: cover;
  object-position: center 20%;
  flex: 0 0 auto;
}

.founder-name {
  display: block;
  color: var(--primary-strong);
  font-size: 0.96rem;
}

.founder-note {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.about-card p {
  margin: 0.62rem 0 0;
  color: var(--muted);
}

.about-social-inline {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icon-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.social-icon-link:hover,
.social-icon-link:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.social-icon-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.social-icon-facebook {
  background: #1877f2;
  box-shadow: 0 2px 6px rgba(24, 119, 242, 0.32);
}

.social-icon-instagram {
  background:
    radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 8%, #fd5949 38%, #d6249f 65%, #285aeb 100%);
  box-shadow: 0 2px 6px rgba(214, 36, 159, 0.26);
}

.about-media {
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.reviews-grid article {
  padding: 1rem;
}

.reviews-grid p {
  margin: 0;
  color: var(--muted);
}

.reviews-grid strong {
  display: block;
  margin-top: 0.7rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.contact-card h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}

.contact-card p {
  margin: 0.62rem 0 0;
  color: var(--text);
  line-height: 1.5;
}

.contact-card p strong {
  color: var(--primary-strong);
}

.contact-legal {
  margin-top: 0.9rem;
  padding: 0.62rem 0.68rem;
  border: 1px solid #d1dfd7;
  border-radius: 12px;
  background: #f7f8f7;
  font-size: 0.92rem;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 0.5rem;
}

.contact-form label {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd6d1;
  border-radius: 12px;
  padding: 0.66rem 0.72rem;
  font: inherit;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #afc0b8;
  outline-offset: 1px;
  border-color: var(--primary);
}

.note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hp-field {
  display: none !important;
}

.form-status {
  min-height: 1.3em;
}

.form-status.is-success {
  color: #1f7a43;
  font-weight: 700;
}

.form-status.is-error {
  color: #7b5d45;
  font-weight: 700;
}

.site-footer {
  margin-top: 0.8rem;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-row {
  min-height: 68px;
  display: flex;
  align-items: center;
}

.footer-row p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% -18%, rgba(243, 176, 80, 0.28) 0%, transparent 40%),
    linear-gradient(150deg, #ffffff 0%, #f6f8f6 70%);
  box-shadow: var(--shadow);
  padding: clamp(1.1rem, 2.8vw, 2rem);
}

.page-hero h1 {
  margin-top: 0.5rem;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
}

.page-hero p {
  margin-top: 0.74rem;
  color: var(--muted);
  max-width: 72ch;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--primary);
}

.actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.notice {
  margin-top: 0.7rem;
  border: 1px solid #d9c6ae;
  border-radius: 12px;
  background: #f8f1e8;
  color: #6b5a45;
  padding: 0.68rem 0.74rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.card h1,
.card h2 {
  margin-top: 0.36rem;
}

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

.card img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.values {
  margin: 0.75rem 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.values li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
}

.values li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

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

.review {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.review p {
  margin: 0;
  color: var(--muted);
}

.review strong {
  display: block;
  margin-top: 0.7rem;
  color: var(--primary-strong);
}

.google-reviews-shell {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f9faf9 100%);
  padding: 0.95rem;
}

.google-rating-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.7rem;
}

.google-rating-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 800;
}

.google-rating-value {
  margin: 0.1rem 0 0;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1;
  color: var(--primary-strong);
  font-weight: 800;
}

.google-rating-count {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.google-status {
  margin: 0.8rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.google-status.is-error {
  color: #7b5d45;
}

.google-review {
  border: 1px solid #d6d8db;
  border-radius: 22px;
  background: #f3f4f6;
  box-shadow: none;
  min-height: 0;
  padding: 0.9rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
}

.google-reviews-shell .reviews-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.google-review-head {
  display: flex;
  align-items: flex-start;
  gap: 0.58rem;
}

.google-review-avatar-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.google-review-avatar,
.google-review-avatar-fallback {
  width: 48px;
  height: 48px;
  border-radius: 999px;
}

.google-review-avatar {
  object-fit: cover;
}

.google-review-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.35rem;
  background: #d13b08;
  color: #fff;
}

.google-review-badge {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.82rem;
  color: #1a73e8;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.2);
}

.google-review-head-text {
  min-width: 0;
}

.google-review-name-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.google-review-name {
  margin: 0;
  color: #1a1d22;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
  display: inline-block;
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-review-verified {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a73e8;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
}

.google-review-text {
  margin: 0;
  color: #1e2329;
  font-size: 0.96rem;
  line-height: 1.4;
}

.google-review .google-review-meta {
  margin-top: 0;
  display: block;
}

.google-review-meta {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.google-review-stars {
  margin: 0;
  color: #f2b500;
  font-size: 1.18rem;
  letter-spacing: 0.04em;
}

.google-review-date {
  margin: 0.12rem 0 0;
  color: #767b84;
  font-size: 0.82rem;
  font-weight: 500;
}

.google-review-author {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.google-review-author a {
  color: var(--primary-strong);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.google-source {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.google-source a {
  color: var(--primary-strong);
  font-weight: 700;
}

.google-actions {
  margin-top: 0.42rem;
  display: flex;
  justify-content: flex-end;
}

.google-discreet-link {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.58rem;
  border: 1px solid #d4dbd6;
  border-radius: 999px;
  background: #f6f8f7;
  color: #65716b;
  font-size: 0.81rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.google-discreet-link:hover,
.google-discreet-link:focus-visible {
  border-color: #c2cbc5;
  color: var(--primary-strong);
  background: #f0f4f2;
}

@media (max-width: 780px) {
  .google-review {
    min-height: auto;
    border-radius: 18px;
    padding: 0.75rem 0.68rem;
  }

  .google-review-avatar-wrap {
    width: 42px;
    height: 42px;
  }

  .google-review-avatar,
  .google-review-avatar-fallback {
    width: 42px;
    height: 42px;
  }

  .google-review-name {
    max-width: 150px;
    font-size: 0.88rem;
  }

  .google-review-stars {
    font-size: 1.05rem;
  }

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

.google-lite-widget {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
  padding: 0.9rem;
}

.google-lite-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.google-lite-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 800;
}

.google-lite-stars {
  margin: 0.12rem 0 0;
  color: #8a6b4b;
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: 0.05em;
}

.google-lite-map {
  margin-top: 0.8rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.google-lite-map iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

.google-lite-note {
  margin: 0.64rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-nav {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.service-nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  border: 1px solid #e1d7c7;
  background: #fff;
  color: var(--primary-strong);
  border-radius: 999px;
  padding: 0.34rem 0.66rem;
}

.service-nav a:hover,
.service-nav a:focus-visible {
  background: #f7efe6;
  border-color: #d8c3aa;
}

.service-detail {
  margin-top: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f7 100%);
  box-shadow: var(--shadow);
  padding: 0.9rem;
}

.service-detail-head {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1rem;
  align-items: start;
}

.service-detail-head img {
  width: 100%;
  min-height: 230px;
  object-fit: cover;
  border-radius: 12px;
}

.service-detail-body h2 {
  margin-top: 0.28rem;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.service-detail-body p {
  margin: 0.56rem 0 0;
  color: var(--muted);
}

.service-detail-body ul {
  margin: 0.72rem 0 0;
  padding-left: 1rem;
}

.service-detail-body li {
  margin: 0.34rem 0;
  color: var(--muted);
}

.footer {
  margin-top: 0.8rem;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 76px;
  padding: 0.7rem 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.56rem;
  font-weight: 700;
  font-size: 0.78rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: #d8caa9;
  background: #fff4e2;
  color: var(--primary-strong);
}

@media (max-width: 1120px) {
  .services-showcase,
  .about-layout,
  .contact-layout,
  .two-col,
  .service-detail-head {
    grid-template-columns: 1fr;
  }

  .service-buttons {
    max-height: none;
  }

  .carousel-stage img {
    height: 390px;
  }

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

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

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

@media (max-width: 780px) {
  .top-info-inner,
  .top-strip-inner {
    min-height: auto;
    padding: 0.55rem 0;
    justify-content: flex-start;
  }

  .header-row,
  .nav-row {
    position: relative;
    flex-direction: row;
    align-items: center;
    padding: 0.55rem 0;
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.2rem);
    left: 0;
    right: 0;
    margin-left: 0;
    width: 100%;
    max-width: none;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.58rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    overflow: visible;
    z-index: 45;
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    white-space: normal;
    border: 1px solid var(--line);
    background: #fff;
    padding: 0.52rem 0.72rem;
    text-align: left;
  }

  .page-hero,
  .card,
  .service-detail {
    padding: 0.86rem;
  }

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

  .carousel-stage img {
    height: 280px;
  }

  .carousel-overlay h3 {
    font-size: 1.35rem;
  }

  .service-option {
    align-items: flex-start;
  }

  .service-option-hint {
    margin-top: 0.15rem;
  }

  .service-detail-headline {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-buttons {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

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

  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .founder-box {
    align-items: flex-start;
  }

  .founder-avatar {
    width: 78px;
    height: 98px;
  }

  .footer-inner {
    text-align: left;
  }
}

/* UX/UI refresh */
.skip-link {
  position: absolute;
  left: 0.8rem;
  top: -120px;
  z-index: 200;
  padding: 0.62rem 0.86rem;
  border-radius: 10px;
  background: #fff;
  color: var(--primary-strong);
  text-decoration: none;
  font-weight: 800;
  border: 1px solid #c0cac4;
  box-shadow: 0 10px 20px rgba(8, 35, 29, 0.16);
}

.skip-link:focus {
  top: 0.8rem;
}

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

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

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 95, 83, 0), rgba(15, 95, 83, 0.35), rgba(240, 155, 52, 0.35), rgba(15, 95, 83, 0));
  pointer-events: none;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
}

.hero-side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 110% -10%, rgba(240, 155, 52, 0.3) 0%, transparent 40%),
    linear-gradient(165deg, #ffffff 0%, #f6f7f6 100%);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.3vw, 1.35rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-side-card h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.68rem);
  margin-top: 0.12rem;
}

.hero-metrics {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
}

.hero-metrics li {
  border: 1px solid #dce2dd;
  border-radius: 12px;
  background: #fff;
  padding: 0.65rem 0.72rem;
}

.hero-metrics strong {
  display: block;
  font-size: 1.02rem;
  color: var(--primary-strong);
  line-height: 1.25;
}

.hero-metrics span {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 0.12rem;
}

.hero-side-cta {
  width: 100%;
  margin-top: auto;
}

.service-option,
.service-detail-panel,
.carousel-panel,
.reviews-grid article,
.contact-form,
.about-card,
.about-media,
.contact-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-detail-panel:hover,
.carousel-panel:hover,
.about-card:hover,
.contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 64, 53, 0.18);
}

.contact-form input,
.contact-form textarea {
  background: #fbfdfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15, 95, 83, 0.12);
}

.btn {
  transition: transform 0.16s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  box-shadow: 0 10px 20px rgba(15, 64, 53, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

  .reveal,
  .btn,
  .service-option,
  .service-detail-panel,
  .carousel-panel,
  .about-card,
  .contact-form {
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-side-card {
    order: 2;
  }
}

#services .services-showcase--split {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

#services .service-list-panel,
#services .service-detail-panel {
  background: #f6f6f2;
  border: 1px solid #dedfd9;
  border-radius: 28px;
}

#services .service-list-panel {
  padding: 24px;
}

#services .service-list-sticky {
  position: sticky;
  top: 100px;
}

#services .service-list-panel h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
}

#services .service-list-help {
  margin: 0 0 14px;
  color: var(--muted);
}

#services .service-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 560px;
  overflow: auto;
  padding-right: 6px;
}

#services .service-buttons::-webkit-scrollbar {
  width: 8px;
}

#services .service-buttons::-webkit-scrollbar-thumb {
  background: rgba(16, 56, 40, 0.25);
  border-radius: 999px;
}

#services .service-button {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 14px 15px;
  display: block;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

#services .service-button:hover {
  transform: translateY(-2px);
  border-color: #12473b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

#services .service-button.is-active {
  background: #103828;
  color: #fff;
  border-color: #103828;
  box-shadow: 0 10px 22px rgba(16, 56, 40, 0.2);
}

#services .service-button-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.3;
}

#services .service-detail-panel--hero {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 36%) minmax(0, 1fr);
  min-height: 560px;
  padding: 0;
}

#services .service-detail-media {
  position: relative;
  min-height: 100%;
  background: #e4e7e4;
}

#services .service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

#services .service-detail-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #fff;
  z-index: 2;
}

#services .carousel-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  opacity: 0.9;
}

#services .service-detail-overlay h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  line-height: 1;
}

#services .carousel-counter {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(17, 28, 24, 0.55);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 2;
  backdrop-filter: blur(8px);
}

#services .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 28, 24, 0.45);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}

#services .carousel-arrow:hover {
  background: rgba(17, 28, 24, 0.7);
}

#services .carousel-arrow.prev {
  left: 20px;
}

#services .carousel-arrow.next {
  right: 20px;
}

#services .carousel-dots {
  position: absolute;
  left: 24px;
  bottom: 18px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

#services .carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

#services .carousel-dots button.is-active {
  background: #103828;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

#services .service-detail-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fcfcfa;
}

#services .service-detail-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

#services .service-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe0db;
  background: #f2f4f2;
  color: #12473b;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 999px;
}

#services #serviceTitle {
  margin: 0 0 18px;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  line-height: 1.05;
}

#services #serviceSummary {
  margin: 0 0 24px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: #4f5f56;
  max-width: 60ch;
}

#services .service-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

#services .service-bullets li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.6;
}

#services .service-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b38b63;
  transform: translateY(-50%);
}

#services .service-pricing {
  margin-top: 28px;
  padding: 22px;
  border-radius: 20px;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

#services .service-pricing-panel {
  margin-top: 18px;
}

#services .service-pricing h4 {
  margin: 0 0 14px;
}

#services .pricing-table {
  width: 100%;
  border-collapse: collapse;
}

#services .pricing-table th,
#services .pricing-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid #dee1dc;
}

#services .pricing-note {
  margin: 14px 0 0;
  color: #637168;
  font-size: 0.95rem;
}

#services .service-detail-actions {
  margin-top: 30px;
}

#services .service-detail-actions .btn {
  width: auto;
}

@media (max-width: 1100px) {
  #services .services-showcase--split {
    grid-template-columns: 1fr;
  }

  #services .service-list-sticky {
    position: static;
  }

  #services .service-detail-panel--hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  #services .service-detail-media img {
    min-height: 300px;
  }

  #services .service-detail-content {
    padding: 28px 22px;
  }

  #services .service-buttons {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 680px) {
  #services .service-button {
    padding: 13px 14px;
  }

  #services .service-detail-headline {
    flex-direction: column;
    align-items: flex-start;
  }

  #services #serviceSummary {
    font-size: 1.02rem;
  }
}
