/* Base */
body {
    font-family: 'Inter', sans-serif;
    color: #2c2c2c;
    background: #faf9f7;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
}

/* Rebrand notice */
.rebrand-notice {
    background: #f0ede8;
    padding: 10px 0;
    font-size: 0.85rem;
    color: #777;
    border-bottom: 1px solid #e0dbd4;
}

.rebrand-notice a {
    color: #555;
}

/* Hero */
.hero {
    padding: 80px 0 60px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.hero-sub {
    font-size: 1.05rem;
    color: #777;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

/* Cards */
.quartet-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quartet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.quartet-img-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 260px;
}

.quartet-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quartet-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: #f0ede8;
    color: #999;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 0.85rem;
}

.quartet-body h2 {
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.quartet-body p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.quartet-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    font-size: 0.88rem;
    color: #777;
}

.quartet-features li {
    padding: 5px 0 5px 1.4em;
    position: relative;
    border-bottom: 1px solid #f5f2ef;
}

.quartet-features li:last-child {
    border-bottom: none;
}

.quartet-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #bbb;
    font-size: 0.8em;
    top: 6px;
}

/* Button */
.btn-enquire {
    display: block;
    background: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 13px 24px;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.04em;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-enquire:hover {
    background: #111;
    color: #fff;
}

/* Footer */
.site-footer {
    padding: 40px 0 50px;
    margin-top: 20px;
    border-top: 1px solid #e8e4df;
    font-size: 0.82rem;
    color: #bbb;
}

.site-footer a {
    color: #999;
    text-decoration: none;
}

.site-footer a:hover {
    color: #555;
    text-decoration: underline;
}