:root {
  --ink: #211819;
  --muted: #6d5a5e;
  --paper: #fff8f2;
  --soft: #f5e7dc;
  --rose: #9b5361;
  --wine: #3a1d25;
  --gold: #b99055;
  --line: rgba(58, 29, 37, 0.16);
  --shadow: 0 22px 70px rgba(58, 29, 37, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(255, 248, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 31px;
  height: 44px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 0.92rem;
  color: var(--muted);
}

.language-switcher {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.lang {
  min-width: 38px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.lang.active {
  background: var(--wine);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 69px);
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px) 48px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.6rem, 9vw, 8.2rem);
}

h2 {
  font-size: clamp(2.1rem, 4.7vw, 4.6rem);
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.3rem);
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 16px 34px rgba(58, 29, 37, 0.24);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 600px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.proof-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.proof-strip strong {
  display: block;
  font-size: 1.5rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.86rem;
}

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

.hero-photo {
  width: 100%;
  height: 610px;
  object-fit: cover;
  border-radius: 34px 34px 6px 34px;
  box-shadow: var(--shadow);
}

.rating-card {
  position: absolute;
  right: clamp(12px, 4vw, 36px);
  bottom: -24px;
  width: min(280px, calc(100% - 24px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.rating-card strong {
  display: block;
  margin-top: 8px;
}

.rating-card p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  background: #fff;
}

.intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.image-band {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  min-height: 420px;
}

.image-band figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.image-band figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(33, 24, 25, 0.76);
  color: #fff;
  font-weight: 800;
}

.services {
  background: var(--wine);
  color: #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  gap: 42px;
  align-items: end;
}

.services .section-kicker,
.reviews .section-kicker {
  color: #d8aa73;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.service-grid article {
  min-height: 280px;
  padding: 28px;
  background: #42212b;
}

.service-grid span {
  color: #d8aa73;
  font-weight: 800;
}

.service-grid h3 {
  margin: 58px 0 12px;
  font-size: 1.32rem;
}

.service-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.craft {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.craft-media img {
  width: 100%;
  height: min(600px, 72vh);
  object-fit: cover;
  border-radius: 8px 34px 34px 34px;
  box-shadow: var(--shadow);
}

.craft-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tool-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-weight: 800;
}

.reviews {
  background: #2a191e;
  color: #fff;
}

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

blockquote {
  margin: 0;
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.18;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 28px;
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.contact-card,
.hours {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-card {
  padding: clamp(30px, 5vw, 58px);
}

.contact-card p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.hours {
  padding: 30px;
}

.hours h3 {
  margin: 0 0 20px;
  font-size: 1.25rem;
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.hours strong {
  color: var(--ink);
}

.map-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--rose);
  font-weight: 800;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .intro,
  .section-heading,
  .craft,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-photo {
    min-height: 0;
    height: 520px;
  }

  .service-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 10px 14px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .proof-strip,
  .image-band,
  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-photo {
    height: 420px;
  }

  .rating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -58px 14px 0;
  }

  .image-band figure,
  .image-band img {
    min-height: 320px;
  }

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

  .hours p {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
