*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --gold: #bf8c43;
  --gold2: #d8ad6e;
  --muted: #6f5c50;
  --line: rgba(70, 50, 35, 0.12);
  --shadow: 0 22px 60px rgba(60, 40, 25, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: linear-gradient(180deg, #f9f3ec, #f5eadf);
  color: #2e241d;
  line-height: 1.65;
}

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

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

h1,
h2,
h3 {
  margin: 0 0 16px;
   font-family: "Playfair Display", serif;
  line-height: 1;
}

h1 { font-size: clamp(2.2rem, 4vw, 4rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
h3 { font-size: 2rem; }

p,
.brand-tagline,
.main-nav a {
  color: var(--muted);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 243, 236, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(70, 50, 35, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}

.brand-mark {
  display: block;
  width: 276px;
  height: 276px;
  flex: 0 0 276px;
  /* The source PNG contains transparent space below the artwork. Keep the
     rendered image at its full size, but do not let that empty area enlarge
     the header. */
  margin-bottom: -72px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-tagline {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.main-nav a { font-weight: 600; }
.main-nav a:hover,
.text-link,
.eyebrow { color: var(--gold); }

.nav-toggle,
.mini-btn,
.slot,
.calendar-day { cursor: pointer; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #2e241d;
}

.mini-btn {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
}

.hero,
.page-hero { padding: 68px 0; }

.page-hero.compact { padding: 56px 0 24px; }

.hero-grid,
.split-grid,
.booking-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
}

.split-grid.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: none;
}

/* Keep the eyebrow title consistent and understated across all page heroes. */
.hero .eyebrow,
.page-hero .eyebrow {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero .hero-tagline {
  font-family: "Parisienne", cursive;
  font-weight: 400;
}

.page-hero h1 {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s transform;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff;
  box-shadow: 0 14px 36px rgba(191, 140, 67, 0.28);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.btn-full { width: 100%; border: 0; }

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

.stats div,
.service-card,
.review-card,
.image-card,
.calendar-card,
.booking-form,
.price-wrap,
.contact-box,
.map-card,
.glass {
  box-shadow: var(--shadow);
}

.stats div {
  min-width: 140px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.stats strong { display: block; }

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 32px;
}

.hero-card img,
.image-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 10, 8, 0.08), rgba(15, 10, 8, 0.78));
  color: #fff;
}

.glass {
  position: absolute;
  left: -18px;
  bottom: 28px;
  width: min(280px, 82%);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
}

.section { padding: 98px 0; }

.soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.34));
}

.image-card,
.calendar-card,
.booking-form,
.price-wrap,
.contact-box,
.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
}

.image-card img { min-height: 500px; }

.cards-grid {
  display: grid;
  gap: 24px;
}

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

.service-card,
.review-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(191, 140, 67, 0.16), rgba(191, 140, 67, 0.05));
  color: var(--gold);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  min-height: 280px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-item.large {
  grid-row: span 2;
  min-height: 580px;
}

.gallery-item img {
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table thead th {
  background: linear-gradient(180deg, rgba(191, 140, 67, 0.14), rgba(191, 140, 67, 0.05));
}

.small-note {
  padding: 16px 20px;
  font-size: 0.94rem;
  color: var(--muted);
}

.booking-layout {
  align-items: start;
  grid-template-columns: 1fr 1fr;
}

.calendar-card,
.booking-form,
.contact-box {
  padding: 28px;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-weekdays span {
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.calendar-day {
  min-height: 60px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-weight: 700;
}

.calendar-day.available {
  border-color: rgba(191, 140, 67, 0.3);
  background: linear-gradient(135deg, rgba(191, 140, 67, 0.16), rgba(216, 173, 110, 0.08));
}

.calendar-day.selected,
.slot.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff;
}

.calendar-day.muted {
  opacity: 0.35;
  cursor: default;
}

.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.slot {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label { font-weight: 700; }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font: inherit;
}

.form-success {
  min-height: 24px;
  margin-top: 12px;
  color: #2e7d32;
  font-weight: 700;
}

.booking-summary {
  margin-bottom: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(191, 140, 67, 0.12), rgba(216, 173, 110, 0.05));
}

.booking-summary h3 { margin-bottom: 8px; }
.booking-summary p { margin: 4px 0; }

.contact-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  padding: 28px 0 34px;
  border-top: 1px solid rgba(70, 50, 35, 0.08);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }

.floating {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% { transform: none; }
  50% { transform: translateY(-12px); }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 72px 24px 32px;
  overflow: auto;
  background: rgba(10, 8, 7, 0.88);
}

.lightbox.open { display: flex; }

.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.lightbox img {
  width: auto;
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 120px);
  border-radius: 22px;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  background: #fff;
  cursor: pointer;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
}

.lightbox-nav {
  z-index: 1;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #2e241d;
  font-size: 2.6rem;
  line-height: 1;
}

@media (max-width: 780px) {
  .lightbox {
    gap: 10px;
    padding: 72px 12px 28px;
  }

  .lightbox-nav {
    position: fixed;
    top: 50%;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    transform: translateY(-50%);
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  .lightbox img {
    max-width: calc(100vw - 24px);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .booking-layout,
  .cards-3,
  .cards-2,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.large {
    grid-row: auto;
    grid-column: span 2;
    min-height: 360px;
  }

  .hero-card { min-height: 520px; }
}

@media (max-width: 780px) {
  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 180px;
    height: 180px;
    flex-basis: 180px;
    margin-bottom: -47px;
  }

  .brand-tagline {
    max-width: 125px;
    font-size: 1.2rem;
  }

  .nav-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

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

  .main-nav a { padding: 12px 14px; }

  .hero-grid,
  .split-grid,
  .booking-layout,
  .cards-3,
  .cards-2,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large { grid-column: auto; }

  .glass {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: 16px;
  }

  .hero-card { min-height: 420px; }
  .image-card img { min-height: 340px; }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .section { padding: 82px 0; }
}
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.contact-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.contact-card p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-card a {
  color: #a67c52;
  text-decoration: none;
}

.contact-buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-card iframe {
  border-radius: 20px;
}
.service-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 20px;
}

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

.service-card:hover .service-image img {
  transform: scale(1.05);
}
.service-highlight {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  background: #f8f3eb;
  border-left: 4px solid #c79a53;
  line-height: 1.7;
}
.certificate-slider{
    display:flex;
    align-items:center;
    gap:18px;
}

.certificate-track{

    display:flex;
    gap:24px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;

    width:100%;

    padding:10px;
}

.certificate-track::-webkit-scrollbar{
    display:none;
}

.certificate-card{

    flex:0 0 280px;

    margin:0;

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

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

    transition:.3s;
}

.certificate-card:hover{

    transform:translateY(-6px);

}

.certificate-card img{

    width:100%;

    height:260px;

    object-fit:contain;

    background:white;

    cursor:pointer;

}

.certificate-card figcaption{

    padding:16px;

    text-align:center;

    font-weight:600;

}

.slider-btn{

    width:54px;

    height:54px;

    border-radius:50%;

    border:none;

    cursor:pointer;

    background:white;

    box-shadow:var(--shadow);

    font-size:28px;

}

.slider-btn:hover{

    background:#f5eadf;

}

@media(max-width:768px){

.slider-btn{

display:none;

}

.certificate-card{

flex:0 0 80%;

}

}
.about-image {
    align-self: start;
    margin-top: -30px;
}
