.card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(105, 162, 143, 0.13);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 1.6rem;
}

.hero-card {
    align-self: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 248, 243, 0.9));
}

.note-block {
    margin-top: 1.5rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(216, 161, 74, 0.26);
    background: linear-gradient(180deg, rgba(243, 223, 187, 0.28), rgba(255, 255, 255, 0.78));
    border-radius: var(--radius-md);
}

.note-block strong {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.98rem;
}

.card-grid,
.quote-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.stack-item.plain {
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    color: var(--ink-700);
    font-size: 0.95rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.button-row.left {
    justify-content: flex-start;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 0 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--sage-900), var(--sage-700));
    color: var(--white);
    box-shadow: 0 14px 28px rgba(105, 162, 143, 0.24);
}

.button-secondary {
    background: rgba(213, 230, 222, 0.55);
    color: var(--ink-900);
    border: 1px solid rgba(105, 162, 143, 0.18);
}

.button-danger {
    background: #c56464;
    color: var(--white);
}

.button-small {
    min-height: 36px;
    padding: 0 0.8rem;
    font-size: 0.9rem;
}

.button-full {
    width: 100%;
}

.flash-stack {
    padding-top: 1rem;
}

.flash {
    padding: 1rem 1.2rem;
    border-radius: 18px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.flash-success {
    background: rgba(150, 192, 176, 0.18);
    border-color: rgba(105, 162, 143, 0.2);
    color: #335349;
}

.flash-error {
    background: rgba(197, 100, 100, 0.12);
    border-color: rgba(197, 100, 100, 0.18);
    color: #7e3131;
}

.form-stack {
    display: grid;
    gap: 1rem;
}

.form-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: end;
}

label span {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 700;
    font-size: 0.92rem;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    font: inherit;
    background: rgba(255, 255, 255, 0.92);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--sage-800);
    box-shadow: 0 0 0 4px rgba(134, 185, 166, 0.22);
    background: var(--white);
}

textarea {
    resize: vertical;
}

.field-error {
    display: block;
    color: #8b3d3d;
    margin-top: 0.35rem;
}

.text-link {
    font-weight: 700;
    color: var(--sage-900);
}

.text-link:hover {
    color: var(--sage-850);
}

.prose-card p,
.prose-card li,
.card p,
.site-footer p {
    line-height: 1.75;
    color: var(--ink-700);
}

.prose-card ul,
.prose-card ol {
    padding-left: 1.25rem;
}

.review-card {
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 72px;
    height: 72px;
    background: radial-gradient(circle, rgba(213, 230, 222, 0.9), transparent 70%);
    pointer-events: none;
}

.review-card footer {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--sage-900);
}

.booking-slots {
    margin-top: 1rem;
    display: grid;
    gap: 1rem;
}

.booking-day {
    border: 1px solid rgba(105, 162, 143, 0.14);
    border-radius: 22px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.86);
}

.slot-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.75rem;
}

.slot-button {
    border: 1px solid rgba(105, 162, 143, 0.22);
    background: rgba(255, 255, 255, 0.94);
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

.slot-button.is-selected {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--white);
}

.selection-note {
    margin: 0;
    color: var(--ink-700);
}