*,
*::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;
}

.contact-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/13068359/pexels-photo-13068359.jpeg?auto=compress&cs=tinysrgb&w=2000");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-hero-content {
  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;
}

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

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  color: #222;
  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);
}

.contact-hero .text-link {
  color: #ffffff;
}

.contact-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);
}

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

.contact-intro-inner .eyebrow {
  margin-top: 8px;
}

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

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

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

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

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

.section-header-copy {
  max-width: 460px;
  justify-self: end;
}

.section-header-copy p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  min-height: 100%;
  padding: 40px;
  background: #eee5d9;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 28px;
}

.contact-detail-intro {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-detail-intro .eyebrow {
  margin-bottom: 14px;
}

.contact-detail-intro p {
  max-width: 400px;
  margin: 0;
  color: #333;
  line-height: 1.9;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
}

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

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail-label {
  color: #b08b5b;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail > span:not(.contact-detail-label) {
  color: #222;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-detail a {
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-detail a:hover {
  color: #b08b5b;
}

.contact-direct {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-direct-label {
  color: #333;
  font-size: 0.75rem;
}

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

.form-heading {
  margin-bottom: 35px;
}

.form-heading .eyebrow {
  margin-bottom: 12px;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

.form-field input,
.form-field select,
.form-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;
}

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

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

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

.form-field select {
  appearance: none;
  cursor: pointer;
}

.form-field textarea {
  min-height: 160px;
  resize: none;
  line-height: 1.6;
}

.form-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: 48px;
  padding: 14px 24px;
  background: #b08b5b;
  color: #ffffff;
  border: 1px solid #b08b5b;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  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(4px);
}

.form-note {
  color: #333;
  font-size: 0.75rem;
  opacity: 0.65;
}

.contact-location {
  padding: 120px 0;
  background: #eee5d9;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.location-heading h2 {
  max-width: 500px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}

.location-heading h2 span {
  color: #b08b5b;
}

.location-content {
  max-width: 620px;
}

.location-copy {
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.location-copy p {
  margin: 0;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.9;
}

.location-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 35px 0;
}

.location-details div span {
  display: block;
  margin-bottom: 10px;
  color: #b08b5b;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
}

.location-details div p {
  margin: 0;
  color: #222;
  line-height: 1.7;
}

.contact-options {
  padding: 120px 0;
  background: #f6f1ea;
}

.contact-options .section-header {
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}

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

.contact-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 300px;
  padding: 30px;
  background: #f8f4ef;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  transition: 0.3s ease;
}

.contact-option:hover {
  border-color: rgba(176, 139, 91, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

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

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

.contact-option p {
  max-width: 360px;
  margin: 0 0 24px;
  color: #333;
  line-height: 1.9;
}

.contact-option .text-link {
  margin-top: auto;
}

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

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

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

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

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

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.cta .primary-btn {
  background: #ffffff;
  color: #b08b5b;
  border-color: #ffffff;
}

.cta .primary-btn:hover {
  background: #f8f4ef;
  color: #8c6b42;
  border-color: #f8f4ef;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 40px, 1100px);
  }
  .contact-hero {
    padding: 160px 0 90px;
  }
  .contact-hero h1 {
    font-size: 3.5rem;
  }
  .contact-intro-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-intro-inner p {
    font-size: 3rem;
  }
  .section-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-header-copy {
    justify-self: start;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-options-grid {
    grid-template-columns: 1fr;
  }
  .contact-option {
    min-height: auto;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 30px, 1100px);
  }
  .contact-hero {
    padding: 140px 0 80px;
  }
  .contact-hero h1 {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
  .contact-hero-content > p {
    font-size: 0.95rem;
    line-height: 1.9;
  }
  .contact-intro {
    padding: 60px 0;
  }
  .contact-intro-inner p {
    font-size: 2.2rem;
  }
  .contact {
    padding: 80px 0;
  }
  .section-header h2 {
    font-size: 2.2rem;
  }
  .contact-details,
  .contact-form-wrap {
    padding: 24px;
    border-radius: 14px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-submit .primary-btn {
    width: 100%;
  }
  .contact-direct {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-location {
    padding: 80px 0;
  }
  .location-heading h2 {
    font-size: 2.2rem;
  }
  .location-details {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-options {
    padding: 80px 0;
  }
  .contact-option {
    padding: 24px;
  }
  .cta {
    padding: 80px 20px;
  }
  .cta h2 {
    font-size: 3rem;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .primary-btn,
  .cta-actions .secondary-btn {
    width: 100%;
    box-sizing: border-box;
  }
}

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