*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #1a1a1a;
  background: #f6f1ea;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #b08b5b #f6f1ea;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f6f1ea;
}

::-webkit-scrollbar-thumb {
  background: #b08b5b;
  border-radius: 28px;
  border: 2px solid #f6f1ea;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #8c6b42;
}

::-webkit-scrollbar-corner {
  background: #f6f1ea;
}

body {
  cursor: none;
}

.custom-cursor,
.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.custom-cursor {
  width: 7px;
  height: 7px;
  background: #b08b5b;
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.custom-cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid #b08b5b;
  border-radius: 50%;
  opacity: 0;
  transition: width 0.4s ease, height 0.4s ease, border-color 0.3s ease, background 0.3s ease, transform 0.4s ease, opacity 0.3s ease;
}

body.cursor-active .custom-cursor,
body.cursor-active .custom-cursor-ring {
  opacity: 1;
}

body.cursor-hover .custom-cursor {
  width: 5px;
  height: 5px;
  background: #ffffff;
}
body.cursor-hover .custom-cursor-ring {
  width: 50px;
  height: 50px;
  border-color: #b08b5b;
  background: rgba(176, 139, 91, 0.08);
}

body.cursor-click .custom-cursor-ring {
  width: 24px;
  height: 24px;
}

@media (hover: none), (pointer: coarse) {
  body {
    cursor: auto;
  }
  .custom-cursor,
  .custom-cursor-ring {
    display: none;
  }
}
#preloader {
  position: fixed;
  inset: 0;
  background: #f8f4ef;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}
.loader-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  letter-spacing: 6px;
  margin-bottom: 10px;
  animation: fadeUp 1.2s ease infinite alternate;
}
.loader-content span {
  font-size: 0.9rem;
  letter-spacing: 2px;
  opacity: 0.7;
  text-transform: uppercase;
}

@keyframes fadeUp {
  from {
    opacity: 0.5;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(-6px);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 60px;
  z-index: 100;
}

.navbar {
  max-width: 1200px;
  margin-inline: auto;
  padding: 14px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #222;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.3s ease;
}
.logo:hover {
  color: #8c6b42;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  position: relative;
  color: #333;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s ease;
}
.nav-links a:hover {
  color: #b08b5b;
}
.nav-links a.active {
  color: #b08b5b;
}
.nav-links a.active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: #b08b5b;
}

.nav-btn {
  padding: 10px 18px;
  border-radius: 12px;
  background: #b08b5b;
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s ease;
}
.nav-btn:hover {
  background: #8c6b42;
}

.hamburger {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 10px;
  transition: 0.3s ease;
}
.hamburger.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.hamburger.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 900px) {
  .header {
    padding: 14px 20px;
  }
  .navbar {
    padding: 12px 16px;
  }
  .nav-links {
    position: fixed;
    top: 90px;
    left: 20px;
    right: 20px;
    padding: 24px;
    background: rgba(246, 241, 234, 0.96);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    font-size: 1rem;
  }
  .nav-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
.footer {
  padding: 0 60px;
  background: #222;
  color: #ffffff;
}
.footer .container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 80px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-top h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 2px;
}
.footer-top p {
  max-width: 420px;
  margin: 0;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1.7;
  opacity: 0.6;
}

