:root {
  --bg: #a6a9ae;
  --panel: rgba(255, 255, 255, 0.18);
  --text: #111111;
  --muted: #2f2f2f;
  --accent: #c80000;
  --line: rgba(0,0,0,0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

header {
       position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;

  padding: 28px 56px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 1rem;
}

.brand img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.main-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;

  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: flex;
  gap: 6px;
}

.lang-switch button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 6px 9px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.lang-switch button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.hero-card {
  position: absolute;
  right: 4vw;
  left: auto;
  bottom: 18vh;

  max-width: 560px;
  padding: 42px;

  background: rgba(255, 250, 245, 0.20);
  border: none;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent) !important;

  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);

  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-card p {
  max-width: 430px;
  margin-bottom: 0;
  color: rgba(0,0,0,0.8);
  font-size: 1.05rem;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-block;
  padding: 13px 20px;

  border: 1px solid var(--accent);

  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.secondary {
  background: transparent;
  color: var(--text);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  background: var(--bg);
  border-bottom: 1px solid rgba(174, 174, 174, 0.12);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 9vw;
}

.split-text h2 {
  margin: 0 0 28px;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.split-text p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
}


.service-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  height: clamp(240px, 22vw, 300px);
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(174, 174, 174, 0.12);
}

.service-card:last-child {
  border-right: none;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.75;
}

.service-card div {
  position: absolute;
  left: 32px;
  bottom: 32px;
  max-width: 260px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card p {
  color: var(--text);
  margin: 0 0 18px;
}

.service-card a {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  min-height: 280px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-intro {
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}

.gallery-intro h2 {
  margin: 0 0 28px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gallery-intro a {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.gallery-image {
  min-height: 280px;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin: 0 0 24px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-heading p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.pricing-section {
    padding: 30px 7vw;
    text-align: center;
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-header h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    max-width: 1400px;
    margin: 0 auto 40px;
}

.price-card {
    display: flex;
    gap: 24px;

    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;

    padding: 30px;

    border: 1px solid var(--line);
    background: rgba(255,255,255,0.08);
}

.price-card img {
    width: 90px;
    height: 140px;

    object-fit: cover;
    flex-shrink: 0;
}

.price-content h3 {
    margin: 0 0 10px;
    font-size: 0.8rem;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 16px;
}

.pricing-note {
    max-width: 900px;
    margin: 0 auto;
    color: var(--muted);
}

.process-hero {
  min-height: 760px;
  padding: 90px 7vw;
  background-image: linear-gradient(
      to right,
      rgba(176, 178, 181, 0.35),
      rgba(176, 178, 181, 0.35)
    ),
    url("images/hero2.jpg");
  background-size: cover;
  background-position: center;
  display: grid;
  align-content: center;
  gap: 56px;
}

.process-overlay {
  max-width: 620px;
  margin-left: auto;
}

.process-overlay h2 {
  margin: 0 0 24px;
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.process-overlay p {
  max-width: 480px;
  color: var(--text);
  font-size: 1rem;
}

.process-overlay h2 + p {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    padding: 6px 10px;
    
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-steps article {
  background: rgba(176, 178, 181, 0.65);
  backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  padding: 28px;
  min-height: 230px;
}

.process-steps img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 20px;
}

.process-steps h3 {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.process-steps p {
  margin: 0;
  font-size: 0.95rem;
}

.detail-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-right: 1px solid var(--line);
}

.detail-strip img:last-child {
  border-right: none;
}

.core-section {
  padding: 90px 7vw;
  background: var(--bg);
}

.core-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.core-header h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.core-header p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.core-item {
  background: rgba(255,255,255,0.08);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.core-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.core-image-swap {
  position: relative;
  overflow: hidden;
}

.core-image-swap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.core-img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.core-item:hover .core-img-hover {
  opacity: 1;
}

.core-info {
  padding: 26px;
}

.core-info h3 {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.core-price {
  margin: 0 0 14px;
  font-size: 1.6rem;
  font-weight: 700;
}

.core-info p:not(.core-price) {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-section {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    background: var(--bg);
    overflow: hidden;
}

.contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 6vw;
}

.contact-text h2 {
  margin: 0 0 28px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-text p {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

.contact-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.contact-note {
  margin-top: 32px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-image img {
    width: 100%;
    height: auto;         
    display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 32px;

  padding: 34px 56px;
  border-top: 1px solid var(--line);

  font-size: 0.9rem;
  background: var(--bg);
}

.site-footer strong {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer p {
  margin: 0 0 8px;
}

.site-footer a {
  text-decoration: none;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-brand img {
    width: 42px;     
    height: auto;
    flex-shrink: 0;
}

.footer-brand strong {
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.12em;
}


 


@media (max-width: 800px) {

  .split-section,
  .service-preview {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 360px;
  }

  .split-text {
    padding: 56px 24px;
  }

  .service-card {
    min-height: 340px;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.12);
  }

   .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    padding: 14px 22px;
    background: var(--bg);

    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    font-size: 0.8rem;
  }

  .brand img {
    width: 22px;
    height: 22px;
  }

   .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    padding: 18px 22px;

    flex-direction: column;
    gap: 16px;
  }

  .main-nav.open {
    display: flex;
  }
  

  .header-controls {
    gap: 10px;
  }

  .lang-switch button {
    padding: 5px 8px;
    font-size: 0.72rem;
  }


  .hero {
    min-height: auto;
  }

  .hero-image {
    height: 55vh;
    object-position: 40% center;
  }

  .hero-card {
    position: relative;
    left: auto;
    bottom: auto;

    max-width: none;
    margin: -70px 20px 40px;
    padding: 28px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .gallery-strip {
  grid-template-columns: 1fr;
}

.gallery-intro {
  padding: 48px 24px;
}

.gallery-image {
  min-height: 340px;
  border-left: none;
  border-top: 1px solid var(--line);
}

.pricing-horizontal {
  grid-template-columns: 1fr;
}

.pricing-heading {
  order: -1;
  padding: 48px 24px;
}

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

.price-card {
  min-height: auto;
  grid-template-rows: auto auto;
  border-right: none;
  border-top: 1px solid var(--line);    
  display: block;
  }

  .price-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .price-content {
    padding: 28px;
  }

.process-hero {
  min-height: auto;
  padding: 72px 24px;
  background-size: auto 100%;
  background-position: 80% center;
  display: block;
  
}

.process-overlay {
  max-width: none;
  margin: 0 0 36px;
}

.process-overlay h2 {
  font-size: clamp(2.2rem, 12vw, 3.4rem);
}

.process-description {
  display: block;
  max-width: 100%;
}

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

.process-steps article {
  min-height: auto;
  padding: 28px;
}



.core-section {
  padding: 64px 24px;
}

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

.core-item img {
  height: auto;
}

.contact-section {
  grid-template-columns: 1fr;
}

.contact-text {
  padding: 64px 24px;
}

.contact-image {
  min-height: 360px;
}

.core-image-swap img {
    height: auto;
  }

  .core-img-hover {
    display: none;
  }

.contact-text h2 {
  font-size: clamp(2.1rem, 10vw, 3.5rem);
}

 .menu-toggle {
    display: block;
  }

   .site-footer {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

}