@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --color-background: #0d0e12;
  --color-surface: #14161f;
  --color-surface-soft: #181b26;
  --color-surface-velvet: #1a0d16;
  --color-text: #f6f2e8;
  --color-text-muted: #a3a9b7;
  --color-primary: #8b1e3f;
  --color-primary-soft: #b73159;
  --color-success: #5aa36b;
  --color-warning: #cfad65;
  --color-danger: #d65a5a;
  --color-brass: #cfad65;
  --color-gold: #d4af37;
  --color-border-subtle: #272a36;
  --color-neutral-50: #f9fafb;
  --color-neutral-100: #f3f4f6;
  --color-neutral-200: #e5e7eb;
  --color-neutral-300: #d1d5db;
  --color-neutral-400: #9ca3af;
  --color-neutral-500: #6b7280;
  --color-neutral-600: #4b5563;
  --color-neutral-700: #374151;
  --color-neutral-800: #1f2933;
  --color-neutral-900: #111827;

  --font-heading: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.0625rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3rem;

  --line-height-tight: 1.1;
  --line-height-snug: 1.3;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  --radius-none: 0;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 18px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-elevated: 0 30px 80px rgba(0, 0, 0, 0.7);
  --shadow-soft-inner: inset 0 0 0 1px rgba(255, 255, 255, 0.02);

  --transition-fast: 120ms ease-out;
  --transition-normal: 200ms ease-out;
  --transition-slow: 320ms ease-out;
}

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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  background-color: var(--color-background);
  color: var(--color-text-muted);
  -webkit-font-smoothing: antialiased;
}

img,
video,
canvas,
svg,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
}

button {
  border: none;
  cursor: pointer;
}

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

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  line-height: var(--line-height-tight);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-3);
}

h1 {
  font-size: var(--font-size-4xl);
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-base);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

strong,
b {
  font-weight: 600;
  color: var(--color-text);
}

em,
i {
  font-style: italic;
}

body {
  background-image: radial-gradient(circle at top left, rgba(139, 30, 63, 0.16), transparent 55%), radial-gradient(circle at bottom right, rgba(207, 173, 101, 0.18), transparent 55%);
}

.main-shell {
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 55%), linear-gradient(135deg, #0d0e12 0%, #14161f 45%, #181b26 100%);
}

.rt-ribbon {
  width: 100%;
  background: linear-gradient(90deg, #18130b 0%, #2a2012 50%, #18130b 100%);
  color: rgba(246, 242, 232, 0.9);
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.rt-ribbon__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(207, 173, 101, 0.7);
}

.rt-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.rt-brand__crest {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  background: radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.5), transparent 55%), #050509;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  box-shadow: var(--shadow-soft);
}

.rt-brand__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rt-brand__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
}

.rt-brand__subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(163, 169, 183, 0.88);
}

.section-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(163, 169, 183, 0.9);
}

.section-index__number {
  color: var(--color-gold);
}

.section-index__divider {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(207, 173, 101, 0.1), rgba(207, 173, 101, 0.9));
}

.home-facts {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  border-top: 1px solid rgba(39, 42, 54, 0.9);
  border-bottom: 1px solid rgba(39, 42, 54, 0.9);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.home-facts::-webkit-scrollbar {
  display: none;
}

.home-facts__item {
  color: rgba(163, 169, 183, 0.9);
}

.home-facts__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(207, 173, 101, 0.85);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 56px;
  padding: 72px 0 80px;
  align-items: center;
}

.home-hero__kicker {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(163, 169, 183, 0.85);
  margin-bottom: var(--space-3);
}

.home-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3vw + 1.4rem, 3.4rem);
  line-height: 1.08;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.home-hero__title span {
  font-style: italic;
  color: var(--color-gold);
}

.home-hero__lead {
  font-size: var(--font-size-md);
  color: rgba(230, 225, 215, 0.85);
  max-width: 38rem;
  margin-bottom: var(--space-6);
}

.home-hero__fineprint {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(163, 169, 183, 0.8);
  margin-top: var(--space-4);
}

.home-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.home-hero__primary {
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  background: radial-gradient(circle at 10% 0%, #fbe6a2, #8b1e3f 55%, #2a0a16 100%);
  color: #120b0f;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(250, 244, 234, 0.75);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), filter var(--transition-normal), background var(--transition-normal);
}

.home-hero__primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.85);
  filter: brightness(1.04);
}