.footer-booking {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, gap 0.3s ease;
}
.footer-booking span {
  color: #b08b5b;
}
.footer-booking:hover {
  color: #b08b5b;
  gap: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding: 40px 0;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-links span {
  margin-bottom: 8px;
  color: #b08b5b;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.footer-links a {
  color: #ffffff;
  font-size: 0.75rem;
  text-decoration: none;
  opacity: 0.62;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.footer-links a:hover {
  color: #b08b5b;
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 0.7rem;
  opacity: 0.45;
}

@media (max-width: 900px) {
  .footer {
    padding: 0 30px;
  }
  .footer .container {
    padding: 60px 0 24px;
  }
  .footer-top {
    display: block;
    padding-bottom: 30px;
  }
  .footer-top h2 {
    font-size: 2rem;
  }
  .footer-booking {
    margin-top: 24px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
    padding: 30px 0;
  }
  .footer-links > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
    padding-top: 20px;
  }
  .footer-bottom p + p {
    margin-top: 8px;
  }
}
main {
  overflow: hidden;
}

.container {
  width: min(100% - 60px, 1100px);
  max-width: 1100px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: #b08b5b;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 6px;
  line-height: 1.4;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  color: #222;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 2px;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, gap 0.3s ease;
}
.text-link span {
  color: #b08b5b;
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.text-link:hover {
  color: #8c6b42;
  gap: 16px;
}
.text-link:hover span {
  transform: translateY(3px);
}

.booking-hero {
  padding: 280px 0 120px;
  background-image: linear-gradient(90deg, rgba(25, 21, 18, 0.82) 0%, rgba(25, 21, 18, 0.6) 35%, rgba(25, 21, 18, 0.3) 65%, rgba(25, 21, 18, 0.1) 100%), url("https://images.pexels.com/photos/3992861/pexels-photo-3992861.jpeg?auto=compress&cs=tinysrgb&w=2000");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.booking-hero-content {
  margin-inline: auto;
}

.booking-hero h1 {
  max-width: 800px;
  margin: 0 0 24px;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1px;
}

.booking-hero h1 span {
  color: #b08b5b;
}

.booking-hero-content > p {
  max-width: 600px;
  margin: 0 0 35px;
  margin: 0;
  color: #333;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.68;
}

.booking-intro {
  padding: 80px 0;
  background: #e5e2d8;
  background: #f8f4ef;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-intro-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.booking-intro-inner p {
  max-width: 780px;
  margin: 0;
  color: #333;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-size: 2.5rem;
  line-height: 1.2;
}

.booking-system {
  padding: 120px 0;
  background: #f6f1ea;
  scroll-margin-top: 30px;
}

.booking-section-header {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.booking-section-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}

.booking-section-header h2 span {
  color: #b08b5b;
}

.booking-section-header > p {
  max-width: 450px;
  margin: 0;
  color: #333;
  line-height: 1.9;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.7fr);
  gap: 60px;
  align-items: start;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.booking-block {
  padding: 40px;
  background: #f8f4ef;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 28px;
}

.booking-block-heading {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.booking-block-heading > span {
  flex-shrink: 0;
  color: #b08b5b;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
}

.booking-block-heading h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
}

.booking-block-heading p {
  margin: 0;
  color: #333;
  font-size: 0.75rem;
  line-height: 1.6;
}

.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 90px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.service-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-option-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-option-content strong {
  color: #222;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.service-option-content small {
  color: #333;
  font-size: 0.75rem;
}

.service-option-arrow {
  margin-left: auto;
  color: #b08b5b;
  font-size: 1.05rem;
  transition: 0.3s ease;
}

.service-option:hover {
  border-color: rgba(176, 139, 91, 0.4);
  transform: translateY(-2px);
}

.service-option:has(input:checked) {
  background: #eee5d9;
  border-color: #b08b5b;
}

.service-option:has(input:checked) .service-option-arrow {
  transform: translateX(5px);
}

.date-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 400px;
}

.date-field label {
  color: #222;
  font-size: 0.75rem;
  font-weight: 500;
}

.date-picker {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.date-picker:hover {
  border-color: rgba(176, 139, 91, 0.4);
}

.date-picker:focus {
  border-color: #b08b5b;
  box-shadow: 0 0 0 3px rgba(176, 139, 91, 0.4);
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.time-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  color: #222;
  font-size: 0.75rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.time-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.time-option:hover {
  border-color: rgba(176, 139, 91, 0.4);
  color: #b08b5b;
}

.time-option:has(input:checked) {
  background: #b08b5b;
  border-color: #b08b5b;
  color: #ffffff;
}

.booking-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-field-full {
  grid-column: 1/-1;
}

.booking-field label {
  color: #222;
  font-size: 0.75rem;
  font-weight: 500;
}

.booking-field input,
.booking-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: 0.3s ease;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: #333;
  opacity: 0.5;
}

.booking-field input:hover,
.booking-field textarea:hover {
  border-color: rgba(176, 139, 91, 0.4);
}

.booking-field input:focus,
.booking-field textarea:focus {
  border-color: #b08b5b;
  box-shadow: 0 0 0 3px rgba(176, 139, 91, 0.4);
}

.booking-field textarea {
  min-height: 130px;
  resize: none;
  line-height: 1.6;
}

.booking-submit {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 8px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 28px;
  background: #b08b5b;
  color: #ffffff;
  border: 1px solid #b08b5b;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.primary-btn span {
  transition: 0.3s ease;
}

.primary-btn:hover {
  background: #8c6b42;
  border-color: #8c6b42;
  transform: translateY(-2px);
}

.primary-btn:hover span {
  transform: translateX(5px);
}

.booking-submit p {
  margin: 0;
  color: #333;
  font-size: 0.75rem;
  opacity: 0.65;
}

.booking-summary {
  position: sticky;
  top: 30px;
  padding: 35px;
  background: #eee5d9;
  border: 1px solid rgba(176, 139, 91, 0.4);
  border-radius: 28px;
}

.summary-top {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.summary-top .eyebrow {
  margin-bottom: 12px;
}

.summary-top h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}

.summary-top h3 span {
  color: #b08b5b;
}

.summary-card {
  display: flex;
  flex-direction: column;
}

.summary-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row span {
  color: #333;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.summary-row strong {
  color: #222;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.summary-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.summary-note > span {
  display: block;
  margin-bottom: 8px;
  color: #b08b5b;
  font-size: 0.75rem;
  letter-spacing: 3px;
}

.summary-note p {
  margin: 0;
  color: #333;
  font-size: 0.75rem;
  line-height: 1.7;
}

.booking-trust {
  padding: 120px 0;
  background: #e5e2d8;
}

.booking-trust-header {
  max-width: 650px;
  margin-bottom: 60px;
}

.booking-trust-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}

.booking-trust-header h2 span {
  color: #b08b5b;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-item {
  padding: 30px;
  background: #f8f4ef;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  transition: 0.3s ease;
}

.trust-item:hover {
  border-color: rgba(176, 139, 91, 0.4);
  transform: translateY(-5px);
}

.trust-number {
  display: block;
  margin-bottom: 30px;
  color: #b08b5b;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.trust-item h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.trust-item p {
  max-width: 340px;
  margin: 0;
  color: #333;
  line-height: 1.9;
}

.booking-cta {
  padding: 120px 30px;
  background: #b08b5b;
  text-align: center;
}

.booking-cta-inner {
  max-width: 760px;
  margin-inline: auto;
}

.booking-cta .eyebrow {
  color: #ffffff;
  opacity: 0.75;
}

.booking-cta h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
}

.booking-cta h2 span {
  color: #ffffff;
  opacity: 0.75;
}

.booking-cta p {
  max-width: 600px;
  margin: 0 auto;
  color: #ffffff;
  line-height: 1.9;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 40px, 1100px);
  }
  .booking-hero {
    padding: 160px 0 90px;
  }
  .booking-hero h1 {
    font-size: 3.5rem;
  }
  .booking-intro-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .booking-intro-inner p {
    font-size: 3rem;
  }
  .booking-section-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .booking-summary {
    position: static;
    order: -1;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 30px, 1100px);
  }
  .booking-hero {
    padding: 140px 0 80px;
  }
  .booking-hero h1 {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
  .booking-hero-content > p {
    font-size: 0.95rem;
  }
  .booking-intro {
    padding: 60px 0;
  }
  .booking-intro-inner p {
    font-size: 2.2rem;
  }
  .booking-system {
    padding: 80px 0;
  }
  .booking-section-header h2 {
    font-size: 2.2rem;
  }
  .booking-block {
    padding: 24px;
    border-radius: 14px;
  }
  .service-options {
    grid-template-columns: 1fr;
  }
  .time-slots {
    grid-template-columns: 1fr 1fr;
  }
  .booking-details-grid {
    grid-template-columns: 1fr;
  }
  .booking-field-full {
    grid-column: auto;
  }
  .booking-submit {
    flex-direction: column;
    align-items: stretch;
  }
  .booking-submit .primary-btn {
    width: 100%;
  }
  .booking-summary {
    padding: 24px;
    border-radius: 14px;
  }
  .summary-top h3 {
    font-size: 2.2rem;
  }
  .booking-trust {
    padding: 80px 0;
  }
  .booking-trust-header h2 {
    font-size: 2.2rem;
  }
  .booking-cta {
    padding: 80px 20px;
  }
  .booking-cta h2 {
    font-size: 3rem;
  }
}

/*# sourceMappingURL=booking.css.map */
