:root {
    --color-bg: #f9f6f1;
    --color-surface: #ffffff;
    --color-surface-soft: #f3ece1;
    --color-surface-accent: #efe2d0;
    --color-text: #2b241a;
    --color-text-muted: #7a6b58;
    --color-primary: #c9a45c;
    --color-primary-soft: #e4cf9a;
    --color-success: #4b8a5b;
    --color-warning: #c88728;
    --color-danger: #b8483b;
    --gray-50: #f8f7f5;
    --gray-100: #f1eeea;
    --gray-200: #e3ddd4;
    --gray-300: #d0c6b8;
    --gray-400: #b5a793;
    --gray-500: #978873;
    --gray-600: #796b59;
    --gray-700: #5b4f41;
    --gray-800: #3f352b;
    --gray-900: #25201a;
    --font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-serif: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
    --font-mono: "DM Mono", "SF Mono", "Roboto Mono", monospace;
    --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.15;
    --line-height-snug: 1.3;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;
    --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-11: 44px;
    --space-12: 48px;
    --space-14: 56px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --radius-none: 0;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;
    --shadow-xs: 0 1px 2px rgba(10, 6, 2, 0.06);
    --shadow-sm: 0 4px 10px rgba(18, 12, 6, 0.08);
    --shadow-md: 0 10px 30px rgba(18, 12, 6, 0.14);
    --shadow-lg: 0 18px 48px rgba(18, 12, 6, 0.18);
    --shadow-soft-gold: 0 20px 60px rgba(201, 164, 92, 0.18);
    --transition-fast: 150ms ease-out;
    --transition-normal: 220ms ease-out;
    --transition-slow: 380ms ease;
    --focus-ring: 0 0 0 2px rgba(249, 246, 241, 0.9), 0 0 0 4px rgba(201, 164, 92, 0.8);
}
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}
html, body {
    height: 100%}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%}
body {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    background-color: var(--color-bg);
    color: var(--color-text);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}
input, button, textarea, select {
    font: inherit;
    color: inherit;
}
button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}
a {
    text-decoration: none;
    color: inherit;
}
ul, ol {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: var(--line-height-tight);
    color: var(--color-text);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
h1 {
    font-size: var(--font-size-3xl);
}
h2 {
    font-size: var(--font-size-2xl);
}
h3 {
    font-size: var(--font-size-xl);
}
h4 {
    font-size: var(--font-size-lg);
}
h5 {
    font-size: var(--font-size-md);
}
h6 {
    font-size: var(--font-size-sm);
}
p {
    margin-bottom: var(--space-4);
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
}
a {
    position: relative;
    color: var(--color-primary);
    transition: color var(--transition-normal);
}
a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-soft));
    transition: width var(--transition-normal);
}
a:hover {
    color: var(--color-text);
}
a:hover::after {
    width: 100%}
a:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: 2px;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}
.container-wide {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}
.flex {
    display: flex;
}
.inline-flex {
    display: inline-flex;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.grid {
    display: grid;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-6);
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-6);
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.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: var(--space-2);
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: var(--font-size-sm);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid transparent;
    background: linear-gradient(120deg, #fdfbf7, #f1e5d6);
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal), border-color var(--transition-normal), color var(--transition-normal);
}
.btn-primary {
    background: linear-gradient(135deg, #d6b870, #c9a45c);
    color: #1b1409;
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: var(--shadow-soft-gold);
}
.btn-outline {
    background: transparent;
    border-color: rgba(201, 164, 92, 0.7);
    color: var(--color-text);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border-color: transparent;
    color: var(--color-text);
}
.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #e2c77c, #ccab63);
}
.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}
.btn:disabled, .btn[aria-disabled="true"] {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
.btn:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}
input, select, textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(181, 167, 147, 0.7);
    background-color: rgba(255, 255, 255, 0.96);
    color: var(--color-text);
    box-shadow: var(--shadow-xs);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
}
input::placeholder, textarea::placeholder {
    color: var(--gray-400);
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: var(--focus-ring);
    background-color: #ffffff;
}
input[disabled], select[disabled], textarea[disabled] {
    background-color: var(--gray-100);
    cursor: not-allowed;
    opacity: 0.7;
}
.input-inline-group {
    display: flex;
    gap: var(--space-3);
    align-items: center;
}
.input-inline-group>label {
    white-space: nowrap;
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}
.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 234, 0.96));
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 55%), radial-gradient(circle at bottom right, rgba(201, 164, 92, 0.16), transparent 55%);
    opacity: 0.85;
    pointer-events: none;
}
.card-content {
    position: relative;
}
.card-soft {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(224, 210, 188, 0.8);
}
.card-marble {

    background-repeat: repeat;
    background-size: cover;
    border-radius: var(--radius-xl);
    padding: var(--space-7);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.9);
}
.shadow-none {
    box-shadow: none;
}
.shadow-sm {
    box-shadow: var(--shadow-sm);
}
.shadow-md {
    box-shadow: var(--shadow-md);
}
.shadow-lg {
    box-shadow: var(--shadow-lg);
}
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: var(--font-size-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(201, 164, 92, 0.1);
    color: var(--gray-700);
    border: 1px solid rgba(201, 164, 92, 0.45);
}
.pill {
    border-radius: var(--radius-pill);
}
.marble-section {
    background-image: linear-gradient(180deg, #f9f6f1, #f3ece1);
    position: relative;
    overflow: hidden;
}
.marble-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.9), transparent 60%), radial-gradient(circle at 100% 100%, rgba(224, 210, 188, 0.5), transparent 65%);
    opacity: 0.9;
    pointer-events: none;
}
.marble-section-inner {
    position: relative;
}
.wood-strip {
    background: linear-gradient(135deg, #5c3b22, #3d2616);
    color: #f9f6f1;
}
.accent-gold-bar {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, #c9a45c, #e4cf9a);
    border-radius: 999px;
}
.hero-overlay {
    position: relative;
}
.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(0, 0, 0, 0.45), transparent 55%), linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.4));
    mix-blend-mode: multiply;
}
.hero-overlay>* {
    position: relative;
}
.sticky-cta {
    position: fixed;
    right: var(--space-4);
    bottom: var(--space-4);
    z-index: 60;
}
.sticky-cta .btn {
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}
.sticky-cta .btn:hover {
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}
:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}
[tabindex="-1"]:focus {
    outline: none;
    box-shadow: none;
}
html {
    scroll-padding-top: 80px;
}

@media (min-width:768px) {
    h1 {
    font-size: var(--font-size-4xl);
}
h2 {
    font-size: 2.25rem;
}
.container {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}
.container-wide {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}
.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
}@media (min-width:1024px) {
    body {
    font-size: var(--font-size-md);
}
}