:root {
  --stone: #8B8178;
  --stone-dark: #3D3832;
  --cream: #F7F3ED;
  --amber: #C4956A;
  --amber-dark: #A67B52;
  --olive: #4A5D4A;
  --terracotta: #9B4A3A;
  --tile-gold: #C4A035;
  --white: #FFFFFF;
  --shadow: 0 12px 40px rgba(61, 56, 50, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--stone-dark);
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(139, 129, 120, 0.06) 0, transparent 50%),
    radial-gradient(circle at 80% 0%, rgba(196, 149, 106, 0.08) 0, transparent 40%);
}

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

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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--stone-dark);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 560px;
}

.tile-divider {
  height: 8px;
  background:
    repeating-linear-gradient(
      45deg,
      var(--tile-gold) 0 2px,
      transparent 2px 8px,
      var(--stone-dark) 8px 10px,
      transparent 10px 16px
    );
  opacity: 0.15;
}

/* Navbar */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-nav.scrolled {
  background: rgba(61, 56, 50, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  padding: 0.6rem 0;
}

.site-nav .navbar-brand {
  padding: 0;
}

.brand-wordmark {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.site-nav .nav-link {
  color: rgba(247, 243, 237, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem !important;
  transition: color 0.25s ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  color: var(--amber);
}

.btn-amber {
  background: var(--amber);
  color: var(--white);
  border: none;
  padding: 0.65rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.btn-amber:hover {
  background: var(--amber-dark);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(196, 149, 106, 0.4);
  transform: translateY(-1px);
}

.btn-outline-light-custom {
  border: 1px solid rgba(247, 243, 237, 0.5);
  color: var(--cream);
  padding: 0.65rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 2px;
  background: transparent;
  transition: all 0.25s ease;
}

.btn-outline-light-custom:hover {
  background: var(--cream);
  color: var(--stone-dark);
}

.navbar-toggler {
  border-color: rgba(247, 243, 237, 0.4);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
  transform: scale(1.12);
  animation: heroKenBurns 18s ease-out forwards;
  filter: contrast(1.1) saturate(1.15) brightness(0.88);
  will-change: transform;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.22);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(15, 13, 11, 0.55) 0%,
      rgba(15, 13, 11, 0.15) 35%,
      rgba(61, 56, 50, 0.35) 55%,
      rgba(25, 22, 18, 0.82) 100%
    ),
    linear-gradient(
      90deg,
      rgba(10, 9, 8, 0.45) 0%,
      transparent 28%,
      transparent 72%,
      rgba(10, 9, 8, 0.35) 100%
    );
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    ellipse 85% 75% at 50% 45%,
    transparent 35%,
    rgba(8, 7, 6, 0.65) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(0, 0, 0, 0.25);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.95;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  opacity: 0.7;
  z-index: 3;
}

.scroll-indicator svg {
  width: 28px;
  height: 28px;
  stroke: var(--cream);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* About */
.about-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.about-images {
  position: relative;
}

.about-main-img {
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.about-overlay-img {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 55%;
  border: 4px solid var(--cream);
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 129, 120, 0.25);
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--olive);
  line-height: 1;
}

.stat-item span {
  font-size: 0.8rem;
  color: var(--stone);
  letter-spacing: 0.05em;
}

.about-stats--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 360px;
}

.room-desc {
  font-size: 0.95rem;
  color: var(--stone);
  margin-bottom: 1rem;
}

/* Rooms */
.rooms-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--white);
}

.room-card {
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(61, 56, 50, 0.18);
}

.room-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.room-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-card-media img {
  transform: scale(1.04);
}

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(61, 56, 50, 0.75);
  backdrop-filter: blur(4px);
  border-radius: 2px;
}

.room-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 56, 50, 0.35) 0%, transparent 50%);
  pointer-events: none;
}

.room-card-body {
  padding: 1.75rem;
}

.room-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.room-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--stone);
  margin-bottom: 1rem;
}

.room-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.room-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--stone);
}

.room-features li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.room-features li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.5rem;
  top: 0.55rem;
}

/* Avlu */
.avlu-section {
  padding: 0;
  background: var(--stone-dark);
  color: var(--cream);
}

.avlu-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(720px, 78vh, 920px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(5rem, 10vh, 7rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}

.avlu-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.avlu-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: contrast(1.08) saturate(1.12) brightness(0.9);
}

