:root {
  --color-ink: #1B2430;
  --color-forest: #2B3A32;
  --color-canvas: #F3EEE6;
  --color-paper: #FAF7F2;
  --color-brass: #A9805A;
  --color-brass-dark: #8C6743;
  --color-line: #DBD1C0;
  --color-muted: #6B655C;
  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;

  --radius: 2px;
  --container-pad: 1.25rem;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-canvas);
  line-height: 1.6;
}

h1,
h2,
h3,
.hero-title,
.section-title,
.cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Section Styles */
section {
  overflow: hidden;
}
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--color-paper);
}

.section-dark {
  background: var(--color-ink);
  color: #EDE7DC;
}

.section-dark .section-title {
  color: #FAF7F2;
}

.kicker {
  font-size: 0.9rem;
  color: var(--color-brass-dark);
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.kicker-light {
  color: #D8C6AE;
}

.kicker-light .kicker-rule {
  background: #D8C6AE;
}

.section-title {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  max-width: 620px;
}

.section-text {
  color: var(--color-muted);
  max-width: 520px;
}



/* Buttons Style */
.btn-brass {
  background: var(--color-brass);
  border: 1px solid var(--color-brass);
  color: var(--color-paper);
  border-radius: var(--radius);
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  position: relative;
}

.btn-brass:hover {
  background: var(--color-brass-dark);
  border-color: var(--color-brass-dark);
  color: var(--color-paper);
}

.btn-brass::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-ink);
  border-left: 2px solid var(--color-ink);
  opacity: 0.4;
}

.btn-outline-line {
  border: 1px solid #A9805A;
  color: #ffffff;
  border-radius: 2px;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  background: transparent;
}

.btn-outline-line:hover {
  background: var(--color-ink);
  color: var(--color-paper);
}

.btn-light-outline {
  border: 1px solid #EDE3D3;
  color: #EDE3D3;
  border-radius: var(--radius);
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  background: transparent;
}

.btn-light-outline:hover {
  background: #EDE3D3;
  color: var(--color-ink);
}
/* Navbar */
#mainNav {
  padding: 1.1rem 0;
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

#mainNav.scrolled {
  background: var(--color-paper);
  padding: 0.7rem 0;
  box-shadow: 0 1px 0 var(--color-line);
}

.navbar-brand img{
  width: 120px;
}

.navbar-toggler {
  border: none;
  padding: 0.3rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link {
  color: #ffffff;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
}

#mainNav.scrolled .nav-link {
  color: #1B2430;
}

.nav-link:hover {
  color: var(--color-brass-dark);
}

.hero {
  position: relative;
  padding: 10.5rem 0 6.5rem;
  overflow: hidden;
  background-image: url("./images/hero-image.webp");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(27, 36, 48, 0.92) 0%, rgba(27, 36, 48, 0.78) 45%, rgba(27, 36, 48, 0.4) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: #FAF7F2;
}

.hero-lead {
  color: #D8D1C4;
  max-width: 480px;
  margin-top: 1.2rem;
  font-size: 1.05rem;
}

.hero .kicker {
  color: #E8CBA3;
}

.hero .kicker-rule {
  background: #E8CBA3;
}

.stat-panel {
  background: rgba(254, 253, 251, 0.8);
  border: 1px solid var(--color-line);
  padding: 2rem;
}

.stat-row {
  display: flex;
}

.stat-row+.stat-row {
  border-top: 1px solid var(--color-line);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.stat {
  flex: 1;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-brass-dark);
}

.stat-label {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* About */
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--color-line);
}

.mini-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-left: 2px solid var(--color-brass);
  padding-left: 1rem;
}

.mini-stat-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.mini-stat-label {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Why choose us */
.feature-card {
  background: var(--color-canvas);
  border: 1px solid var(--color-line);
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
}

.feature-card::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--color-brass);
  border-right: 2px solid var(--color-brass);
}

.feature-card i {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-brass-dark);
  line-height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-size: 1.4rem;
  color: var(--color-brass-dark);
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ---- Amenities ---- */
.amenity-card {
  border: 1px solid var(--color-line);
  padding: 1.6rem 1.2rem;
  height: 100%;
  background: var(--color-paper);
  border-top: 2px solid var(--color-brass);
  transition: border-color 0.2s ease;
}

.amenity-card:hover {
  border-color: var(--color-brass-dark);
}

.amenity-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.amenity-card p {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin: 0;
}

/* Testimonial */
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}

.testimonial-text::before {
  content: "\201C";
  display: block;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--color-brass);
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
}

.testimonial-name {
  margin-top: 1.2rem;
  font-weight: 600;
}

.testimonial-name span {
  color: #B9AF9F;
  font-weight: 400;
}

.carousel-control-prev,
.carousel-control-next {
  width: 4%;
  opacity: 0.85;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 1.5rem;
  height: 1.5rem;
}

.carousel-indicators-custom {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-indicators-custom button {
  width: 24px;
  height: 2px;
  border: none;
  background: rgba(250, 247, 242, 0.3);
  padding: 0;
}

.carousel-indicators-custom button.active {
  background: var(--color-brass);
}

/* CTA Section */
.cta {
  background: var(--color-forest);
  color: #F3EEE6;
  padding: 4.5rem 0;
}

.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #FAF7F2;
}

.cta-text {
  color: #D6CEBE;
  max-width: 480px;
  margin: 0.6rem 0 0;
}

/* Contact */
.contact-list {
  margin-top: 1.8rem;
}

.contact-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-line);
}

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

.contact-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-brass-dark);
  margin-bottom: 0.2rem;
}

.contact-list p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin: 0;
}

.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.social-row a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.social-row a:hover {
  border-color: var(--color-brass);
  color: var(--color-brass-dark);
}

.contact-form {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  padding: 2rem;
}

.contact-form .form-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.contact-form .form-control {
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  padding: 0.65rem 0.9rem;
  background: var(--color-canvas);
}

.contact-form .form-control:focus {
  border-color: var(--color-brass);
  box-shadow: 0 0 0 3px rgba(169, 128, 90, 0.15);
  background: var(--color-paper);
}

.form-success {
  display: none;
  margin-left: 1rem;
  color: var(--color-forest);
  font-weight: 500;
}

.form-success.show {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Footer */
.footer {
  background: var(--color-ink);
  color: #B9AF9F;
  padding: 3.5rem 0 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #FAF7F2;
  font-weight: 600;
}

.footer-tagline {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer-links a:hover {
  color: #FAF7F2;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.2rem;
}

.footer-copy {
  font-size: 0.85rem;
  margin: 0;
  text-align: center;
}

#backToTop {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--color-ink);
  color: #FAF7F2;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--color-brass-dark);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--color-paper);
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--color-line);
  }
  .nav-link { 
    color: #1B2430;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
.text-white {
  color: #ffffff !important;
}
a:focus-visible,
button:focus-visible,
.form-control:focus-visible {
  outline: 2px solid var(--color-brass);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}