@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --mahogany: #7B1E1E;
  --bronze: #b8976a;
  --linen: #f4f0e6;
  --linen-dim: rgba(244, 240, 230, 0.55);
  --body: #5e2c2a;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--linen);
  color: #2c1a1a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Playfair Display', serif;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.main-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--linen);
}

.topbar {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  background: var(--bronze);
  color: #fff;
  padding: 8px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.lang-bar {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(94, 44, 42, 0.12);
  background: var(--linen);
}

.mobile-lang-bar {
  display: none;
}

.topbar i {
  width: 14px;
  height: 14px;
}

.topbar .divider {
  opacity: 0.4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--mahogany);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

.navbar {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-main {
  font-family: 'Playfair Display', serif;
  color: var(--linen);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-sub {
  color: var(--bronze);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--linen);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--bronze);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: var(--bronze);
  color: #fff;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 1px;
}

.btn-primary:hover {
  background: #9a7d56;
}

.btn-outline {
  border: 1px solid var(--mahogany);
  color: var(--mahogany);
  background: transparent;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 1px;
}

.btn-outline:hover {
  background: var(--mahogany);
  color: var(--linen);
}

.mobile-toggle {
  border: none;
  background: transparent;
  color: var(--linen);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.mobile-toggle i {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.open {
  max-height: 340px;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 18px 24px 24px;
}

.mobile-menu li {
  padding: 10px 0;
}

.mobile-menu a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--linen);
}

.mobile-menu a.active {
  color: var(--bronze);
}

.page-main {
  flex: 1;
}

.section {
  padding: 96px 0;
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.badge-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--bronze);
}

.badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  overflow: hidden;
  background: var(--linen);
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
}

.hero-bg-left {
  width: 50%;
  background: var(--linen);
}

.hero-bg-right {
  width: 50%;
  position: relative;
}

.hero-bg-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #d5ccc0;
}

.hero-bg-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #f4f0e6 0%, transparent 18%);
}

.hero-mobile-bg {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-copy {
  padding-right: 40px;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 88px);
  line-height: 1.05;
  color: var(--mahogany);
  margin-bottom: 24px;
}

.hero h1 em {
  color: var(--bronze);
  font-style: normal;
}

.hero-subtitle {
  max-width: 520px;
  color: var(--body);
  line-height: 1.75;
  font-size: 17px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(94, 44, 42, 0.15);
  display: flex;
  gap: 44px;
}

.hero-stats strong {
  display: block;
  color: var(--mahogany);
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: #7a6555;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-hint span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}

.scroll-track {
  width: 1px;
  height: 48px;
  background: rgba(184, 151, 106, 0.25);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--bronze);
  animation: scrollDown 1.6s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(200%);
  }
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 58px;
  align-items: flex-end;
}

.section-head h2 {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.06;
  color: var(--mahogany);
}

.link-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bronze);
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.link-accent i {
  width: 14px;
  height: 14px;
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: #f9f8f5;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(94, 44, 42, 0.14);
}

.service-image {
  position: relative;
  height: 192px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.06);
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(94, 44, 42, 0.7) 0%, transparent 60%);
}

.service-icon {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bronze);
  border-radius: 1px;
  z-index: 2;
}

.service-icon i {
  width: 18px;
  height: 18px;
  color: #fff;
}

.service-body {
  padding: 24px;
}

.service-body h3 {
  color: var(--mahogany);
  font-size: 30px;
  margin-bottom: 4px;
}

.service-sub {
  color: var(--bronze);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--body);
  font-size: 14px;
  line-height: 1.7;
}

.service-underline {
  height: 2px;
  margin: 0 24px 24px;
  background: var(--bronze);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}

.service-card:hover .service-underline {
  opacity: 1;
  transform: scaleX(1);
}

.gallery-wrap {
  height: 520px;
  display: flex;
  gap: 8px;
  overflow: hidden;
  border-radius: 2px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  flex: 1 0 0;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.5s ease;
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 100%);
  transition: background 0.5s ease;
}

.gallery-label-open {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s ease;
}

