:root {
  --black: #0d0d0c;
  --cream: #f5efe7;
  --cream-2: #fbf7f1;
  --gold: #cfa16b;
  --gold-dark: #9e7446;
  --text: #151412;
  --muted: #6f655d;
  --line: rgba(207, 161, 107, 0.32);
  --shadow: 0 24px 70px rgba(30, 20, 10, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
section { scroll-margin-top: 110px; }

/* ===== HERO ===== */
.hero {
  min-height: 760px;
  position: relative;
  color: white;
  background:
    linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.38) 55%, rgba(0,0,0,.08) 72%),
    linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.34)),
    url('/foto/main-foto/4Y0A5710.png') 50% 35% / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(207,161,107,.12), transparent 32%);
  pointer-events: none;
}

.hero-content {
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
  padding-top: 190px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 700;
}

.hero h1 {
  margin: 20px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 10vw, 138px);
  line-height: .88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 510px;
  font-size: 21px;
  line-height: 1.65;
  color: rgba(255,255,255,.88);
}

/* ===== NAVBAR ===== */
.navbar {
  width: min(1360px, calc(100% - 64px));
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(38,34,32,.72);
  box-shadow: 0 10px 35px rgba(0,0,0,.22);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.brand small { color: var(--gold); font-size: 12px; }

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.nav-links a,
.nav-actions a { opacity: .88; transition: .25s; }
.nav-links a:hover,
.nav-actions a:hover { color: var(--gold); opacity: 1; }

.icon-link {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

/* ===== BUTTONS ===== */
.hero-buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  min-height: 58px;
  padding: 0 34px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: .3s;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.22), transparent);
  transition: .7s;
}

.btn:hover::before { left: 120%; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: linear-gradient(135deg, #e4bd8c, #bd8551); color: #140f0a; }
.btn-outline { border: 1px solid rgba(255,255,255,.46); color: white; }
.btn-outline.light { border-color: var(--line); color: var(--text); }

/* ===== VIDEO CTA ===== */
.hero-video { margin-top: 26px; }
.video-visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: all .35s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.video-visit-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
}
.play-icon { font-size: 14px; opacity: .85; }

/* ===== GENERAL SECTIONS ===== */
.section { padding: 86px 0; }
.section-grid {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: .96;
  margin: 14px 0 24px;
}
h2 span, .copy h2 span { color: var(--gold); }
.copy p { color: var(--muted); line-height: 1.85; max-width: 620px; }
.center { text-align: center; }
.center-title { text-align: center; margin-bottom: 40px; }

/* ===== ABOUT ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  border-top: 1px solid var(--line);
}
.stats div { padding: 24px 24px 0 0; border-right: 1px solid var(--line); }
.stats div:last-child { border-right: none; }
.stats strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--gold);
}
.stats small { font-size: 14px; }

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.portrait-grid img {
  height: 330px;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  filter: grayscale(.72);
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}
.portrait-grid img:nth-child(4) { filter: none; }

/* ===== SERVICES ===== */
.services-section,
.gallery-section { background: var(--black); color: white; }
.service-grid {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.service-card {
  background: #171716;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(207,161,107,.65);
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}
.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card div { padding: 26px; }
.service-card span { color: var(--gold); font-size: 28px; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  margin: 10px 0;
}
.service-card p { color: rgba(255,255,255,.72); line-height: 1.65; font-size: 14px; }

/* ===== WHY ===== */
.why-section { padding: 58px 0; background: var(--cream-2); }
.why-grid {
  width: min(1240px, calc(100% - 48px));
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.why-item {
  min-height: 150px;
  padding: 0 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gold);
  border-right: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: .04em;
}
.why-item:last-child { border-right: none; }
.why-item span {
  margin-top: 18px;
  max-width: 180px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

/* ===== GALLERY ===== */
.gallery-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-grid img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform .45s ease, filter .45s ease;
}
.gallery-grid:hover img { filter: brightness(.75); }
.gallery-grid img:hover { filter: brightness(1); transform: scale(1.03); }
.gallery-grid .wide { grid-column: span 2; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--cream); padding: 88px 0 96px; }
.reviews-grid,
.more-reviews {
  width: min(1180px, calc(100% - 64px));
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.more-reviews { display: none; margin-top: 22px; }
.more-reviews.active { display: grid; }
.review-card {
  min-height: 360px;
  padding: 30px 28px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(207,161,107,.16);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(35,25,15,.07);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 25px 50px rgba(0,0,0,.08); }
.review-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 15px; }
.review-author {
  margin-top: auto;
  padding-top: 26px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
}
.review-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(207,161,107,.28);
}
.review-author strong { display: block; font-size: 15px; line-height: 1.15; color: var(--text); }
.review-author small { display: block; margin-top: 5px; color: var(--gold); font-size: 12px; line-height: 1.2; }

