:root {
  color-scheme: dark;
  --ink: #f7ead2;
  --muted: #c7b99f;
  --line: rgba(214, 164, 82, 0.26);
  --paper: #0f0c09;
  --soft: #1b1510;
  --green: #b98035;
  --green-dark: #080604;
  --sun: #d9a657;
  --gold: #f3cf86;
  --bronze: #8a5526;
  --panel: rgba(28, 21, 15, 0.88);
  --panel-solid: #18120d;
  --white: #fff8e8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 166, 87, 0.12), transparent 34rem),
    radial-gradient(circle at 100% 20%, rgba(138, 85, 38, 0.14), transparent 32rem),
    linear-gradient(180deg, #15100c 0%, var(--paper) 44%, #120d09 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(10, 8, 6, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.lang-switch {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--gold);
}

.brand-logo {
  width: 150px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 22px rgba(217, 166, 87, 0.18));
}

.main-nav {
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  color: #d7c6a9;
  font-size: 15px;
  font-weight: 650;
}

.main-nav a:hover {
  color: var(--gold);
}

.lang-switch {
  gap: 4px;
  padding: 4px;
  background: rgba(255, 248, 232, 0.06);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.lang-switch button {
  min-width: 42px;
  height: 34px;
  color: #cbb99b;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.lang-switch button.active {
  color: #1a1008;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 124px clamp(18px, 5vw, 64px) 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 7, 5, 0.96), rgba(18, 12, 8, 0.78) 48%, rgba(10, 7, 5, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 228, 175, 0.045) 0 1px, transparent 1px 84px),
    radial-gradient(circle at 72% 24%, rgba(217, 166, 87, 0.16), transparent 28rem),
    #0c0907;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 150px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--paper));
}

.hero-shell {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  margin: 0 auto;
}

.hero-content {
  width: min(720px, 100%);
  color: var(--white);
}

.hero-brand {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-shadow: 0 0 24px rgba(217, 166, 87, 0.28);
}

.hero-brand span {
  display: block;
  margin-top: 3px;
  color: #f8dfaa;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 0.58em;
  font-weight: 400;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(34px, 4.5vw, 62px);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: #dbcbb0;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-portrait {
  position: relative;
  overflow: hidden;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(243, 207, 134, 0.42), rgba(138, 85, 38, 0.16)),
    rgba(255, 248, 232, 0.04);
  border: 1px solid rgba(243, 207, 134, 0.36);
  border-radius: 10px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62);
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(1.08) contrast(1.04);
}

.portrait-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(11, 8, 6, 0.78);
  border: 1px solid rgba(243, 207, 134, 0.28);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.portrait-caption strong {
  color: var(--gold);
}

.portrait-caption span {
  color: #d9c7a8;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.button.primary {
  color: #1a1008;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  box-shadow: 0 15px 30px rgba(217, 166, 87, 0.2);
}

.button.secondary {
  color: var(--gold);
  border-color: rgba(243, 207, 134, 0.42);
  background: rgba(255, 248, 232, 0.06);
}

.stats {
  width: min(1120px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 28px auto 72px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-search {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  margin: -36px auto 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(38, 28, 19, 0.96), rgba(20, 14, 10, 0.96));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-search label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-search select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #120d09;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
}

.stats div {
  padding: 26px;
  background: linear-gradient(180deg, rgba(37, 27, 19, 0.94), rgba(18, 13, 9, 0.96));
}

.stats strong {
  display: block;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 650;
}

.section,
.contact-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section h2,
.contact-section h2 {
  font-size: clamp(31px, 4vw, 52px);
}

.section-heading p:not(.eyebrow),
.split p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
}

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

.tour-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: -8px 0 20px;
}

.tour-toolbar p {
  margin: 0;
  color: var(--muted);
}

.tour-toolbar strong {
  color: var(--gold);
}

.text-button {
  padding: 0;
  color: var(--gold);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.tour-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(33, 24, 17, 0.96), rgba(18, 13, 9, 0.98));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 32, 27, 0.08);
}

.tour-card img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
}

.tour-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}

