/* -----------------------------------
  GLOBAL SETTINGS
----------------------------------- */
:root {
    --bg: #0f0f0f;
    --bg-alt: #181818;
    --text: #e7e7e7;
    --text-soft: #c7c7c7;
    --text-muted: #8a8a8a;
    --accent: #d4aa57;
    --accent-light: #f0dca7;
    --border: #2a2a2a;
    --radius: 14px;
    --shadow: 0 6px 22px rgba(0, 0, 0, 0.35);

    --font-serif: "Playfair Display", serif;
    --font-sans: "Inter", sans-serif;
}

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

html,
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
}

/* -----------------------------------
  LAYOUT
----------------------------------- */
.page {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

section {
    margin: 80px 0;
}

/* -----------------------------------
  HEADER
----------------------------------- */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 58px;
}

.logo-mark {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
}

.main-nav a {
    color: var(--text-soft);
    margin-left: 22px;
    text-decoration: none;
    font-weight: 400;
    transition: 0.2s;
}

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

/* -----------------------------------
  HERO SECTION
----------------------------------- */
.hero {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero-kicker {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 10px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.hero-subtitle {
    color: var(--text-soft);
    margin-bottom: 20px;
}

.hero-usps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-muted);
}

.btn-row {
    margin-bottom: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: 0.2s;
}

.btn-primary:hover {
    background: var(--accent-light);
}

.hero-note {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 6px;
}

.hero-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    width: 400px;
}

.hero-image-box img {
    width: 100%;
    display: block;
}

.hero-card-footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
}

/* -----------------------------------
  SECTIONS
----------------------------------- */
.section-heading {
    font-family: var(--font-serif);
    font-size: 34px;
    margin-bottom: 20px;
}

.section-intro {
    color: var(--text-soft);
    max-width: 650px;
    margin-bottom: 40px;
}

/* -----------------------------------
  ABOUT
----------------------------------- */
.about {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-meta {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

/* -----------------------------------
  FEATURES
----------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.feature-card {
    background: var(--bg-alt);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.feature-icon {
    font-size: 26px;
    margin-bottom: 10px;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
}

/* -----------------------------------
  PACKAGES
----------------------------------- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.package-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius);
}

.package-tag {
    background: var(--accent);
    color: #000;
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.package-title {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 10px;
}

.package-description {
    color: var(--text-soft);
    margin-bottom: 16px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--accent);
    color: var(--accent-light);
    text-decoration: none;
    border-radius: var(--radius);
    transition: 0.2s;
}

.btn-outline:hover {
    background: var(--accent);
    color: #000;
}

/* -----------------------------------
  CONTACT FORM
----------------------------------- */
.contact-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-form {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.form-row {
    margin-bottom: 18px;
}

label {
    display: block;
    margin-bottom: 6px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    background: #101010;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-sans);
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn-submit:hover {
    background: var(--accent-light);
}

.form-note {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 12px;
}

/* -----------------------------------
  FOOTER
----------------------------------- */
footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-soft);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.footer-links a:hover {
    color: var(--accent);
}

.social-links a {
    color: var(--text-soft);
    text-decoration: none;
    margin-right: 10px;
}

.social-links a:hover {
    color: var(--accent);
}

/* -----------------------------------
  RESPONSIVE
----------------------------------- */
@media (max-width: 820px) {
    .hero {
        flex-direction: column;
    }

    .about {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .footer-inner {
        flex-direction: column;
    }
}