.reviews-button-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.reviews-more-btn,
.review-submit-btn {
  min-width: 220px;
  height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(207,161,107,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.reviews-more-btn:hover { background: rgba(255,255,255,.95); border-color: rgba(207,161,107,.55); transform: translateY(-2px); }
.review-submit-btn {
  border: none;
  background: linear-gradient(135deg, #d5a56f, #bb8650);
  color: white;
  box-shadow: 0 10px 30px rgba(200,155,99,.18);
}
.review-submit-btn:hover {
  background: linear-gradient(135deg, #ddb07d, #b87d45);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(200,155,99,.28);
}

/* ===== PARTNERS ===== */
.partners { padding: 78px 6%; background: #0d0d0d; color: #fff; text-align: center; }
.partners .section-label {
  margin-bottom: 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  font-weight: 700;
}
.partners h2 {
  max-width: 980px;
  margin: 0 auto 42px;
  color: #f7f1e8;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 1.05;
}
.partners-grid {
  width: min(1120px, calc(100% - 48px));
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.partner-card {
  height: 160px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(28,28,28,.96), rgba(18,18,18,.96));
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(207,161,107,.22);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.partner-card img {
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 72px;
  object-fit: contain;
  margin: 0 auto;
  filter: grayscale(100%) brightness(1.8);
  opacity: .88;
  transition: opacity .35s ease, transform .35s ease, filter .35s ease;
}
.partner-card:hover img { opacity: 1; transform: scale(1.04); filter: grayscale(0%) brightness(1); }
.partner-card:first-child img { transform: translateY(-14px); }
.partner-card:first-child:hover img { transform: translateY(-14px) scale(1.04); }

/* ===== CONTACT ===== */
.contact-section {
  display: grid;
  grid-template-columns: .75fr .8fr 1fr;
  gap: 48px;
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}
.contact-photo {
  min-height: 440px;
  border-radius: 0 24px 24px 0;
  background: url('/foto/main-foto/4Y0A5720.jpg') center / cover no-repeat;
  box-shadow: var(--shadow);
}
.contact-copy p { color: var(--muted); line-height: 1.75; }
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 34px;
}
.contact-btn {
  width: 240px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.contact-btn.primary { background: linear-gradient(135deg, #e4bd8c, #bd8551); color: #140f0a; }
.contact-btn.secondary { border: 1px solid rgba(207,161,107,.28); background: rgba(255,255,255,.55); color: var(--text); }
.contact-btn:hover { transform: translateY(-2px); }
.contact-form {
  padding: 40px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(207,161,107,.22);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 15px 4px;
  font: inherit;
  outline: none;
  transition: border-color .3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form button {
  height: 54px;
  border: none;
  border-radius: 8px;
  background: #10100f;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.contact-form button:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer {
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: #090909;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer p { opacity: .72; }
.developer-link { color: inherit; transition: opacity .3s ease; }
.developer-link:hover { opacity: .65; }

/* ===== FLOATING SOCIALS ===== */
.floating-socials {
  position: fixed;
  right: 20px;
  bottom: 120px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-socials a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(0,0,0,.22);
  transition: transform .3s ease, box-shadow .3s ease;
}
.floating-socials a:nth-child(1) { background: #20d366; }
.floating-socials a:nth-child(2) { background: #2AABEE; }
.floating-socials a:nth-child(3) { background: #0077FF; }
.floating-socials a:hover { transform: scale(1.08); box-shadow: 0 18px 40px rgba(0,0,0,.3); }

/* ===== BOOKING WIDGET ===== */
.booking-widget {
  position: fixed;
  right: 26px;
  bottom: 92px;
  z-index: 300;
  width: 330px;
  padding: 20px;
  display: flex;
  gap: 14px;
  background: rgba(245,239,231,.92);
  border: 1px solid rgba(207,161,107,.35);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  opacity: 0;
  transform: translateY(24px) scale(.96);
  pointer-events: none;
  transition: .45s ease;
}
.booking-widget.active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.booking-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e4bd8c, #bd8551);
  color: #160f09;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}
.booking-content strong { display: block; margin-bottom: 6px; font-size: 15px; }
.booking-content p { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.booking-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.booking-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 22px;
  color: var(--muted);
  cursor: pointer;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.82);
}
.video-modal:target { display: flex; }
.video-modal-content { position: relative; width: min(420px, 92vw); max-height: 88vh; }
.video-modal video {
  width: 100%;
  max-height: 82vh;
  display: block;
  object-fit: contain;
  border-radius: 22px;
  background: #000;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.video-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: white;
  font-size: 22px;
  z-index: 10000;
}

/* ===== ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== TABLET ===== */
@media (max-width: 1100px) {
  .nav-links { display: none; }

  .service-grid,
  .reviews-grid,
  .more-reviews,
  .why-grid,
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-photo {
    min-height: 360px;
    border-radius: 24px;
  }
}

/* ===== MOBILE / REAL IPHONE SAFARI ===== */
@media (max-width: 680px) {
  html,
  body { overflow-x: hidden; }

  section { scroll-margin-top: 110px; }

  .navbar {
    position: fixed;
    top: 10px;
    left: 12px;
    right: 12px;
    width: auto;
    transform: none;
    padding: 14px 18px;
    border-radius: 22px;
    z-index: 1000;
  }

  .brand span { font-size: 22px; line-height: .9; }
  .brand small { font-size: 13px; }

  .nav-links,
  .nav-actions { display: none; }

  .hero {
    min-height: 700px;
    background-position: 62% center;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding-top: 170px;
  }

  .hero h1 { font-size: 64px; }
  .hero-text { font-size: 17px; }

  .section { padding: 64px 0; }

  .section-grid,
  .service-grid,
  .reviews-grid,
  .more-reviews,
  .gallery-grid,
  .why-grid,
  .contact-section,
  .partners-grid {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .portrait-grid img { height: 230px; }

  .stats { grid-template-columns: 1fr; }
  .stats div { border-right: none; }

  .why-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .why-item:last-child { border-bottom: none; }

  .gallery-grid .wide { grid-column: span 1; }

  .reviews-section { padding-top: 100px; }
  .review-card { min-height: unset; }

  .reviews-button-wrap {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .reviews-more-btn,
  .review-submit-btn {
    width: 100%;
    max-width: 340px;
    min-width: unset;
    height: 58px;
    font-size: 16px;
  }

  .partners h2 {
    font-size: 42px;
    line-height: 1.05;
  }

  .partner-card { height: 112px; }

  .contact-section { padding-top: 40px; }
  .contact-form { padding: 28px 22px; }

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

  .floating-socials {
    right: 14px;
    bottom: 100px;
    gap: 10px;
  }

  .floating-socials a {
    width: 52px;
    height: 52px;
    font-size: 13px;
  }

  .booking-widget {
    left: 16px;
    right: 16px;
    bottom: 20px;
    width: auto;
    max-width: none;
    padding: 18px;
  }

  .booking-content a { width: 100%; }
}