:root {
  --bg: #f5f7fb;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #b8892e;
  --primary-dark: #946c22;
  --accent: #e0b04b;
  --card: #ffffff;
  --border: #e5e7eb;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

* {
  font-family: "Montserrat", Arial, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 1320px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.site-header__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-logo img.logo {
  height: 58px;
  width: auto;
  max-height: none;
  transform: none !important;
}

.site-nav {
  flex: 1;
}

.site-nav .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.site-nav .nav-link {
  border: 0;
  background: transparent;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 500;
  text-transform: none;
  letter-spacing: .01em;
  padding: 8px 6px;
  border-radius: 0;
  border-bottom: 2px solid transparent;
}

.site-nav .nav-link:hover {
  color: var(--primary-dark);
  background: transparent;
  border-bottom-color: rgba(148, 108, 34, 0.35);
}

.site-nav .nav-link.active {
  color: var(--primary-dark);
  background: transparent;
  border-bottom-color: var(--primary-dark);
}

.site-nav .nav-link.active::after {
  display: none;
}

.site-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  min-width: 175px;
}

.site-meta a {
  text-decoration: none;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
}

.site-meta__mail {
  color: #4b5563 !important;
  font-weight: 400 !important;
  font-size: 14px !important;
}

.hamburger {
  display: none;
  border: 0;
  background: #f8fafc;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
  transition: background-color .2s ease, transform .2s ease;
}

.hamburger span {
  position: absolute;
  width: 16px;
  height: 2px;
  background: #374151;
  border-radius: 999px;
  transition: transform .22s ease, opacity .2s ease, top .22s ease;
}

.hamburger span:nth-child(1) {
  top: 14px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 26px;
}

.hamburger.active {
  background: #fff7e8;
}

.hamburger.active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.home-hero {
  position: relative;
  min-height: 620px;
  background: #111827 center center / cover no-repeat;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.4) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  padding: 28px 30px;
}

.home-booking {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(3, 25, 41, 0.22);
  display: grid;
  grid-template-columns: repeat(4, 1fr) 120px;
  gap: 10px;
  padding: 12px;
}

.home-booking__field {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 8px 10px;
}

.home-booking__label {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.home-booking__value {
  font-size: 13px;
  color: #111827;
  font-weight: 600;
}

.home-booking__button {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #e9b73f);
  color: #1f2937;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
}

.tabs-section,
.info-section,
.features-section,
.gallery-section {
  max-width: 1320px;
}

.tabs-section {
  padding: 30px 20px 26px;
}

.tabs-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.tab-card {
  position: relative;
  display: block;
  min-height: 190px;
  background: #111;
  border-radius: 16px;
  border: 0;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.2);
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease;
}

.tab-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.52) 100%);
  pointer-events: none;
}

.tab-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 34px rgba(17, 24, 39, 0.28);
}

.tab-card-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0));
  padding: 12px 12px 24px;
}

.tab-card-header span {
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.tab-card-image {
  height: 100%;
}

.tab-card-image img {
  width: 100%;
  height: 190px !important;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.tab-card:hover .tab-card-image img {
  transform: scale(1.08);
}

.info-panel,
.gallery-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

.info-section {
  padding: 14px 20px 36px;
}

.info-panel {
  background: #fff !important;
  border-radius: 18px !important;
  border: 1px solid rgba(148, 108, 34, 0.16) !important;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08) !important;
  padding: 30px 30px 24px !important;
}

.info-section h2 {
  margin: 0 0 18px !important;
  font-size: clamp(30px, 3vw, 44px) !important;
  line-height: 1.06 !important;
  letter-spacing: .01em !important;
  text-transform: uppercase;
  color: #3e2d0d !important;
}

.info-text {
  column-count: 2;
  column-gap: 34px;
  margin-top: 8px !important;
  text-align: left !important;
}

.info-section p {
  font-size: 16px !important;
  line-height: 1.72 !important;
  color: #334155;
  margin: 0 0 14px !important;
  break-inside: avoid;
}

.info-section p.lead {
  color: #1f2937 !important;
  font-size: 17px !important;
  font-weight: 600 !important;
}

.info-section p.info-highlight {
  display: block;
  background: #fffaf0 !important;
  border: 1px solid rgba(184, 137, 46, 0.25) !important;
  border-left: 4px solid var(--primary) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  margin-top: 12px !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  color: #3f3f46 !important;
}

.info-section p.info-highlight strong {
  color: var(--primary-dark) !important;
}

.feature-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.gd-footer {
  margin-top: 30px;
  margin-bottom: 0 !important;
  background: #0f172a;
  color: #d1d5db;
}

.gd-footer a {
  color: #f3f4f6;
}

/* Global gold override for legacy page-level styles */
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  color: #3e2d0d;
}

.content a {
  color: var(--primary-dark);
}

.content a:hover {
  color: var(--primary);
}

.content .btn-primary,
.content button.btn-primary,
.content input[type="submit"],
.content button[type="submit"] {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  border-color: var(--primary) !important;
  color: #2f250f !important;
}

.content .btn-primary:hover,
.content button.btn-primary:hover,
.content input[type="submit"]:hover,
.content button[type="submit"]:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
  color: #fff8ea !important;
}

@media (max-width: 1150px) {
  .site-meta {
    display: none;
  }

  .tabs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .info-text {
    column-count: 1;
    column-gap: 0;
  }

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

  .home-booking__button {
    min-height: 44px;
  }
}

@media (max-width: 920px) {
  .site-header {
    border-bottom: 1px solid rgba(148, 108, 34, 0.15);
  }

  .site-header .container {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .site-header__inner {
    min-height: 64px;
    padding: 0 14px;
    gap: 12px;
  }

  .hamburger {
    display: inline-flex;
    margin-left: auto;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    padding: 0 !important;
    transform: none;
  }

  .site-nav .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.12);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 14px 18px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    display: none;
    gap: 6px;
  }

  .site-nav .nav-links.active {
    display: flex;
  }

  .site-nav .nav-link {
    text-align: left;
    border-radius: 10px;
    border-bottom: 0;
    font-size: 14px;
    letter-spacing: .01em;
    padding: 12px 14px;
    font-weight: 600;
    border: 1px solid transparent;
    background: #fff;
  }

  .site-nav .nav-link:hover {
    border-color: rgba(184, 137, 46, 0.25);
    background: #fffaf0;
  }

  .site-nav .nav-link.active {
    border-color: rgba(184, 137, 46, 0.3);
    background: #fff4dc;
    color: #3e2d0d;
  }

  .site-nav {
    flex: 0;
  }

  .tabs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .home-hero {
    min-height: 430px;
    border-radius: 0;
  }

  .home-hero__content {
    padding: 18px;
  }

  .home-booking {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .info-panel {
    padding: 20px 16px 18px !important;
    border-radius: 14px !important;
  }

  .info-section h2 {
    font-size: 28px !important;
    line-height: 1.15 !important;
  }

  .info-section p {
    font-size: 15px !important;
    line-height: 1.62 !important;
  }
}

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