.avlu-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(15, 13, 11, 0.2) 0%,
      rgba(15, 13, 11, 0.12) 40%,
      rgba(25, 22, 18, 0.7) 100%
    );
  pointer-events: none;
}

.avlu-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4.5rem);
  width: 100%;
}

.avlu-hero-content {
  max-width: 560px;
}

.avlu-hero .section-title {
  color: var(--cream);
}

.avlu-hero .section-lead {
  color: rgba(247, 243, 237, 0.88);
  max-width: none;
}

.avlu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  width: min(88%, 820px);
  margin: 0 auto;
}

.avlu-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  max-height: 175px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.avlu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.avlu-photo:nth-child(1) img {
  object-position: center center;
}

.avlu-photo:nth-child(2) img {
  object-position: center 40%;
}

.avlu-photo:nth-child(3) img {
  object-position: center 55%;
}

.avlu-photo:hover img {
  transform: scale(1.05);
}

.avlu-photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  background: linear-gradient(to top, rgba(61, 56, 50, 0.9), transparent);
  color: var(--cream);
}

/* Amenities */
.amenities-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.amenity-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(61, 56, 50, 0.06);
  transition: transform 0.3s ease;
}

.amenity-item:hover {
  transform: translateY(-4px);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 149, 106, 0.4);
  border-radius: 50%;
  color: var(--amber);
  font-size: 1.25rem;
}

.amenity-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.amenity-item p {
  font-size: 0.85rem;
  color: var(--stone);
  margin: 0;
}

/* Location */
.location-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--white);
}

.location-intro {
  margin-bottom: 3rem;
}

.address-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--cream);
  border-left: 3px solid var(--amber);
  border-radius: 0 2px 2px 0;
  text-align: left;
}

.address-box i {
  font-size: 1.5rem;
  color: var(--amber);
}

.address-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--stone-dark);
}

.address-box span {
  font-size: 0.9rem;
  color: var(--stone);
}

.map-wrap {
  height: 100%;
  min-height: 100%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 991px) {
  .map-wrap {
    aspect-ratio: 16 / 10;
    min-height: 320px;
  }
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  height: 100%;
}

.location-row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.distance-item {
  padding: 1.25rem;
  background: var(--cream);
  border-left: 3px solid var(--amber);
  border-radius: 0 2px 2px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.distance-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--olive);
}

.distance-item span {
  font-size: 0.85rem;
  color: var(--stone);
}

/* Gallery */
.gallery-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(61, 56, 50, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(61, 56, 50, 0.15);
}

.gallery-item--nazar img {
  object-position: center 30%;
}

/* Contact */
.contact-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--white);
}

.contact-card-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(61, 56, 50, 0.06);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-card-item--highlight {
  background: var(--white);
  border: 1px solid rgba(196, 149, 106, 0.35);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--amber);
  border-radius: 50%;
  font-size: 1.35rem;
}

.contact-card-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-card-item p {
  margin: 0;
  color: var(--stone);
  font-size: 0.95rem;
}

.contact-card-item a {
  color: var(--amber-dark);
  font-weight: 500;
}

.contact-card-item a:hover {
  color: var(--olive);
}

.contact-address-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--cream);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.contact-address-card .contact-card-icon {
  margin: 0;
  flex-shrink: 0;
}

.contact-address-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-address-card p {
  color: var(--stone);
  line-height: 1.6;
}

.tabela-img {
  width: 100%;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.policy-note {
  font-size: 0.85rem;
  color: var(--stone);
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: 2px;
  border-left: 3px solid var(--amber);
}

/* Footer */
.site-footer {
  background: var(--stone-dark);
  color: rgba(247, 243, 237, 0.75);
  padding: 4rem 0 0;
  font-size: 0.875rem;
}

.footer-main {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(247, 243, 237, 0.1);
}

.footer-brand-name {
  display: block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.footer-brand p {
  margin: 0;
  line-height: 1.6;
  max-width: 240px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: rgba(247, 243, 237, 0.75);
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: var(--amber);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 991px) {
  .about-overlay-img {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 1rem;
    border-width: 2px;
  }

  .avlu-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item--wide {
    grid-column: span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    animation: none;
    transform: scale(1.1);
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 90vh;
  }

  .hero-media img {
    object-position: 62% 40%;
    animation: none;
    transform: scale(1.15);
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .distance-grid {
    grid-template-columns: 1fr;
  }
}