.home-hero__primary:active {
  transform: translateY(0);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
}

.home-hero__secondary {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-brass);
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(207, 173, 101, 0.4);
}

.home-hero__media {
  position: relative;
}

.home-hero__frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.16), transparent 65%), #050509;
  padding: 6px;
  box-shadow: var(--shadow-elevated);
}

.home-hero__image-shell {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0d16 0%, #14161f 40%, #181b26 100%);
  border: 1px solid rgba(212, 175, 55, 0.18);
  min-height: 260px;
}

.home-hero__image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__seal {
  position: absolute;
  right: -10px;
  bottom: -22px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.16), transparent 55%), radial-gradient(circle at 70% 90%, rgba(0, 0, 0, 0.45), transparent 60%), #20140c;
  border: 1px solid rgba(212, 175, 55, 0.8);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-hero__seal-inner {
  width: 82%;
  height: 82%;
  border-radius: 50%;
  border: 1px dashed rgba(249, 241, 219, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(246, 242, 232, 0.9);
}

.home-hero__caption {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(163, 169, 183, 0.85);
  text-align: right;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}

.section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.grid {
  display: grid;
  gap: var(--space-6);
}

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

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

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, #8b1e3f 0%, #b73159 40%, #8b1e3f 100%);
  color: #fdf8f0;
  border-color: rgba(248, 234, 220, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-brass);
  border-color: rgba(207, 173, 101, 0.7);
}

.btn-outline:hover {
  background: rgba(207, 173, 101, 0.08);
}

.btn-ghost {
  background: rgba(6, 7, 11, 0.6);
  color: var(--color-text);
  border-color: rgba(39, 42, 54, 0.8);
}

.btn-ghost:hover {
  background: rgba(24, 27, 38, 0.96);
}

.btn:disabled,
.btn[aria-disabled='true'] {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(39, 42, 54, 0.95);
  background-color: rgba(8, 9, 14, 0.96);
  color: var(--color-text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(142, 147, 165, 0.9);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.5);
  background-color: #090a10;
}

.card {
  border-radius: 18px;
  padding: 22px 20px;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.06), transparent 55%), linear-gradient(135deg, rgba(20, 22, 31, 0.96), rgba(24, 27, 38, 0.96));
  border: 1px solid rgba(39, 42, 54, 0.95);
  box-shadow: var(--shadow-soft);
}

.card--brass {
  border-image: linear-gradient(135deg, rgba(207, 173, 101, 0.85), rgba(139, 30, 63, 0.75)) 1;
}

.card__title {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.card__meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(163, 169, 183, 0.85);
  margin-bottom: 10px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(163, 169, 183, 0.9);
}

.form-field {
  margin-bottom: var(--space-5);
}

:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.9);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 960px) {
  .home-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding-top: 56px;
  }

  .home-hero__seal {
    right: 8px;
    bottom: -18px;
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 720px) {
  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  h1 {
    font-size: 2.2rem;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .home-facts {
    padding-left: 4px;
    padding-right: 4px;
  }

  .rt-ribbon {
    padding-left: 12px;
    padding-right: 12px;
  }
}

ul {
  list-style: none !important;
}

.nav-toggle {
  flex-direction: column;
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: clip;
  }

  .section {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .rt-ribbon {
    gap: 6px 10px;
    padding: 8px var(--space-4);
    font-size: 0.62rem;
    line-height: 1.45;
    letter-spacing: 0.12em;
    flex-wrap: wrap;
  }

  .rt-ribbon__dot,
  .home-facts__dot {
    display: none;
  }

  .rt-ribbon > span:not(.rt-ribbon__dot) {
    width: 100%;
    text-align: center;
  }

  .home-facts {
    white-space: normal;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .card {
    padding: var(--space-5) var(--space-4);
    border-radius: var(--radius-lg);
  }

  .btn {
    min-height: 44px;
  }

  .reservations-form-section,
  .reservations-contact,
  .reservations-members,
  .reservations-cta-final {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }

  .reservations-cta-final__inner {
    gap: var(--space-5);
    padding: var(--space-5) var(--space-4);
  }

  .reservations-form-actions,
  .reservations-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .reservations-form-actions .btn,
  .reservations-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
