:root {
    --bg: #F7F8F7;
    --text-primary: #111827;
    --text-secondary: #667085;
    --card: #FFFFFF;
    --border: #E4E7EC;
    --accent: #0B8F62;
    --accent-light: #E9F7F1;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.page {
    max-width: 480px;
    margin: 0 auto;
    padding: var(--space-3) var(--space-2) var(--space-5);
}

/* ---------- Hero / Founder ---------- */
.hero {
    text-align: center;
    padding: 20px 16px 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--card);
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06), 0 1px 3px rgba(17, 24, 39, 0.04);
    opacity: 0;
    animation: rise 0.6s ease-out forwards;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.avatar {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    margin: 0 auto var(--space-2);
    background: linear-gradient(160deg, var(--accent-light), #ffffff);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
}

.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.founder-name {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.founder-role {
    margin-top: var(--space-1);
    font-size: 15px;
    color: var(--accent);
    font-weight: 500;
}

.founder-business {
    margin-top: 2px;
    font-size: 15px;
    color: var(--text-secondary);
}

.founder-degree {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.founder-intro {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
    padding: 0 var(--space-1);
}

.hero > .about-text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 var(--space-1);
}

/* ---------- Buttons ---------- */
.btn-row {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.contact-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.contact-actions .btn {
    min-width: 0;
    padding: 10px 6px;
    font-size: 12px;
}

.action-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.hero .contact-actions .btn {
    color: var(--accent);
    background: var(--card);
    border-color: var(--border);
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.hero .contact-actions .btn:hover,
.hero .contact-actions .btn:focus-visible {
    border-color: rgba(11, 143, 98, 0.45);
    background: var(--accent-light);
    box-shadow: 0 4px 10px rgba(11, 143, 98, 0.1);
    outline: none;
}

.hero .contact-actions .btn:active {
    background: var(--accent-light);
    transform: translateY(1px);
}

.save-contact {
    flex: 0 1 auto;
    margin: 0 auto;
    padding: 9px 14px;
    font-size: 13px;
}

.hero .save-contact:hover,
.hero .save-contact:focus-visible {
    border-color: rgba(11, 143, 98, 0.45);
    color: var(--accent);
    background: var(--accent-light);
    outline: none;
}

.btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.15s ease, opacity 0.15s ease;
    cursor: pointer;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
    background: var(--accent);
    color: #ffffff;
}

.btn-secondary {
    background: var(--card);
    color: var(--text-primary);
    border-color: var(--border);
}

/* ---------- Section shell ---------- */
.section {
    margin-top: var(--space-4);
}

.section-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
}

/* ---------- About ---------- */
.about-text {
    font-size: 14.5px;
    color: var(--text-primary);
    line-height: 1.7;
}

.about-text + .about-text { margin-top: 12px; }

/* ---------- Business / Showroom ---------- */
.showroom-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md);
    background: linear-gradient(150deg, #eef1ef, #e2e7e4);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 13px;
    overflow: hidden;
    margin-bottom: var(--space-2);
}

.showroom-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.showroom-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.showroom-name {
    font-size: 17px;
    font-weight: 650;
}

.showroom-category {
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--accent);
    background: var(--accent-light);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.showroom-desc {
    margin-top: var(--space-2);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.showroom-location {
    margin-top: var(--space-2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-primary);
}

.pin {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--accent);
}

.maps-btn {
    margin-top: var(--space-2);
    width: 100%;
}

/* ---------- Partnership ---------- */
.partnership-card {
    background: linear-gradient(155deg, var(--accent-light) 0%, var(--card) 55%);
}

.partnership-title {
    font-size: 17px;
    font-weight: 650;
    margin-bottom: 8px;
}

.partnership-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-2);
}

/* ---------- Online Presence ---------- */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 15px 18px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14.5px;
    font-weight: 500;
    transition: transform 0.15s ease;
}

.link-item:active { transform: scale(0.98); }

.link-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.link-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.link-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* ---------- Footer ---------- */
.footer {
    margin-top: var(--space-5);
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
}

@media (prefers-reduced-motion: reduce) {
    .hero { animation: none; opacity: 1; }
}
