:root {
  color-scheme: light;
  --ink: #1f2228;
  --muted: #6a6670;
  --line: #e6ded8;
  --paper: #fffaf6;
  --surface: #ffffff;
  --rose: #9d465d;
  --rose-dark: #743044;
  --moss: #506b55;
  --clay: #c57954;
  --blue: #3d687b;
  --shadow: 0 24px 70px rgba(54, 42, 36, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 246, 0.92);
  border-bottom: 1px solid rgba(116, 48, 68, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(157, 70, 93, 0.35);
  border-radius: 50%;
  background: #fff;
  color: var(--rose-dark);
  font-family: Georgia, serif;
  font-size: 24px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.nav-links a,
.nav-call,
.lang-toggle {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  color: #4f4a51;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #f2e6e0;
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  cursor: pointer;
}

.nav-call {
  background: var(--rose-dark);
  color: #fff;
}

.section,
.section-band {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-band {
  background:
    linear-gradient(120deg, rgba(157, 70, 93, 0.08), rgba(80, 107, 85, 0.08)),
    var(--paper);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100svh - 71px);
  padding-top: clamp(48px, 7vw, 96px);
}

.hero-copy,
.section-heading,
.split-section > div,
.contact-main {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
  color: #17181d;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 88px);
}

h2 {
  font-size: clamp(32px, 4.5vw, 58px);
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.lead {
  max-width: 670px;
  margin: 22px 0 0;
  color: #514b53;
  font-size: clamp(17px, 2vw, 21px);
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
}

.btn.primary {
  background: var(--rose-dark);
  color: #fff;
  box-shadow: 0 18px 36px rgba(116, 48, 68, 0.22);
}

.btn.secondary {
  border: 1px solid rgba(116, 48, 68, 0.22);
  background: rgba(255, 255, 255, 0.7);
  color: var(--rose-dark);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
}

.hero-facts div,
.service-grid article,
.rating-panel,
.hours-card,
.call-card {
  border: 1px solid rgba(116, 48, 68, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 40px rgba(69, 51, 44, 0.08);
}

.hero-facts div {
  padding: 17px;
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

dd {
  margin: 3px 0 0;
  font-weight: 850;
}

.hero-media {
  position: relative;
  min-height: 630px;
}

.hero-main {
  width: min(100%, 520px);
  height: 620px;
  margin-left: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-float {
  position: absolute;
  width: 210px;
  height: 260px;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-float.one {
  left: 0;
  top: 70px;
}

.hero-float.two {
  left: 40px;
  bottom: 22px;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.quick-strip a {
  min-height: 112px;
  padding: 24px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.quick-strip a:last-child {
  border-right: 0;
}

.quick-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.quick-strip strong {
  display: block;
  margin-top: 5px;
  color: var(--blue);
  font-size: clamp(17px, 2vw, 25px);
  line-height: 1.15;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.section-heading.compact {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

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

.service-grid article {
  padding: 25px;
  min-height: 275px;
}

.service-number {
  display: block;
  margin-bottom: 48px;
  color: var(--clay);
  font-weight: 900;
}

.service-grid p,
.split-section p,
.contact-main p,
.call-card li,
.hours-card p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 36px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--rose-dark);
  font-weight: 850;
  text-underline-offset: 5px;
}

.rating-panel {
  padding: 34px;
  background: #fff;
}

.rating-panel strong {
  display: block;
  color: var(--rose-dark);
  font-size: clamp(70px, 12vw, 132px);
  line-height: 0.88;
}

.rating-panel span {
  display: block;
  margin-top: 12px;
  color: var(--moss);
  font-weight: 900;
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
}

.gallery-feature {
  width: 100%;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #111;
  cursor: pointer;
}

.gallery-feature img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

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

.thumb {
  padding: 0;
  overflow: hidden;
  border: 3px solid transparent;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.thumb.active,
.thumb:focus-visible {
  border-color: var(--rose);
  outline: none;
}

.thumb img {
  width: 100%;
  height: 178px;
  object-fit: cover;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: 28px;
  align-items: start;
}

.call-card,
.hours-card {
  padding: 24px;
  background: #fff;
}

.call-card {
  margin-top: 22px;
}

.call-card ul {
  margin: 14px 0 0;
  padding-left: 19px;
}

.call-card li + li {
  margin-top: 8px;
}

.hours-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  padding: 34px clamp(18px, 5vw, 72px) 96px;
  background: #24222a;
  color: #fff;
}

.site-footer p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer p + p {
  margin-top: 10px;
}

.site-footer strong,
.site-footer a {
  color: #fff;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(32, 24, 24, 0.24);
}

.mobile-cta a {
  min-height: 48px;
  display: grid;
  place-items: center;
  color: var(--rose-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.mobile-cta a + a {
  border-left: 1px solid var(--line);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .gallery-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 520px;
    max-width: 620px;
  }

  .hero-main {
    height: 510px;
    margin-left: 70px;
  }

  .hero-float.one {
    top: 38px;
  }

  .quick-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    gap: 10px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 11px;
  }

  .nav-call {
    display: none;
  }

  .lang-toggle {
    min-width: 42px;
    padding: 9px 10px;
  }

  .section,
  .section-band {
    padding: 48px 16px;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-actions,
  .contact-actions,
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-main {
    width: calc(100% - 30px);
    height: 410px;
    margin-left: 30px;
  }

  .hero-float {
    width: 138px;
    height: 172px;
    border-width: 5px;
  }

  .hero-float.one {
    left: 0;
    top: 32px;
  }

  .hero-float.two {
    left: 4px;
    bottom: 10px;
  }

  .section-heading.compact {
    display: block;
  }

  .service-grid article {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 34px;
  }

  .gallery-feature,
  .gallery-feature img {
    min-height: 390px;
  }

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

  .thumb img {
    height: 92px;
  }

  .hours-card dl div {
    display: block;
  }

  .hours-card dd {
    margin-top: 2px;
  }

  .mobile-cta {
    display: grid;
  }
}
