:root {
  --ink: #231f20;
  --muted: #5f544f;
  --paper: #faf5ec;
  --sand: #f1e5d2;
  --accent: #c7602b;
  --accent-dark: #9f4720;
  --card: rgba(255, 250, 241, 0.9);
  --line: rgba(35, 31, 32, 0.12);
}

/* Gallery */
.gallery {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
}

.gallery__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: gallery-marquee-right 40s linear infinite;
}

.gallery:hover .gallery__track {
  animation-play-state: paused;
}

.gallery__item {
  margin: 0;
  width: clamp(220px, 23vw, 320px);
  flex: 0 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  transition: transform 220ms ease, box-shadow 220ms ease;
  align-self: start;
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(35, 31, 32, 0.14);
}

.gallery__item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
}

.gallery__item figcaption {
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.03em;
}

@media (max-width: 860px) {
  .gallery__item {
    width: clamp(230px, 42vw, 330px);
  }
}

@media (max-width: 480px) {
  .gallery__item {
    width: clamp(220px, 78vw, 310px);
  }
}

@keyframes gallery-marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.86);
  z-index: 1200;
  padding: 2rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__image {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1201;
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(199, 96, 43, 0.15), transparent 36%),
    radial-gradient(circle at 85% 85%, rgba(235, 175, 70, 0.16), transparent 40%),
    linear-gradient(180deg, var(--paper) 0%, var(--sand) 100%);
}

.ambient-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.35;
  z-index: -1;
}

.ambient-shape--one {
  width: 240px;
  height: 240px;
  background: #f27e4e;
  top: 6%;
  right: 4%;
}

.ambient-shape--two {
  width: 280px;
  height: 280px;
  background: #e3ba65;
  bottom: 8%;
  left: 4%;
}

.section,
.footer {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.is-active {
  opacity: 1;
}

/* Service tag on each slide */
.slide-tag {
  position: absolute;
  bottom: 6.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: normal;
  text-align: center;
  max-width: min(88vw, 560px);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.18) 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 4vw, 3.2rem);
}

.brand {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.brand-logo {
  display: block;
  text-decoration: none;
  line-height: 0;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  transition: background 180ms;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.nav__cta {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  transition: background 180ms;
}

.nav__cta:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 clamp(1rem, 4vw, 3.2rem) 2.4rem;
  animation: riseIn 700ms ease-out both;
}

.slideshow-dots {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background 280ms, width 280ms;
}

.dot.is-active {
  background: #fff;
  width: 22px;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.section__heading .eyebrow {
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
}

h1 {
  margin-top: 0.65rem;
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  line-height: 1.0;
  color: #fff;
}

.hero__lead {
  margin: 1.2rem 0 0;
  max-width: 700px;
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.hero__actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(199, 96, 43, 0.3);
}

.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.section {
  padding: 2.3rem 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 2.3rem clamp(1rem, 2vw, 2.1rem);
}

.section__heading {
  margin-bottom: 1.2rem;
}

h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.8rem, 4.7vw, 3.1rem);
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  min-height: 160px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 96, 43, 0.55);
}

.card h3 {
  font-size: 1.6rem;
  line-height: 1.05;
}

.card p {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.timeline__step {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  border-radius: 16px;
  padding: 1rem;
}

.timeline__step span {
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.05em;
}

.timeline__step p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.contact-card {
  background: #fff9ef;
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: clamp(1.2rem, 3vw, 2.4rem);
}

.contact-card h2 {
  margin-top: 0.35rem;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.75;
}

.contact-meta {
  color: var(--ink);
  font-weight: 600;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.5rem 0 1.8rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .hero {
    padding-top: 1rem;
  }

  .nav {
    padding: 0.85rem 0.9rem;
    align-items: flex-start;
  }

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

  .nav__right {
    gap: 0.4rem;
  }

  .lang-btn,
  .nav__cta {
    padding: 0.35rem 0.65rem;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .hero__content {
    margin-top: 2.8rem;
    padding: 0 0.9rem 1.4rem;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .slide-tag {
    bottom: 4.7rem;
    font-size: 0.72rem;
    padding: 0.42rem 0.8rem;
  }

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

  .footer {
    flex-direction: column;
    padding-bottom: 2.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery__track {
    animation: none;
  }

  .slide {
    transition: none;
  }

  .hero__content {
    animation: none;
  }
}
