:root {
  --wine-900: #3b0f16;
  --wine-800: #4a131c;
  --wine-700: #5a1722;
  --wine-600: #6b1c29;
  --wine-500: #7a2231;
  --gold: #c7a15a;
  --cream: #f5efe6;
  --paper: #fffaf3;
  --ink: #1b1b1b;
  --muted: #6f6a61;
  --line: rgba(199,161,90,.35);
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0,0,0,.22);
  --shadow-soft: 0 10px 25px rgba(0,0,0,.12);
  --container: 1140px;
  --font-serif: "Playfair Display", serif;
  --font-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--cream);
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(199,161,90,.18), transparent 55%),
    radial-gradient(1200px 600px at 90% 30%, rgba(199,161,90,.10), transparent 60%),
    linear-gradient(180deg, var(--wine-900), var(--wine-800) 40%, #2b0b10 100%);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 9999;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(59, 15, 22, .78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(199,161,90,.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--wine-900);
  background: linear-gradient(135deg, rgba(199,161,90,1), rgba(245,239,230,1));
  box-shadow: var(--shadow-soft);
}
.brand-text strong {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: .2px;
}
.brand-text small {
  display: block;
  color: rgba(245,239,230,.75);
  font-size: 12px;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-nav a {
  font-size: 14px;
  color: rgba(245,239,230,.85);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.site-nav a.is-active {
  color: var(--cream);
  background: rgba(199,161,90,.12);
  outline: 1px solid rgba(199,161,90,.25);
}
.site-nav a:hover {
  background: rgba(199,161,90,.10);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 44px;
  background: rgba(199,161,90,.08);
  border: 1px solid rgba(199,161,90,.22);
  border-radius: 14px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: rgba(245,239,230,.88);
  margin: 6px auto;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), rgba(245,239,230,.95));
  color: var(--wine-900);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  border-color: rgba(199,161,90,.40);
  color: var(--cream);
}
.btn-outline:hover { background: rgba(199,161,90,.10); }

.hero {
  padding: 54px 0 26px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: stretch;
}
.hero-card {
  background: rgba(245,239,230,.06);
  border: 1px solid rgba(199,161,90,.20);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-media {
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(59,15,22,.92), rgba(59,15,22,.35) 58%, rgba(59,15,22,.15)),
    /*url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=70");*/
	url("../img/thais1.png");
  background-size: cover;
  background-position: center;
}
.hero-content {
  position: relative;
  padding: 34px 34px 34px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,239,230,.78);
}
.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(199,161,90,.65);
}
h1, h2, h3 { font-family: var(--font-serif); margin: 10px 0; }
h1 { font-size: clamp(30px, 4vw, 46px); line-height: 1.1; }
.lead { color: rgba(245,239,230,.82); font-size: 16px; max-width: 52ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.panel {
  background: rgba(245,239,230,.06);
  border: 1px solid rgba(199,161,90,.20);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.panel .panel-inner { padding: 22px; }
.panel h3 { margin: 0 0 8px; font-size: 22px; }
.panel p { margin: 0; color: rgba(245,239,230,.80); }

.cards {
  padding: 26px 0 10px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card {
  background: rgba(245,239,230,.06);
  border: 1px solid rgba(199,161,90,.18);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.card .icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(199,161,90,.12);
  border: 1px solid rgba(199,161,90,.28);
  margin-bottom: 10px;
}
.card h4 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0 0 14px; color: rgba(245,239,230,.78); font-size: 14px; }
.card a { font-weight: 600; color: rgba(245,239,230,.95); }

.section {
  padding: 34px 0;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.section-title h2 { margin: 0; font-size: 30px; }
.section-title .muted { color: rgba(245,239,230,.75); max-width: 70ch; }

.pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pill {
  background: rgba(59, 15, 22, .45);
  border: 1px solid rgba(199,161,90,.22);
  border-radius: 999px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pill span { font-weight: 600; }
.pill a { opacity: .9; text-decoration: none; }
.pill a:hover { text-decoration: underline; }

.quote {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(245,239,230,.10), rgba(245,239,230,.05));
  border: 1px solid rgba(199,161,90,.18);
  border-radius: calc(var(--radius) + 8px);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.quote p { margin: 0; font-style: italic; color: rgba(245,239,230,.9); }
.quote small { display: block; margin-top: 10px; color: rgba(245,239,230,.70); }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: start;
}

.form {
  display: grid;
  gap: 12px;
}
.field {
  display: grid;
  gap: 6px;
}
label { font-weight: 600; font-size: 13px; color: rgba(245,239,230,.9); }
input, textarea, select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(199,161,90,.25);
  background: rgba(245,239,230,.06);
  color: var(--cream);
  outline: none;
}
input::placeholder, textarea::placeholder { color: rgba(245,239,230,.55); }
textarea { min-height: 130px; resize: vertical; }
.helper { font-size: 12px; color: rgba(245,239,230,.70); }

.notice {
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid rgba(199,161,90,.25);
  background: rgba(199,161,90,.10);
  color: rgba(245,239,230,.95);
}
.notice.success {
  border-color: rgba(120, 220, 160, .35);
  background: rgba(120, 220, 160, .12);
}
.notice.error {
  border-color: rgba(255, 120, 120, .35);
  background: rgba(255, 120, 120, .10);
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(199,161,90,.18);
  background: rgba(43, 11, 16, .92);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
  padding: 26px 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}
.footer-links a { color: rgba(245,239,230,.85); }
.footer-bottom {
  padding: 14px 0 22px;
  color: rgba(245,239,230,.70);
}
.muted { color: rgba(245,239,230,.75); }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 14px; }

.page-hero {
  padding: 34px 0 10px;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(245,239,230,.72);
}
.page-hero .headline {
  margin-top: 8px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.profile {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(199,161,90,.18);
  background: rgba(245,239,230,.06);
  box-shadow: var(--shadow-soft);
}
.avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(199,161,90,.12);
  border: 1px solid rgba(199,161,90,.28);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(199,161,90,.22);
  background: rgba(199,161,90,.10);
  color: rgba(245,239,230,.9);
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(199,161,90,.18);
  background: rgba(245,239,230,.04);
}
.table th, .table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(199,161,90,.12);
  text-align: left;
  font-size: 14px;
}
.table th { color: rgba(245,239,230,.85); }
.table td { color: rgba(245,239,230,.78); }
.table tr:last-child td { border-bottom: none; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .pills { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    background: rgba(59, 15, 22, .96);
    border: 1px solid rgba(199,161,90,.20);
    border-radius: 18px;
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: inline-grid; place-items: center; }
}
