:root {
  --bg: #fffaf5;
  --paper: #fffefd;
  --soft: #f6e7e1;
  --soft-strong: #e9cbc3;
  --ink: #362d2b;
  --muted: #766863;
  --accent: #ad6974;
  --accent-dark: #7a4754;
  --sage: #6f7f68;
  --line: #eaded8;
  --shadow: 0 18px 50px rgba(91, 70, 58, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 104px;
  padding: 10px max(28px, calc((100% - var(--max)) / 2 + 28px));
  background: rgba(255, 250, 245, 0.92);
  border-bottom: 1px solid rgba(234, 222, 216, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 170px;
}

.brand-logo {
  width: 172px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: 186px;
  flex: 0 0 186px;
}

.lang-switch {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.lang-button {
  width: 40px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--sage);
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 14px 30px rgba(122, 71, 84, 0.18);
}

.button-small {
  width: 92px;
  min-height: 38px;
  padding: 0 12px;
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 780;
  border-bottom: 1px solid currentColor;
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 62px;
  min-height: 760px;
  padding-top: 54px;
  padding-bottom: 42px;
}

.hero-copy {
  max-width: 560px;
}

h1,
h2,
h3,
p,
dl {
  margin: 0;
}

h1 {
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 520px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}

.quick-facts div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.quick-facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 720;
}

.quick-facts a {
  color: inherit;
  text-decoration: none;
}

.quick-facts a:hover,
.quick-facts a:focus-visible {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.hero-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-photo-main {
  inset: 0 auto auto 0;
  width: 58%;
  height: auto;
  aspect-ratio: 1024 / 1365;
  border-radius: 8px;
  object-fit: contain;
  background: var(--paper);
}

.hero-photo-side {
  right: 0;
  width: 38%;
  height: 40%;
  border-radius: 8px;
}

.hero-photo-side.top {
  top: 34px;
}

.hero-photo-side.bottom {
  bottom: 10px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 32px;
}

.section-heading.compact {
  margin-bottom: 18px;
}

h2 {
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.03;
}

.section-heading p {
  max-width: 450px;
  color: var(--muted);
  font-size: 16px;
}

.services {
  padding-top: 52px;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
}

.price-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.92);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.22;
}

.price-row strong {
  color: var(--accent);
  font-size: 25px;
  line-height: 1.1;
  white-space: nowrap;
}

.booking-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  padding: 30px;
  border-radius: 8px;
  background: #f6e7e1;
  border: 1px solid var(--soft-strong);
}

.booking-badge {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-panel h3 {
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.04;
}

.booking-panel p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.phone-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-dark);
  font-size: 21px;
  font-weight: 800;
}

.qr-block {
  display: grid;
  justify-items: center;
  justify-self: center;
  gap: 12px;
  width: 100%;
  max-width: 224px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 32px rgba(122, 71, 84, 0.12);
  text-align: center;
}

.qr-block span {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.qr {
  width: 138px;
  border: 8px solid #fff;
}

.portfolio {
  max-width: none;
  padding-right: max(28px, calc((100vw - var(--max)) / 2));
  padding-left: max(28px, calc((100vw - var(--max)) / 2));
  background: #fffefd;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-shell {
  max-height: min(820px, 72vh);
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-color: var(--soft-strong) transparent;
  scrollbar-width: thin;
}

.gallery-shell::-webkit-scrollbar {
  width: 10px;
}

.gallery-shell::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-shell::-webkit-scrollbar-thumb {
  background: var(--soft-strong);
  border: 3px solid #fffefd;
  border-radius: 999px;
}

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

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.reviews {
  max-width: none;
  padding-right: max(28px, calc((100vw - var(--max)) / 2));
  padding-left: max(28px, calc((100vw - var(--max)) / 2));
  background: #fffaf5;
}

.review-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 0 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--soft-strong) transparent;
  scrollbar-width: thin;
}

.review-card {
  display: flex;
  flex: 0 0 min(410px, 82vw);
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.92);
  scroll-snap-align: start;
}

.review-card-feature {
  background: #f6e7e1;
  border-color: var(--soft-strong);
}

.review-source {
  color: var(--sage);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.review-card-feature strong {
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 0.9;
}

.review-card p,
.review-quote {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.review-quote {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.35;
}

.review-card footer {
  display: grid;
  gap: 4px;
}

.review-author {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 850;
}

.review-card footer span,
.review-date {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.review-card footer [data-i18n="reviewStars"] {
  color: #b9893f;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}

.review-card a {
  align-self: flex-start;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

.about {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.about-media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.about-copy p {
  max-width: 580px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.values span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbf8f2;
  color: var(--sage);
  font-size: 13px;
  font-weight: 780;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 44px;
  align-items: start;
  padding-top: 36px;
}

.contact p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--accent-dark);
  font-weight: 760;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 84px;
    padding: 10px 18px;
    gap: 10px;
  }

  .brand {
    min-width: 116px;
  }

  .brand-logo {
    width: 116px;
  }

  .nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
    width: 164px;
    flex-basis: 164px;
  }

  .button-small {
    width: 88px;
    min-height: 34px;
    padding: 0 8px;
  }

  .lang-button {
    width: 34px;
    height: 32px;
    font-size: 11px;
  }

  .section-pad {
    padding: 48px 18px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 0;
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-subtitle {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .button,
  .text-link {
    min-height: 44px;
    font-size: 13px;
  }

  .quick-facts {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .quick-facts div {
    padding-top: 12px;
  }

  .hero-media {
    width: 100%;
    min-height: 420px;
  }

  .hero-photo-main {
    width: 58%;
    height: auto;
  }

  .hero-photo-side {
    width: 38%;
  }

  .hero-photo-side.top {
    top: 24px;
  }

  .hero-photo-side.bottom {
    bottom: 4px;
  }

  .section-heading,
  .price-layout,
  .about,
  .contact {
    display: block;
  }

  .section-heading p {
    margin-top: 12px;
  }

  .price-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-row {
    min-height: 62px;
    padding: 12px 16px;
  }

  .price-row span {
    font-size: 18px;
  }

  .price-row strong {
    font-size: 20px;
  }

  .booking-panel {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 16px;
  }

  .booking-panel h3 {
    font-size: 27px;
  }

  .qr {
    width: 116px;
  }

  .portfolio {
    padding-right: 18px;
    padding-left: 18px;
  }

  .reviews {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .gallery-shell {
    max-height: 680px;
    padding-right: 6px;
  }

  .gallery img {
    aspect-ratio: 4 / 5;
  }

  .review-card {
    min-height: 176px;
    padding: 20px;
  }

  .about-media {
    margin-bottom: 28px;
  }

  .about-copy p {
    font-size: 16px;
  }

  .contact-list {
    margin-top: 22px;
  }

  .site-footer {
    padding: 22px 18px;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero-media {
    min-height: 360px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .booking-panel {
    grid-template-columns: 1fr;
  }

  .qr {
    width: 148px;
  }
}
