:root {
    --ink: #202020;
    --muted: #78726d;
    --orange: #ff7c3d;
    --paper: #ffffff;
    --cream: #f6f3ef;
    --rock: #161616;
    --line: #ded8d2;
    --shadow: 0 14px 36px rgba(0, 0, 0, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.site-header {
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 20px clamp(24px, 6vw, 100px);
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.brand { display: inline-flex; flex-direction: column; align-items: center; min-width: 240px; }
.brand img { max-height: 72px; width: auto; }
.brand-main { font-size: 1.15rem; letter-spacing: .22em; font-weight: 700; }
.brand-sub { margin-top: -3px; font-family: Georgia, 'Times New Roman', serif; font-size: 1.6rem; font-style: italic; }
.main-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: clamp(18px, 3vw, 44px); }
.main-nav a { position: relative; text-transform: uppercase; letter-spacing: .11em; font-size: .78rem; font-weight: 700; }
.main-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--orange); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }

.hero {
    min-height: 520px;
    position: relative;
    isolation: isolate;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 80px 24px;
    color: #fff;
    background:
        radial-gradient(circle at 20% 15%, rgba(255,255,255,.08), transparent 26%),
        linear-gradient(125deg, #232323, #0e0e0e 65%, #262626);
}
.hero::after { content: ''; position: absolute; inset: 0; z-index: -1; opacity: .4; background-image: linear-gradient(135deg, transparent 0 45%, rgba(255,255,255,.035) 46% 48%, transparent 49% 100%); background-size: 32px 32px; }
.hero-background { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hero-with-image::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(6,6,6,.46), rgba(6,6,6,.55)); }
.hero-inner { max-width: 860px; text-align: center; }
.hero h1, .page-banner h1, .detail-copy h1, .success-panel h1 { margin: 10px 0 20px; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; line-height: 1.08; }
.hero h1 { font-size: clamp(3rem, 7vw, 6.8rem); }
.hero p:not(.eyebrow) { max-width: 650px; margin: 0 auto; font-size: 1.1rem; }
.eyebrow { margin: 0; text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; font-weight: 700; color: var(--orange); }
.eyebrow.dark { color: #6e6258; }

.offer-section, .content-section { padding: 88px clamp(24px, 6vw, 100px); }
.offer-section {
    background:
        linear-gradient(rgba(14,14,14,.93), rgba(14,14,14,.93)),
        repeating-linear-gradient(115deg, #111 0 10px, #252525 10px 12px, #151515 12px 26px);
}
.offer-section .section-heading h2 { color: #fff; }
.content-section-light { background: var(--cream); }
.section-heading { max-width: 1380px; margin: 0 auto 44px; }
.section-heading h2 { margin: 8px 0 0; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.12; }
.row-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.outline-link { display: inline-block; border: 1px solid var(--ink); padding: 13px 20px; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; white-space: nowrap; }
.outline-link:hover { color: #fff; background: var(--ink); }

.card-grid { max-width: 1380px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px; }
.compact-grid { gap: 32px; }
.content-card { background: #fff; box-shadow: var(--shadow); }
.card-image { display: block; padding: 16px 16px 0; }
.card-image img, .image-placeholder { width: 100%; aspect-ratio: 1 / .92; object-fit: cover; }
.image-placeholder { display: grid; place-items: center; overflow: hidden; color: rgba(255,255,255,.85); background: linear-gradient(145deg, #938374, #27231f 62%, #111); }
.image-placeholder::before { content: ''; position: absolute; }
.image-placeholder span { text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; }
.image-placeholder.large { min-height: 500px; aspect-ratio: auto; }
.card-body { padding: 24px 40px 34px; }
.card-kicker { margin: 0 0 8px; color: #8a8179; text-transform: uppercase; letter-spacing: .16em; font-size: .67rem; font-weight: 700; }
.card-body h3 { margin: 0 0 12px; font-size: 1.15rem; line-height: 1.3; text-transform: uppercase; letter-spacing: .02em; }
.card-body h3 a:hover { color: var(--orange); }
.card-body > p:not(.card-kicker) { min-height: 54px; margin: 0 0 20px; color: var(--muted); font-size: .9rem; }
.arrow-link { display: inline-flex; align-items: center; gap: 20px; color: var(--orange); text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 700; }
.arrow-link span { font-size: 1.5rem; transition: transform .2s ease; }
.arrow-link:hover span { transform: translateX(7px); }

.page-banner { padding: 90px 24px; text-align: center; color: #fff; background: linear-gradient(125deg, #252525, #0c0c0c); }
.page-banner h1 { font-size: clamp(3rem, 6vw, 6rem); }
.empty-state { max-width: 900px; margin: 0 auto; padding: 50px; text-align: center; border: 1px solid var(--line); background: #fff; }

.detail-hero { display: grid; grid-template-columns: 1fr 1.1fr; min-height: 590px; background: var(--cream); }
.detail-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(30px, 7vw, 120px); }
.detail-copy h1 { font-size: clamp(3rem, 5vw, 5.5rem); }
.lead { max-width: 620px; color: var(--muted); font-size: 1.1rem; }
.detail-visual img, .detail-visual .image-placeholder { width: 100%; height: 100%; object-fit: cover; }
.detail-section { max-width: 1380px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(370px, .62fr); gap: 80px; padding: 90px clamp(24px, 6vw, 100px); }
.prose { font-family: Georgia, 'Times New Roman', serif; font-size: 1.12rem; line-height: 1.9; }
.contact-box { margin-top: 42px; padding: 28px; border-left: 3px solid var(--orange); background: var(--cream); font-family: Arial, Helvetica, sans-serif; }
.contact-box p { margin: 10px 0; }
.contact-box span { display: inline-block; min-width: 120px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: .66rem; font-weight: 700; }
.contact-box a { color: var(--orange); }
.booking-panel { align-self: start; padding: 40px; border-top: 4px solid var(--orange); box-shadow: var(--shadow); background: #fff; }
.booking-panel h2 { margin: 8px 0; font-family: Georgia, 'Times New Roman', serif; font-size: 2.2rem; font-weight: 400; }
.form-notice { color: var(--muted); font-size: .88rem; }
.booking-form { margin-top: 28px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; margin-bottom: 7px; text-transform: uppercase; letter-spacing: .08em; font-size: .7rem; font-weight: 700; }
.form-row input:not([type=checkbox]), .form-row textarea, .form-row select { width: 100%; border: 1px solid var(--line); border-radius: 0; padding: 13px 14px; background: #fff; }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: 2px solid rgba(255,124,61,.28); border-color: var(--orange); }
.checkbox-row label { display: flex; align-items: start; gap: 10px; text-transform: none; letter-spacing: 0; font-size: .9rem; font-weight: 400; }
.field-error { display: block; color: #a12626; font-size: .78rem; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.primary-button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 50px; border: 1px solid var(--orange); padding: 13px 23px; color: #fff; background: var(--orange); text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; font-weight: 700; cursor: pointer; }
.primary-button:hover { color: var(--orange); background: #fff; }
.inline-button { margin-top: 25px; }

.success-panel { max-width: 900px; min-height: 540px; margin: 0 auto; padding: 110px 24px; text-align: center; }
.success-panel h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.success-panel > p { max-width: 650px; margin: 0 auto 18px; color: var(--muted); }
.reference { font-weight: 700; color: var(--ink) !important; }

.flash { max-width: 1100px; margin: 20px auto; padding: 15px 20px; border-left: 4px solid var(--orange); background: #fff4ee; }
.flash-error { border-color: #a12626; background: #fff0f0; }

.site-footer { display: flex; justify-content: space-between; gap: 50px; padding: 65px clamp(24px, 6vw, 100px); color: #fff; background: #111; }
.footer-title { letter-spacing: .2em; font-weight: 700; }
.site-footer p { color: #aaa; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.footer-contact a:hover { color: var(--orange); }

@media (max-width: 1020px) {
    .site-header { flex-direction: column; }
    .main-nav { justify-content: center; }
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .detail-hero { grid-template-columns: 1fr; }
    .detail-visual { min-height: 430px; }
    .detail-section { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .site-header { padding: 22px 18px; }
    .brand { min-width: 0; }
    .main-nav { gap: 12px 20px; }
    .main-nav a { font-size: .67rem; }
    .hero { min-height: 430px; }
    .offer-section, .content-section { padding: 62px 18px; }
    .card-grid { grid-template-columns: 1fr; gap: 28px; }
    .row-heading { align-items: start; flex-direction: column; }
    .detail-copy { padding: 60px 22px; }
    .detail-visual { min-height: 330px; }
    .detail-section { padding: 60px 18px; gap: 45px; }
    .booking-panel { padding: 28px 20px; }
    .site-footer { flex-direction: column; padding: 48px 22px; }
    .footer-contact { text-align: left; }
}
