/* Fonts:
   - Playfair Display (headings, luxury feel)
   - Inter (body, clean modern)
*/

:root {
    --gold: #b8973c; /* match your gold logo vibe */
    --text-dark: #111;
    --text-mid: #444;
    --bg-page: #ffffff;
    --bg-alt: #f7f7f7;
    --border-light: #ddd;
    --radius-card: 12px;
    --radius-btn: 8px;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-page);
    color: var(--text-dark);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    font-size: 16px;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout helpers */
.container {
    max-width: 1200px;
    padding: 0 1.25rem;
    margin: 0 auto;
}

.section {
    padding: 4rem 0;
}

.alt-bg {
    background-color: var(--bg-alt);
}

.section-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 1vw + 1rem, 2rem);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0.5rem auto 2rem auto;
    text-align: center;
}

/* Header */
.site-header {
    border-bottom: 1px solid var(--border-light);
    background: #fff;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    flex-wrap: wrap;
    row-gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-mid);
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 1.5rem;
}

.main-nav a:hover {
    color: var(--gold);
}

/* Hero */
.hero {
    background-color: #fff;
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border-light);
}

.hero-inner {
    max-width: 800px;
}

.hero-copy h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 1vw + 1rem, 2.25rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 1rem;
    max-width: 650px;
}

.hero-highlights {
    list-style: none;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta-button {
    background-color: var(--gold);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    border: 0;
    border-radius: var(--radius-btn);
    padding: 0.8rem 1.25rem;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    min-width: 150px;
}

.cta-button:hover {
    filter: brightness(1.05);
}

.cta-button.outline {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cta-button.outline:hover {
    background-color: var(--gold);
    color: #fff;
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card {
    background-color: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.product-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-card);
    background-color: #eee;
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
}

.product-info {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.4;
}

.product-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.product-details {
    margin-bottom: 0.5rem;
    color: var(--text-mid);
    font-size: 0.9rem;
}

.price {
    color: var(--text-dark);
    font-weight: 600;
}

.product-note {
    font-size: 0.8rem;
    color: var(--text-mid);
}

/* Printing section */
.printing-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.printing-copy {
    flex: 1 1 320px;
}

.pricing-box {
    background-color: #fff;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-light);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border-light);
}
.pricing-row:last-child {
    border-bottom: 0;
}

.pricing-num {
    font-weight: 600;
    color: var(--text-dark);
}

.fine-print {
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.4;
}

/* Printing mock image box */
.printing-photo {
    flex: 1 1 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-machine {
    width: 260px;
    height: 200px;
    border-radius: var(--radius-card);
    background-color: #fff;
    border: 2px dashed var(--gold);
    color: var(--gold);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    padding: 1rem;
}

/* Bulk section */
.bulk-list {
    list-style: none;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.bulk-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-alt);
}

.contact-card {
    background-color: #fff;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-light);
    padding: 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    max-width: 900px;
}

@media (min-width: 900px) {
    .contact-card {
        grid-template-columns: 1fr 280px;
        align-items: flex-start;
    }
}

.contact-header {
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-field {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-field label {
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    font-size: 0.8rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border-radius: var(--radius-btn);
    border: 1px solid var(--border-light);
    font-size: 0.9rem;
    padding: 0.7rem 0.8rem;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-dark);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 2px solid var(--gold);
    border-color: var(--gold);
}

.full-width {
    flex: 1 1 100%;
}

.submit-btn {
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
}

/* Contact side info */
.contact-side {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.contact-box {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 1rem 1.25rem;
    background: #fff;
}

.contact-line {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}
.contact-line strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border-light);
    padding: 2rem 0;
    background-color: #fff;
    margin-top: 4rem;
    font-size: 0.8rem;
    color: var(--text-mid);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 1rem;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.footer-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.footer-note {
    color: var(--text-mid);
    line-height: 1.4;
    font-size: 0.8rem;
}

.footer-legal {
    font-size: 0.8rem;
    color: var(--text-mid);
    text-align: right;
}