* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: #f5f0e8;
  background: #080808;
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-scroll {
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  background:
    radial-gradient(
      circle at top left,
      rgba(178, 138, 72, 0.16),
      transparent 34%
    ),
    linear-gradient(180deg, #080808 0%, #111111 48%, #070707 100%);
}

.section {
  position: relative;
  min-height: 100dvh;
  padding: clamp(24px, 5vw, 80px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 1px);
  background-size: 80px 80px;
  opacity: 0.2;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.section-eyebrow {
  margin: 0 0 clamp(12px, 1.6vw, 18px);
  color: #c69b55;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  max-width: 780px;
  color: #f5f0e8;
  font-size: clamp(36px, 5.4vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.section-header {
  margin-bottom: clamp(28px, 4vw, 56px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #080808;
  background: #c69b55;
  border: 1px solid #c69b55;
}

.btn-primary:hover {
  background: #f5f0e8;
  border-color: #f5f0e8;
}

/* HEADER */

.site-header {
  position: fixed;
  top: clamp(14px, 2vw, 24px);
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 32px), 1180px);
  height: 64px;
  padding: 0 10px 0 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.site-logo {
  flex: 0 0 auto;
  color: #f5f0e8;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  position: relative;
  color: rgba(245, 240, 232, 0.68);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: #c69b55;
  transition: transform 0.25s ease;
}

.site-nav a:hover {
  color: #f5f0e8;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-booking {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #080808;
  background: #c69b55;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
  white-space: nowrap;
}

.header-booking:hover {
  transform: translateY(-2px);
  background: #f5f0e8;
}

/*MENU BURGER*/
.burger-menu {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(245, 240, 232, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #f5f0e8;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease;
}

.burger-menu:hover span {
  background: #c69b55;
}

.site-header.is-menu-open .burger-menu span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .burger-menu span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .burger-menu span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* HERO */

.hero {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.55)),
    radial-gradient(
      circle at 80% 20%,
      rgba(198, 155, 85, 0.18),
      transparent 34%
    );
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
}

.hero-content {
  max-width: 650px;
}

.hero-title {
  margin: 0;
  color: #f5f0e8;
  font-size: clamp(58px, 10vw, 85px);
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 520px;
  margin: clamp(20px, 2.2vw, 28px) 0 clamp(28px, 3vw, 42px);
  color: rgba(245, 240, 232, 0.72);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 76dvh;
  border-radius: clamp(22px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(198, 155, 85, 0.28);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.5);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.48)),
    linear-gradient(90deg, rgba(198, 155, 85, 0.18), transparent 42%);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}

.service-card {
  min-height: clamp(190px, 22vh, 260px);
  padding: clamp(20px, 2vw, 28px);
  border-radius: clamp(18px, 2vw, 28px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(245, 240, 232, 0.1);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.service-card h3 {
  margin: 0 0 14px;
  color: #f5f0e8;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0;
  color: rgba(245, 240, 232, 0.66);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
}

/* ABOUT */

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
}

.about-text {
  max-width: 650px;
  margin: clamp(22px, 2.5vw, 34px) 0 0;
  color: rgba(245, 240, 232, 0.72);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.7;
}

.about-visual {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 72dvh;
  border-radius: clamp(22px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(245, 240, 232, 0.12);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.46);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GALLERY */

.gallery-section {
  overflow: hidden;
}

.gallery-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-stage {
  position: relative;
  width: 100%;
  height: clamp(360px, 44vw, 540px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(34px, 3vw, 40px);
}

.gallery-stack {
  position: relative;
  width: min(58vw, 650px);
  aspect-ratio: 16 / 10;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 3px solid rgba(198, 155, 85, 0.65);
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
  transition:
    transform 0.55s ease,
    opacity 0.55s ease,
    filter 0.55s ease,
    border-color 0.55s ease;
}

.gallery-slide.is-active {
  z-index: 5;
  opacity: 1;
  transform: translateX(0) scale(1.04);
  filter: brightness(1);
  border-color: #c69b55;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide.is-prev {
  z-index: 3;
  opacity: 0.55;
  transform: translateX(-58%) scale(0.82);
  filter: brightness(0.55);
}

.gallery-slide.is-next {
  z-index: 3;
  opacity: 0.55;
  transform: translateX(58%) scale(0.82);
  filter: brightness(0.55);
}

.gallery-slide.is-prev-far {
  z-index: 2;
  opacity: 0.22;
  transform: translateX(-88%) scale(0.68);
  filter: brightness(0.4);
}

.gallery-slide.is-next-far {
  z-index: 2;
  opacity: 0.22;
  transform: translateX(88%) scale(0.68);
  filter: brightness(0.4);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 240, 232, 0.3);
  border-radius: 50%;
  color: #f5f0e8;
  background: rgba(8, 8, 8, 0.75);
  font-size: 30px;
  cursor: pointer;
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.gallery-counter {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: rgba(245, 240, 232, 0.65);
  font-size: 14px;
}

@media (max-width: 768px) {
  .gallery-stage {
    height: auto;
    min-height: 520px;
  }

  .gallery-stack {
    width: calc(100vw - 32px);
    aspect-ratio: 4 / 5;
    touch-action: pan-y;
  }

  .gallery-slide.is-active {
    transform: translateX(0) scale(1);
  }

  .gallery-slide.is-prev,
  .gallery-slide.is-prev-far {
    opacity: 0;
    transform: translateX(-110%) scale(1);
  }

  .gallery-slide.is-next,
  .gallery-slide.is-next-far {
    opacity: 0;
    transform: translateX(110%) scale(1);
  }

  .gallery-arrow {
    width: 42px;
    height: 42px;
    display: none;
  }

  .gallery-prev {
    left: 22px;
  }

  .gallery-next {
    right: 22px;
  }

  .gallery-section .section-header {
    position: relative;
    top: 35px;
    z-index: 2;
  }
}

/* PRICES */

.prices-inner {
  max-width: 860px;
}

.price-list {
  margin-top: clamp(28px, 4vw, 56px);
  border-top: 1px solid rgba(245, 240, 232, 0.16);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 2vw, 26px) 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.16);
  color: #f5f0e8;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: -0.04em;
}

.price-row strong {
  color: #c69b55;
  font-size: clamp(18px, 1.8vw, 26px);
  white-space: nowrap;
}

/* CONTACT */

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: clamp(28px, 3vw, 42px) 0;
}

.contact-link,
.contact-address {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  color: rgba(245, 240, 232, 0.78);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.45;
}

.contact-link {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.contact-link:hover {
  color: #c69b55;
  transform: translateX(4px);
}

.contact-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: #c69b55;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact-address {
  align-items: flex-start;
  width: min(100%, 560px);
}

.contact-address strong {
  color: #c69b55;
  white-space: nowrap;
}
/* GOOGLE MAPS*/
.map-card {
  position: relative;
  display: block;
  min-height: clamp(340px, 58vh, 620px);
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(198, 155, 85, 0.75);
  border-radius: 12px;
  background: #111;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.38);
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  cursor: pointer;
}

.map-overlay span {
  padding: 12px 16px;
  border: 1px solid rgba(198, 155, 85, 0.8);
  border-radius: 6px;
  color: #080808;
  background: #c69b55;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.map-overlay:hover span {
  transform: translateY(-3px);
  background: #f5f0e8;
}

@media (max-width: 768px) {
  .map-card {
    min-height: 260px;
    border-radius: 8px;
  }

  .map-overlay {
    padding: 12px;
  }

  .map-overlay span {
    padding: 10px 12px;
    font-size: 10px;
  }
}

/* TABLET */

@media (max-width: 1024px) {
  .hero-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual,
  .about-visual {
    max-width: 560px;
    max-height: 46dvh;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-item {
    min-height: clamp(160px, 26vh, 280px);
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(6) {
    transform: none;
  }

  .map-placeholder {
    min-height: 320px;
  }
}

/*FOOTER*/
.site-footer {
  position: absolute;
  left: clamp(16px, 5vw, 80px);
  right: clamp(16px, 5vw, 80px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
  color: rgba(245, 240, 232, 0.48);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer span {
  color: rgba(198, 155, 85, 0.72);
  font-weight: 800;
}

/* MOBILE */

@media (max-width: 600px) {
  body {
    overflow: hidden;
  }

  .site-scroll {
    scroll-snap-type: y mandatory;
  }

  .section {
    min-height: 100dvh;
    padding: 22px 16px;
  }

  .section-title {
    font-size: clamp(28px, 7vw, 48px);
    line-height: 0.98;
  }

  .section-header {
    margin-bottom: 22px;
  }

  .hero-inner,
  .about-inner,
  .contact-inner {
    gap: 22px;
  }

  .hero-title {
    font-size: clamp(54px, 18vw, 82px);
  }

  .hero-text,
  .about-text {
    font-size: 15px;
    line-height: 1.55;
  }

  .btn {
    min-height: 48px;
    padding: 0 22px;
    font-size: 12px;
  }

  .hero-visual,
  .about-visual {
    width: 100%;
    max-width: none;
    max-height: 40dvh;
    aspect-ratio: 16 / 11;
    border-radius: 22px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card {
    min-height: auto;
    padding: 16px;
    border-radius: 18px;
  }

  .service-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-item {
    min-height: 22dvh;
    border-radius: 16px;
  }

  .price-list {
    margin-top: 26px;
  }
  /*PRETURI*/
  .price-row {
    padding: 16px 0;
    font-size: 20px;
  }

  .price-row strong {
    font-size: 18px;
  }

  .price-row > span {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .price-row .service-name {
    color: #f5f0e8;
    font-size: inherit;
  }

  .price-row small {
    color: rgba(245, 240, 232, 0.52);
    font-size: 13px;
    font-weight: 400;
  }

  .contact-list {
    gap: 12px;
    margin: 24px 0;
  }

  .contact-link,
  .contact-address {
    font-size: 14px;
  }

  .contact-icon {
    width: 24px;
    height: 24px;
  }

  .contact-address {
    flex-direction: column;
    gap: 6px;
  }

  .map-placeholder {
    min-height: 220px;
    border-radius: 22px;
  }

  .site-footer {
    left: 16px;
    right: 16px;
    bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 10px;
    font-size: 9px;
  }
}

/* 430PX TARGET */

@media (max-width: 430px) {
  .section {
    padding: 20px 14px;
  }

  .section-eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero-title {
    font-size: clamp(50px, 18vw, 51px);
  }

  .hero-text {
    margin: 18px 0 24px;
  }

  .hero-visual,
  .about-visual {
    max-height: 36dvh;
  }

  .services-grid {
    gap: 8px;
  }

  .service-card {
    padding: 14px;
  }

  .gallery-grid {
    gap: 8px;
  }

  .gallery-item {
    min-height: 19dvh;
  }

  .map-placeholder {
    min-height: 190px;
  }

  .site-footer {
    font-size: 8px;
  }
}

/* REDUCED HEIGHT / ZOOM SAFETY */

@media (max-height: 760px) {
  .section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: clamp(46px, 8vw, 110px);
  }

  .hero-text,
  .about-text {
    margin-top: 16px;
    margin-bottom: 22px;
  }

  .hero-visual,
  .about-visual {
    max-height: 54dvh;
  }

  .service-card {
    min-height: auto;
  }

  .gallery-item {
    min-height: 30vh;
  }

  .price-row {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .map-placeholder {
    min-height: 300px;
  }
}

@media (max-width: 600px) and (max-height: 760px) {
  .hero-visual,
  .about-visual {
    max-height: 30dvh;
  }

  .gallery-item {
    min-height: 17dvh;
  }

  .map-placeholder {
    min-height: 160px;
  }
}
@media (max-width: 760px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    height: 58px;
    padding: 0 8px 0 18px;
  }

  .site-logo {
    font-size: 14px;
  }

  .header-booking {
    min-height: 40px;
    padding: 0 14px;
    font-size: 11px;
  }

  .burger-menu {
    flex: 0 0 auto;
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    padding: 10px;
    display: grid;
    gap: 6px;
    border: 1px solid rgba(245, 240, 232, 0.12);
    border-radius: 24px;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    color: rgba(245, 240, 232, 0.78);
    background: rgba(255, 255, 255, 0.035);
    font-size: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover {
    color: #080808;
    background: #c69b55;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-left: 14px;
  }

  .site-logo {
    font-size: 12px;
  }

  .header-booking {
    padding: 0 10px;
    font-size: 9px;
  }

  .burger-menu {
    width: 38px;
    height: 38px;
  }
}