.gallery-label-open .kicker {
  color: var(--bronze);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-label-open .title {
  color: #fff;
  font-size: 28px;
}

.gallery-label-closed {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.gallery-label-closed p {
  color: rgba(255, 255, 255, 0.85);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.gallery-wrap.has-hover .gallery-item {
  flex: 0.6 0 0;
}

.gallery-wrap.has-hover .gallery-item.active {
  flex: 4 0 0;
}

.gallery-wrap.has-hover .gallery-item.active img {
  transform: scale(1.04);
}

.gallery-wrap.has-hover .gallery-item.active .overlay {
  background: linear-gradient(to top, rgba(94, 44, 42, 0.78) 0%, transparent 55%);
}

.gallery-wrap.has-hover .gallery-item.active .gallery-label-open {
  opacity: 1;
  transform: translateY(0);
}

.gallery-wrap.has-hover .gallery-item.active .gallery-label-closed {
  opacity: 0;
}

.testimonials {
  background: var(--mahogany);
}

.testimonials .section-head-centered {
  margin-bottom: 56px;
  text-align: center;
}

.testimonials .section-head-centered h2 {
  color: var(--linen);
  font-size: clamp(38px, 4vw, 56px);
}

.badge-centered {
  justify-content: center;
}

.testimonial-card {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  padding: 56px;
  background: rgba(244, 240, 230, 0.06);
  border: 1px solid rgba(184, 151, 106, 0.2);
  border-radius: 2px;
}

.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.testimonial-card {
  flex: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.testimonial-card.is-transitioning {
  opacity: 0;
  transform: translateY(8px);
}

.testimonial-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 151, 106, 0.26);
  border-radius: 999px;
  background: rgba(244, 240, 230, 0.06);
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.testimonial-arrow:hover {
  transform: translateY(-1px);
  background: rgba(184, 151, 106, 0.12);
  border-color: rgba(184, 151, 106, 0.46);
}

.testimonial-arrow:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}

.testimonial-arrow i {
  width: 22px;
  height: 22px;
}

.quote-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  color: var(--bronze);
  opacity: 0.2;
}

.quote-icon i {
  width: 48px;
  height: 48px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
}

.stars i {
  width: 16px;
  height: 16px;
  color: var(--bronze);
  fill: var(--bronze);
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  color: rgba(244, 240, 230, 0.9);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.65;
  text-align: center;
  font-style: italic;
  margin-bottom: 38px;
}

.testimonial-name {
  color: var(--linen);
  text-align: center;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.testimonial-loc {
  margin-top: 6px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 99px;
  background: rgba(184, 151, 106, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  width: 28px;
  background: var(--bronze);
}

@media (max-width: 900px) {
  .testimonial-carousel {
    gap: 12px;
  }

  .testimonial-card {
    padding: 44px 24px;
  }

  .testimonial-arrow {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 640px) {
  .testimonial-carousel {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .testimonial-arrow {
    justify-self: center;
  }

  .testimonial-arrow-prev {
    grid-column: 1;
  }

  .testimonial-card {
    grid-column: 1 / -1;
    margin-top: 12px;
  }

  .testimonial-arrow-next {
    grid-column: 3;
  }

  .testimonial-arrow-prev,
  .testimonial-arrow-next {
    align-self: start;
    margin-top: 10px;
    z-index: 2;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-left h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.06;
  color: var(--mahogany);
  margin-bottom: 22px;
}

.contact-left .lead {
  color: var(--body);
  max-width: 380px;
  line-height: 1.75;
  margin-bottom: 42px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--linen);
  border-radius: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  width: 18px;
  height: 18px;
  color: var(--bronze);
}

.contact-label {
  color: var(--bronze);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-text {
  color: var(--mahogany);
  font-size: 14px;
  font-weight: 500;
}

.contact-form-wrap {
  background: var(--linen);
  border-radius: 2px;
  padding: 40px;
}

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

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  color: var(--mahogany);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid rgba(94, 44, 42, 0.15);
  background: #ede8da;
  border-radius: 1px;
  padding: 12px 16px;
  font-size: 14px;
  color: #2c1a1a;
  font-family: 'Montserrat', sans-serif;
}

.textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-success {
  text-align: center;
  padding: 48px 12px;
}

.contact-success .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: var(--mahogany);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-success .icon i {
  width: 24px;
  height: 24px;
  color: #fff;
}

.contact-success h3 {
  color: var(--mahogany);
  font-size: 38px;
  margin-bottom: 12px;
}

.contact-success p {
  color: #7a6555;
  font-size: 14px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--mahogany);
  padding: 96px 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-size: cover;
  background-position: center;
}

.services-hero::before {
  background-image: url('https://images.unsplash.com/photo-1771371097061-3befd4b71b59?w=1600&h=400&fit=crop&auto=format');
}

.about-hero::before {
  background-image: url('https://images.unsplash.com/photo-1769736436759-1c43688ef899?w=1600&h=600&fit=crop&auto=format');
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--linen);
  font-size: clamp(46px, 5vw, 70px);
  line-height: 1.06;
  margin-bottom: 20px;
}

.page-hero p {
  color: rgba(244, 240, 230, 0.75);
  max-width: 660px;
  line-height: 1.75;
}

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

.back-link {
  color: rgba(244, 240, 230, 0.6);
  font-size: 14px;
}

.services-list {
  padding: 80px 0;
}

.service-accordion {
  margin-bottom: 26px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 16px rgba(94, 44, 42, 0.07);
  border: 1px solid transparent;
  overflow: hidden;
}

.service-accordion.open {
  border-color: var(--bronze);
}

.service-acc-head {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
  text-align: left;
  cursor: pointer;
}

.service-acc-icon {
  width: 48px;
  height: 48px;
  border-radius: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--linen);
  color: var(--mahogany);
  flex-shrink: 0;
}

.service-accordion.open .service-acc-icon {
  background: var(--mahogany);
  color: var(--bronze);
}

.service-acc-icon i {
  width: 22px;
  height: 22px;
}

.service-acc-title h3 {
  color: var(--mahogany);
  font-size: 34px;
  margin-bottom: 4px;
}

.service-acc-title p {
  color: var(--bronze);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
}

.service-acc-price {
  margin-left: auto;
  margin-right: 20px;
  background: var(--linen);
  color: var(--mahogany);
  padding: 8px 14px;
  border-radius: 1px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.service-acc-chevron i {
  width: 20px;
  height: 20px;
  color: var(--bronze);
}

.service-acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.service-acc-body {
  border-top: 1px solid rgba(94, 44, 42, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-acc-image {
  min-height: 280px;
}

.service-acc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-acc-copy {
  padding: 40px;
}

.service-acc-copy p {
  color: var(--body);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-acc-copy ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.service-acc-copy li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.6;
}

.service-acc-copy li i {
  width: 15px;
  height: 15px;
  color: var(--bronze);
  margin-top: 2px;
  flex-shrink: 0;
}

.price-chip-mobile {
  display: none;
}

.cta-banner {
  background: var(--mahogany);
  text-align: center;
  padding: 80px 24px;
}

.cta-banner h2 {
  color: var(--linen);
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(244, 240, 230, 0.75);
  max-width: 520px;
  margin: 0 auto 30px;
  line-height: 1.75;
}

.lang-bar i {
  width: 14px;
  height: 14px;
  color: var(--bronze);
}

.lang-label {
  color: #7a6555;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.lang-switch {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(94, 44, 42, 0.2);
  border-radius: 2px;
}

.lang-switch button {
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--mahogany);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.lang-switch button.active {
  background: var(--mahogany);
  color: var(--linen);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-image-wrap {
  position: relative;
}

.story-image {
  border-radius: 2px;
  max-height: 520px;
  width: 100%;
  object-fit: cover;
}

.story-stat {
  position: absolute;
  right: -24px;
  bottom: -24px;
  background: var(--mahogany);
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 28px;
}

.story-stat strong {
  color: var(--linen);
  font-size: 52px;
  line-height: 1;
  display: block;
}

.story-stat span {
  margin-top: 6px;
  display: block;
  color: var(--bronze);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-copy h2 {
  color: var(--mahogany);
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.08;
  margin-bottom: 30px;
}

.story-copy p {
  color: var(--body);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.commitments {
  background: #fff;
}

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

.commitment-card {
  background: var(--linen);
  border-radius: 2px;
  border: 1px solid rgba(94, 44, 42, 0.08);
  padding: 32px;
  transition: all 0.3s ease;
}

.commitment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(94, 44, 42, 0.1);
}

.commitment-icon {
  width: 44px;
  height: 44px;
  border-radius: 1px;
  background: var(--mahogany);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--bronze);
}

.commitment-icon i {
  width: 20px;
  height: 20px;
}

.commitment-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.commitment-card h3 {
  color: var(--mahogany);
  font-size: 30px;
  margin-bottom: 10px;
}

.commitment-card p {
  color: #7a6555;
  font-size: 14px;
  line-height: 1.7;
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 2px;
}

.vmv-col {
  padding: 40px;
  background: #fff;
  border-right: 1px solid rgba(94, 44, 42, 0.1);
}

.vmv-col:last-child {
  border-right: none;
}

.vmv-col.center {
  background: var(--mahogany);
}

.vmv-col h3 {
  margin-bottom: 16px;
  font-size: 34px;
}

.vmv-col p {
  font-size: 14px;
  line-height: 1.75;
}

.vmv-col.center h3 {
  color: var(--linen);
}

.vmv-col.center p {
  color: rgba(244, 240, 230, 0.75);
}

.vmv-col:not(.center) h3 {
  color: var(--mahogany);
}

.vmv-col:not(.center) p {
  color: var(--body);
}

.site-footer {
  background: var(--mahogany);
  color: var(--linen);
}

.footer-divider {
  height: 1px;
  width: 100%;
  background: var(--bronze);
  opacity: 0.35;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0;
}

.footer-brand p:first-child {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
}

.footer-brand p:nth-child(2) {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
}

.footer-small-line {
  width: 40px;
  height: 1px;
  background: var(--bronze);
  margin: 20px 0;
}

.footer-brand .tagline {
  color: var(--linen-dim);
  line-height: 1.75;
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 151, 106, 0.4);
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--bronze);
  color: #fff;
  border-color: var(--bronze);
}

.footer-social i {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  color: var(--bronze);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 22px;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a,
.footer-col p {
  color: var(--linen-dim);
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--bronze);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact-item i {
  width: 15px;
  height: 15px;
  color: var(--bronze);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-cta {
  margin-top: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(184, 151, 106, 0.2);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.footer-bottom p {
  color: var(--linen-dim);
  font-size: 12px;
}

@media (max-width: 1200px) {
  .services-preview-grid,
  .commitments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .topbar,
  .lang-bar:not(.mobile-lang-bar) {
    display: none !important;
  }

  .mobile-lang-bar {
    display: flex;
    border-bottom: 1px solid rgba(94, 44, 42, 0.12);
    background: var(--linen);
  }

  .hero-bg {
    display: none;
  }

  .hero-mobile-bg {
    display: block;
    position: absolute;
    inset: 0;
  }

  .hero-mobile-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #d5ccc0;
  }

  .hero-mobile-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(244, 240, 230, 0.82);
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 88px);
    padding: 120px 0 90px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .scroll-hint {
    display: none;
  }

  .section-head,
  .contact-grid,
  .story-grid,
  .service-acc-body,
  .vmv-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 36px;
  }

  .services-preview-grid,
  .commitments-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wrap {
    height: 430px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .service-acc-price {
    display: none;
  }

  .price-chip-mobile {
    display: inline-block;
    background: var(--linen);
    border: 1px solid rgba(184, 151, 106, 0.3);
    color: var(--mahogany);
    font-size: 11px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 1px;
    margin-bottom: 20px;
  }

  .service-acc-image {
    order: 1 !important;
    min-height: 240px;
  }

  .service-acc-copy {
    order: 2 !important;
    padding: 28px;
  }

  .story-stat {
    display: none;
  }

  .testimonial-card {
    padding: 44px 26px;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
  }
}

@media (min-width: 901px) {
  .topbar {
    display: flex;
  }

  .lang-bar {
    display: flex;
  }

  .mobile-lang-bar {
    display: none !important;
  }

  .nav-links {
    display: flex;
  }

  .mobile-toggle,
  .mobile-menu {
    display: none;
  }
}