.tour-card .tour-tag {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.tour-card h3,
.service-grid h3 {
  margin: 8px 0 8px;
  font-size: 22px;
  line-height: 1.18;
}

.tour-card p,
.service-grid p {
  margin: 0;
  color: var(--muted);
}

.tour-meta,
.tour-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tour-meta span,
.tour-includes span {
  padding: 7px 9px;
  color: var(--gold);
  background: rgba(243, 207, 134, 0.08);
  border: 1px solid rgba(243, 207, 134, 0.14);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.tour-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 4px;
}

.tour-price {
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
}

.tour-card .button {
  min-height: 40px;
  padding: 9px 12px;
}

.empty-state {
  padding: 34px;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.empty-state h3 {
  margin: 0 0 8px;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.service-band {
  width: 100%;
  max-width: none;
  padding-right: clamp(18px, 5vw, 64px);
  padding-left: clamp(18px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(217, 166, 87, 0.07), rgba(255, 255, 255, 0)),
    #130e0a;
}

.service-band .section-heading,
.service-grid {
  width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-grid article {
  padding: 24px;
  background: rgba(255, 248, 232, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 8px;
  color: #1a1008;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  border-radius: 8px;
  font-size: 22px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.about-list {
  display: grid;
  gap: 14px;
}

.about-list div {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-list strong,
.about-list span {
  display: block;
}

.about-list strong {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 20px;
}

.about-list span {
  color: var(--muted);
}

.director-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.director-section .section-heading {
  margin-bottom: 0;
}

.director-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(217, 166, 87, 0.08), rgba(255, 255, 255, 0)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 32, 27, 0.08);
}

.director-card::after {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 110px;
  height: 110px;
  content: "";
  border: 1px solid rgba(217, 166, 87, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(217, 166, 87, 0.04);
}

.director-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: center;
}

.director-avatar {
  position: relative;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: #1a1008;
  background: linear-gradient(135deg, #f8d984, #b9762f);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(147, 89, 31, 0.18);
}

.director-avatar span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 800;
}

.director-identity h3 {
  max-width: 420px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
}

.director-identity span {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 12px;
  color: var(--gold);
  background: rgba(243, 207, 134, 0.08);
  border: 1px solid rgba(243, 207, 134, 0.16);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
}

.director-info {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.director-row {
  padding: 16px;
  background: rgba(255, 248, 232, 0.055);
  border: 1px solid rgba(243, 207, 134, 0.12);
  border-radius: 8px;
}

.director-row-wide {
  grid-column: 1 / -1;
}

.director-row small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.director-row strong {
  display: block;
  color: var(--gold);
  font-size: 18px;
  line-height: 1.15;
}

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

.trust-grid article {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-grid strong {
  display: block;
  color: var(--gold);
  font-size: 19px;
  line-height: 1.25;
}

.trust-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--gold);
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.payment-section {
  padding-top: 24px;
}

.payment-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) 1fr;
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(217, 166, 87, 0.12), rgba(255, 255, 255, 0)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-card h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
}

.payment-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: start;
  padding-bottom: 92px;
}

.contact-copy h3 {
  margin: 34px 0 18px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.16;
}

.contact-phone-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
}

.contact-phone-line strong {
  display: block;
  width: 100%;
  color: var(--gold);
  font-size: 22px;
  line-height: 1.2;
}

.contact-phone-line span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  color: #1a1008;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.contact-details {
  display: grid;
  gap: 20px;
  margin: 0;
}

.contact-details div {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(243, 207, 134, 0.14);
}

.contact-details dt {
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 850;
}

.contact-details dd {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(243, 207, 134, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--panel);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.contact-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(217, 166, 87, 0.08), rgba(255, 255, 255, 0)),
    var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.contact-form label:has(textarea),
.contact-form .primary,
.form-note {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 248, 232, 0.06);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
}

.contact-form .primary {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  color: #1a1008;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.form-status[data-state="success"] {
  color: #72d88d;
}

.form-status[data-state="error"] {
  color: #ff9d8f;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer span:first-child {
  color: var(--gold);
  font-weight: 850;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-portrait {
    max-width: 520px;
  }

  .tour-grid,
  .service-grid,
  .quick-search,
  .split,
  .director-section,
  .payment-card,
  .contact-section,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    width: min(560px, 100%);
    margin-left: 0;
  }

  .director-section .section-heading {
    margin-bottom: 10px;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-logo {
    width: 128px;
    height: 42px;
  }

  .lang-switch button {
    min-width: 36px;
  }

  .main-nav {
    gap: 16px;
    font-size: 14px;
  }

  .hero {
    min-height: 88vh;
    padding: 150px 18px 52px;
  }

  .hero-brand {
    font-size: clamp(36px, 13vw, 58px);
  }

  .hero h1 {
    font-size: clamp(31px, 10vw, 46px);
  }

  .portrait-caption {
    position: static;
    margin-top: 10px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .section,
  .contact-section {
    padding: 54px 0;
  }

  .director-card {
    padding: 18px;
  }

  .director-card::after {
    top: -46px;
    right: -46px;
  }

  .director-header {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }

  .director-avatar {
    width: 60px;
    height: 60px;
    border-radius: 8px;
  }

  .director-avatar span {
    font-size: 22px;
  }

  .director-identity h3 {
    font-size: 20px;
  }

  .director-identity span {
    margin-top: 8px;
    font-size: 13px;
  }

  .director-info {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .director-row {
    padding: 14px;
  }

  .director-row small {
    font-size: 12px;
  }

  .director-row strong {
    font-size: 17px;
  }

  .quick-search {
    margin-top: -28px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

}
