/* ═══════════════════════════════════════
   COMMON STYLES FOR ALL PAGES
   ═══════════════════════════════════════ */

:root {
    --swz-black: #111111;
    --swz-off: #f6f5f2;
    --swz-gray: #767676;
    --swz-lgray: #b0b0b0;
    --swz-accent: #c9a96e;
    --swz-red: #d63333;
    --swz-white: #ffffff;
    --swz-green: #2a7a4a;
    --swz-border: #e8e8e8;
    --swz-shadow: rgba(0, 0, 0, 0.08);
    --swz-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--swz-white);
    color: var(--swz-black);
    line-height: 1.6;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 80px;
    }
}

/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-weight: 800;
    line-height: 1.2;
}

a {
    color: var(--swz-black);
    text-decoration: none;
    transition: color var(--swz-transition);
}

/* ═══ UTILITY CLASSES ═══ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
        max-width: 1400px;
    }
}

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

/* ═══ BUTTONS ═══ */
.swz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid var(--swz-black);
    background: var(--swz-black);
    color: var(--swz-white);
    cursor: pointer;
    transition: all var(--swz-transition);
    border-radius: 0;
    text-decoration: none;
}

.swz-btn:hover {
    background: var(--swz-white);
    color: var(--swz-black);
}

.swz-btn-outline {
    background: transparent;
    color: var(--swz-black);
    border-color: var(--swz-black);
}

.swz-btn-outline:hover {
    background: var(--swz-black);
    color: var(--swz-white);
}

.swz-btn-outline-white {
    background: transparent;
    color: var(--swz-white);
    border-color: var(--swz-white);
}

.swz-btn-outline-white:hover {
    background: var(--swz-white);
    color: var(--swz-black);
}

.swz-btn-accent {
    background: var(--swz-accent);
    border-color: var(--swz-accent);
    color: var(--swz-black);
}

.swz-btn-accent:hover {
    background: var(--swz-black);
    border-color: var(--swz-black);
    color: var(--swz-white);
}

.swz-btn-danger {
    background: var(--swz-red);
    border-color: var(--swz-red);
    color: var(--swz-white);
}

.swz-btn-danger:hover {
    background: var(--swz-black);
    border-color: var(--swz-black);
}

.swz-btn-sm {
    padding: 8px 16px;
    font-size: 11px;
}

.swz-btn-lg {
    padding: 14px 36px;
    font-size: 13px;
}

/* ═══ BREADCRUMB ═══ */
.swz-breadcrumb-bar {
    border-bottom: 1px solid var(--swz-border);
    background: var(--swz-white);
}

.swz-breadcrumb-inner {
    height: 44px;
    display: flex;
    align-items: center;
}

.swz-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--swz-lgray);
}

.swz-breadcrumb a {
    color: var(--swz-lgray);
    transition: color var(--swz-transition);
}

.swz-breadcrumb a:hover {
    color: var(--swz-black);
}

.swz-breadcrumb svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
}

.swz-breadcrumb span {
    color: var(--swz-border) !important;
}

/* ═══ PAGE HERO ═══ */
.swz-page-hero {
    background: var(--swz-black);
    padding: 48px 0 44px;
    position: relative;
    overflow: hidden;
}

.swz-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?q=30&w=1200') center/cover;
    opacity: 0.06;
}

.swz-page-hero-inner {
    position: relative;
    z-index: 1;
}

.swz-page-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 800;
    font-style: italic;
    font-size: clamp(36px, 5.5vw, 68px);
    line-height: 1;
    color: var(--swz-white);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.swz-page-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
}

/* ═══ FORMS ═══ */
.swz-form-group {
    margin-bottom: 20px;
}

.swz-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--swz-black);
}

.swz-form-input,
.swz-form-textarea,
.swz-form-select {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid var(--swz-border);
    background: var(--swz-white);
    color: var(--swz-black);
    font-family: inherit;
    transition: border-color var(--swz-transition);
}

.swz-form-input:focus,
.swz-form-textarea:focus,
.swz-form-select:focus {
    outline: none;
    border-color: var(--swz-black);
}

.swz-form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* ═══ LISTS ═══ */
.swz-list {
    list-style: none;
}

.swz-list-item {
    padding: 8px 0;
}

/* ═══ ALERTS ═══ */
.swz-alert {
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 16px;
}

.swz-alert-success {
    background-color: rgba(42, 122, 74, 0.1);
    border-left: 4px solid var(--swz-green);
    color: var(--swz-green);
}

.swz-alert-error {
    background-color: rgba(214, 51, 51, 0.1);
    border-left: 4px solid var(--swz-red);
    color: var(--swz-red);
}

.swz-alert-info {
    background-color: rgba(201, 169, 110, 0.1);
    border-left: 4px solid var(--swz-accent);
    color: #8b6f47;
}

/* ═══ LOADER ═══ */
.swz-loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--swz-border);
    border-top-color: var(--swz-black);
    border-radius: 50%;
    animation: swzSpin 0.8s linear infinite;
}

@keyframes swzSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ═══ RESPONSIVE GRID ═══ */
.swz-grid {
    display: grid;
    gap: 24px;
}

.swz-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (min-width: 768px) {
    .swz-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .swz-grid-2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.swz-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (min-width: 768px) {
    .swz-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .swz-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ═══ SPACING ═══ */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.py-1 { padding: 8px 0; }
.py-2 { padding: 16px 0; }
.py-3 { padding: 24px 0; }
.py-4 { padding: 32px 0; }

.px-1 { padding: 0 8px; }
.px-2 { padding: 0 16px; }
.px-3 { padding: 0 24px; }
.px-4 { padding: 0 32px; }

/* ═══ VISIBILITY ═══ */
.hidden { display: none !important; }
.visible { display: block !important; }

@media (max-width: 767px) {
    .hidden-mobile { display: none !important; }
}

@media (min-width: 768px) {
    .hidden-desktop { display: none !important; }
}

/* ═══ TEXT UTILITIES ═══ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.text-uppercase { text-transform: uppercase; }
.text-capitalize { text-capitalize: capitalize; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-normal { font-weight: 400; }

.text-muted { color: var(--swz-gray); }
.text-light { color: var(--swz-lgray); }
.text-danger { color: var(--swz-red); }
.text-success { color: var(--swz-green); }

/* ═══ PRINT STYLES ═══ */
@media print {
    .no-print {
        display: none;
    }
}
