:root {
    --color-primary: #f88c0a;
    --color-primary-dark: #c86d00;
    --color-bg: #f8f7f5;
    --color-surface: #ffffff;
    --color-surface-soft: #fff7eb;
    --color-ink: #191919;
    --color-dark: #221810;
    --color-dark-soft: #2f241d;
    --color-muted: #5f6670;
    --color-muted-light: rgba(255,255,255,.82);
    --color-line: rgba(255,255,255,0.08);
    --radius-lg: 18px;
    --radius-xl: 28px;
    --container: 1200px;
    --shadow: 0 20px 60px rgba(0,0,0,0.12);
    --gt-header-height: 78px;
    --gt-header-notice-height: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Be Vietnam Pro", sans-serif;
    background: var(--color-bg);
    color: var(--color-ink);
}
body.has-header-notice { --gt-header-notice-height: 38px; }
body.has-fixed-header { padding-top: calc(var(--gt-header-height) + var(--gt-header-notice-height)); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button,
input,
select,
textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(var(--container), calc(100% - 2rem)); margin-inline: auto; }
.page-spacing,
.section { padding-block: 4.5rem; }
.section-dark { background: var(--color-dark); color: #fff; }
.section-heading { max-width: 720px; margin-bottom: 2.5rem; }
.section-heading-inline { display: flex; justify-content: space-between; align-items: end; gap: 1rem; }
.page-shell { display: grid; gap: 2rem; }
.page-shell > .page-header-simple { margin-bottom: 0; }
.section-heading h2,
.page-header-simple h1,
.content-box h2,
.gallery-section__header h2,
.package-collection__header h2 { margin: 0 0 .75rem; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; }
.section-heading p,
.page-header-simple p,
.package-collection__header p,
.gallery-page__header p { color: var(--color-muted); max-width: 62ch; }
.content-box {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.eyebrow {
    display: inline-block;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: .75rem;
}
.eyebrow-dark { color: var(--color-dark); }
.page-header-simple { margin-bottom: 2rem; }
.page-header-simple > :last-child { margin-bottom: 0; }
.page-header-simple--light p { color: var(--color-muted-light); }
.page-content { width: 100%; max-width: 62rem; }
.content-box.page-content { justify-self: start; }
.entry-content > :first-child { margin-top: 0; }
.entry-content > :last-child { margin-bottom: 0; }
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin: 2rem 0 1rem;
    color: var(--color-dark);
    line-height: 1.12;
}
.entry-content h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
.entry-content h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.entry-content h4,
.entry-content h5,
.entry-content h6 { font-size: 1.1rem; }
.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content figure,
.entry-content blockquote,
.entry-content table,
.entry-content pre {
    margin: 0 0 1.15rem;
}
.entry-content ul,
.entry-content ol { padding-left: 1.35rem; }
.entry-content li + li { margin-top: .35rem; }
.entry-content a {
    color: var(--color-primary-dark);
    text-decoration: underline;
    text-decoration-thickness: .08em;
    text-underline-offset: .14em;
}
.entry-content img {
    border-radius: 16px;
    overflow: hidden;
}
.entry-content figcaption {
    margin-top: .75rem;
    color: var(--color-muted);
    font-size: .92rem;
}
.entry-content blockquote {
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--color-primary);
    border-radius: 16px;
    background: var(--color-surface-soft);
    color: #4f3a2b;
}
.entry-content hr {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid rgba(34, 24, 16, .12);
}
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}
.entry-content th,
.entry-content td {
    padding: .9rem 1rem;
    border-bottom: 1px solid rgba(34, 24, 16, .1);
    text-align: left;
}
.entry-content th {
    background: rgba(248, 140, 10, .08);
    color: var(--color-dark);
    font-weight: 800;
}
.entry-content tr:nth-child(even) td {
    background: rgba(34, 24, 16, .025);
}
.entry-content pre {
    overflow-x: auto;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    background: #1d1713;
    color: #f8f7f5;
}
.entry-content code {
    font-family: Consolas, "Courier New", monospace;
    font-size: .95em;
}
.entry-content :where(.wp-block-image, .wp-block-gallery, .wp-block-columns, .wp-block-buttons) {
    margin-bottom: 1.5rem;
}
.empty-state { color: var(--color-muted); }
.content-box .empty-state:last-child { margin-bottom: 0; }
.text-center { text-align: center; }
.link-arrow { color: var(--color-primary); font-weight: 700; }
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 2rem;
}
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 .95rem;
    border: 1px solid rgba(34, 24, 16, .12);
    border-radius: 999px;
    background: #fff;
    color: var(--color-dark);
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(17, 12, 9, .06);
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.page-numbers:not(.dots):hover {
    transform: translateY(-2px);
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: #fff;
}
.page-numbers.current {
    background: var(--color-primary);
    border-color: transparent;
    color: var(--color-dark);
}
.page-numbers.dots {
    min-width: auto;
    padding: 0 .2rem;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 48px;
    padding: .9rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 12px;
    background: var(--color-primary);
    color: var(--color-dark);
    font-weight: 800;
    transition: .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--color-primary-dark); color: #fff; }
.button-secondary { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.16); }
.button-ghost { background: transparent; color: var(--color-primary); border-color: rgba(248,140,10,0.35); }
.button-dark { background: var(--color-dark); color: #fff; }
.button-outline,
.button-outline-dark { background: transparent; border-color: rgba(34,24,16,.2); color: var(--color-dark); }
.button-outline:hover { background: var(--color-primary); color: var(--color-dark); }
.button-small { min-height: 42px; padding-inline: 1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.form-notice {
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.form-notice--success { background: #e8fff2; color: #146c43; }
.form-notice--error { background: #fff0f0; color: #962020; }
.contact-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: .85rem 1rem;
    font: inherit;
}
.contact-form label span { display: inline-block; margin-bottom: .45rem; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1rem; }

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(248, 140, 10, .32);
    outline-offset: 3px;
}

@media (max-width: 991px) {
    .form-grid { grid-template-columns: 1fr; }
    .section-heading-inline { align-items: start; flex-direction: column; }
}

@media (max-width: 640px) {
    :root { --gt-header-height: 68px; }
    .page-spacing,
    .section { padding-block: 4rem; }
    .content-box { padding: 1.5rem; }
    .nav-links { gap: .5rem; }
    .page-numbers { min-width: 40px; min-height: 40px; padding-inline: .8rem; }
}

body.has-mobile-menu-open { overflow: hidden; }
