/* RESET */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #111312;
    --paper: #F6F5F2; /* Muted champagne / pearl */
    --paper-tint: #FFFFFF;
    --line: #E2DFD8;
    --sage: #9bafa3;
    --brand-dark: #3a413d;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

body {
    background-color: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1, h2, h3, .brand-title, .brand-name {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--ink);
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--ink);
    text-decoration: none;
}

/* LAYOUT */
.site-wrapper {
    display: flex;
    justify-content: center;
    padding: 0;
    min-height: 100vh;
}

.site-container {
    background-color: var(--paper);
    width: 100%;
    max-width: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.content-block {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

/* HEADER */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2rem 3rem;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 10;
    background: var(--paper);
}

.brand {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
}

.brand-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sage);
    font-weight: 700;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.85rem;
}

.header-phone {
    font-weight: 700;
}

.header-location {
    color: var(--brand-dark);
}

/* HERO VISUAL (CSS ART) */
.hero-section {
    position: relative;
}

.hero-visual {
    height: 35vh;
    min-height: 250px;
    background: var(--paper-tint);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

/* Procedural skin lines */
.hero-line {
    position: absolute;
    height: 1px;
    width: 200%;
    background: linear-gradient(90deg, transparent, var(--sage), transparent);
    opacity: 0.3;
}

.hero-line-top {
    top: 30%;
    left: -50%;
    transform: rotate(15deg);
}

.hero-line-bottom {
    top: 70%;
    left: -50%;
    transform: rotate(-10deg);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(155, 175, 163, 0.15), transparent 60%);
}

/* Serum drops animation */
.serum-drops {
    position: absolute;
    inset: 0;
}

.drop {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(155, 175, 163, 0.4);
    border-radius: 50%;
    animation: ripple 6s infinite ease-out;
}

@keyframes ripple {
    0% { transform: scale(0.5); opacity: 1; }
    50% { transform: scale(2); opacity: 0; }
    100% { transform: scale(2); opacity: 0; }
}

.hero-content {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--brand-dark);
    margin-bottom: 2rem;
}

.action-link {
    display: inline-block;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: color 0.3s, border-color 0.3s;
}

.action-link:hover {
    color: var(--sage);
    border-color: var(--sage);
}

/* BRANDS STRIP */
.brands-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper-tint);
}

.brand-name {
    font-size: 1.1rem;
    color: #888;
}

/* PHILOSOPHY */
.philosophy-section {
    background: var(--paper);
}

/* SELECTOR INTERACTION */
.selector-section {
    background: var(--paper-tint);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-lead {
    color: var(--brand-dark);
    margin-bottom: 3rem;
}

.selector-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.selector-btn {
    background: none;
    border: 1px solid var(--line);
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 20px;
    color: var(--ink);
    transition: all 0.3s ease;
}

.selector-btn:hover {
    border-color: var(--sage);
}

.selector-btn.active {
    background: var(--sage);
    border-color: var(--sage);
    color: #fff;
}

.selector-results {
    position: relative;
    text-align: left;
    background: var(--paper);
    padding: 2rem;
    border: 1px solid var(--line);
}

.result-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}

.result-panel.active {
    display: block;
    animation: fadeIn 0.4s forwards ease-out;
}

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.scanner-line {
    height: 2px;
    width: 0;
    background: var(--sage);
    margin-bottom: 1.5rem;
}

.result-panel.active .scanner-line {
    animation: scan 1.5s forwards ease-out;
}

@keyframes scan {
    to { width: 100%; }
}

.booking-note {
    font-size: 0.85rem;
    color: var(--brand-dark);
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--line);
    margin-bottom: 0;
}

/* MENU */
.services-list-section {
    background: var(--paper);
}

.service-menu {
    list-style: none;
    text-align: left;
}

.service-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
}

.service-item:last-child {
    border-bottom: none;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.service-desc {
    color: var(--brand-dark);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* BOOKING / CONTACT */
.booking-section {
    background: var(--paper-tint);
    border-top: 1px solid var(--line);
}

.booking-card {
    text-align: left;
}

.contact-details {
    margin: 2rem 0;
    border-left: 2px solid var(--sage);
    padding-left: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-dark);
}

.contact-value {
    font-size: 1.1rem;
}

.contact-value .small-note {
    font-size: 0.8rem;
    color: var(--brand-dark);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-links a {
    font-size: 0.85rem;
    border: 1px solid var(--line);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.social-links a:hover {
    border-color: var(--sage);
}

/* SEO ISLAND */
.seo-island {
    padding: 2rem;
    background: var(--paper);
}

.seo-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    border: 1px dashed var(--line);
    font-size: 0.75rem;
    color: #999;
    text-align: center;
}

/* FOOTER (PETER) */
.site-footer {
    background: var(--ink);
    color: var(--paper);
    padding: 2rem 3rem;
    font-size: 0.85rem;
    text-align: center;
}

.site-footer a {
    color: var(--paper);
    text-decoration: underline;
    text-decoration-color: var(--brand-dark);
}

.footer-note {
    color: #888;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .site-wrapper { padding: 0; }
    .site-container { box-shadow: none; }
    .site-header { padding: 1.5rem; flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
    .header-contact { align-items: center; }
    h1 { font-size: 2.25rem; }
    .content-block { padding: 3rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
.seo-content strong { color: var(--ink); }
