@charset "UTF-8";

/* =========================================================
   SOONPLUS DOUBLE EYELID SURGERY GUIDE - PAGE ONLY
   Common: /sub/guide/assets/css/guide-common.css
   ========================================================= */

h1,h2,h3,h4,p,figure { margin-top: 0; }
h1,h2,h3,h4 { line-height: 1.3; letter-spacing: -.035em; }
h2 { margin-bottom: 28px; font-size: clamp(2rem,4vw,3.4rem); font-weight: 500; }
h3 { font-size: 1.3rem; }

.eyebrow,.section-kicker {
    color: var(--brown);
    font-family: Georgia,serif;
    font-size: .78rem;
    letter-spacing: .32em;
    text-transform: uppercase;
}

.button {
    min-height: 54px;
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: transform .2s,background .2s,color .2s;
}

.button:hover { transform: translateY(-2px); }
.button--primary { color:#fff; background:var(--brown); }
.button--ghost { color:#5f4638; border-color:rgba(95,70,56,.4); background:rgba(255,255,255,.12); }

.section {
    padding: clamp(90px,10vw,150px) 0;
    scroll-margin-top: calc(var(--guide-header-height) + var(--guide-local-nav-height) + 24px);
}
.section--tint { background: var(--bg); }
.section--dark { color:#fff; background:#28221f; }
.section--dark .section-kicker { color:#d99c7d; }
.section-heading { margin-bottom: 50px; }
.section-heading--center { max-width: 850px; margin-left:auto; margin-right:auto; text-align:center; }
.section-intro { max-width:760px; margin-bottom:48px; color:rgba(255,255,255,.72); }
.section-intro--light { margin-inline:auto; color:var(--muted); }
.lead { color:var(--brown-dark); font-size:1.25rem; line-height:1.75; }
.center-note {
    max-width:880px;
    margin:42px auto 0;
    padding:20px 24px;
    text-align:center;
    color:var(--muted);
    border-top:1px solid var(--brown-light);
    border-bottom:1px solid var(--brown-light);
}

/* HERO */
.hero {
    min-height: clamp(520px,68vw,760px);
    padding: calc(var(--guide-header-height) + 86px) 0 100px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    text-align:center;
    color:#302b27;
    background:
        radial-gradient(circle at 18% 28%,rgba(167,96,62,.09),transparent 28%),
        radial-gradient(circle at 82% 72%,rgba(111,60,40,.07),transparent 32%),
        linear-gradient(180deg,#ece2d9 0%,#f8f3ed 62%,#fffdf9 100%);
}

.hero::before {
    content:"SOONPLUS PLASTIC SURGERY";
    position:absolute;
    top:18%;
    left:50%;
    transform:translateX(-50%);
    color:rgba(99,75,61,.035);
    font-family:Georgia,serif;
    font-size:clamp(4rem,11vw,12rem);
    white-space:nowrap;
}

.hero__ornament {
    position:absolute;
    width:min(34vw,520px);
    aspect-ratio:1;
    border:1px solid rgba(112,77,57,.1);
    border-radius:50%;
}
.hero__ornament--left { left:-16vw; bottom:-25%; }
.hero__ornament--right { right:-18vw; top:-25%; }
.hero__content { position:relative; z-index:2; max-width:900px; }
.hero .eyebrow { margin-bottom:22px; color:#9a6246; font-weight:600; }
.hero h1 { margin:0 0 30px; font-size:clamp(2.3rem,4.6vw,4.8rem); font-weight:300; line-height:1.16; letter-spacing:-.055em; }
.hero h1 span,.hero h1 strong { display:block; }
.hero h1 span { margin-bottom:.14em; font-size:.55em; font-weight:400; }
.hero h1 strong { font-weight:500; }
.hero__lead { margin-bottom:18px; color:#4b433d; font-size:clamp(1.15rem,2vw,1.7rem); line-height:1.55; }
.hero__desc { max-width:760px; margin:0 auto 34px; color:#716861; line-height:1.9; }
.hero__actions { display:flex; flex-wrap:wrap; justify-content:center; gap:12px; margin-top:34px; }

/* IMAGE SLOTS */
.image-slot {
    min-height: 320px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    overflow:hidden;
    text-align:center;
    color:#856c5f;
    background:
        linear-gradient(135deg,rgba(167,96,62,.045),rgba(167,96,62,.015)),
        repeating-linear-gradient(45deg,transparent 0 18px,rgba(167,96,62,.045) 18px 19px);
    border:1px dashed rgba(167,96,62,.45);
}

.image-slot strong {
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.image-slot img {
    width:100%;
    height:auto;
    object-fit:cover;
}

.image-slot--wide { min-height:380px; margin-top:48px; }

/* DEFINITION */
.definition-layout {
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:clamp(48px,7vw,100px);
    align-items:start;
}

.definition-copy .lead { margin-bottom:24px; font-size:clamp(1.25rem,2vw,1.65rem); }

.guide-facts { border-top:1px solid #ddd1c8; }
.guide-facts article {
    display:grid;
    grid-template-columns:52px 130px 1fr;
    gap:18px;
    padding:24px 0;
    border-bottom:1px solid #ddd1c8;
}
.guide-facts span { color:var(--brown); font-size:.74rem; letter-spacing:.15em; }
.guide-facts p { margin:0; color:var(--muted); }

/* LINE DESIGN */
.line-grid {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:26px;
}

.line-card {
    padding:clamp(28px,3vw,38px);
    display:flex;
    flex-direction:column;
    background:var(--paper);
    border:1px solid var(--line);
}

.line-number {
    display:block;
    margin-bottom:14px;
    color:var(--brown);
    font-family:Georgia,serif;
    font-size:1.8rem;
}

.line-card h3 {
    margin-bottom:16px;
    font-size:1.9rem;
}

.line-lead {
    min-height:88px;
    margin:0;
    color:var(--brown-dark);
    font-size:1.08rem;
    line-height:1.8;
}

.line-card .image-slot {
    width:100%;
    min-height:0;
    margin-top:28px;
    aspect-ratio:1030 / 338;
}

.line-card .image-slot strong {
    width:100%;
    height:100%;
}

.line-card .image-slot img {
    width:100%;
    height:100%;
    object-fit:cover;
}

/* METHODS */
.method-grid {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:26px;
}

.method-card {
    padding:clamp(28px,4vw,48px);
    background:var(--paper);
    border:1px solid var(--line);
}

.method-number {
    display:block;
    margin-bottom:14px;
    color:var(--brown);
    font-family:Georgia,serif;
    font-size:1.8rem;
}

.method-card h3 { margin-bottom:16px; font-size:1.9rem; }
.method-lead { min-height:88px; color:var(--brown-dark); font-size:1.08rem; line-height:1.8; }
.method-card .image-slot { margin-top:28px; min-height:0; }

/* CASES */
.case-grid {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:28px;
}

.case-card {
    overflow:hidden;
    border:1px solid rgba(255,255,255,.16);
    background:rgba(255,255,255,.035);
    margin-bottom:40px;
}

.case-image-placeholder {
    min-height:360px;
    overflow:hidden;
    background:rgba(255,255,255,.04);
}

.case-image-placeholder img {
    width:100%;
    height:100%;
    min-height:360px;
    object-fit:cover;
}

.case-card__body { min-height:190px; padding:28px 30px 32px; }
.case-number { display:block; margin-bottom:14px; color:#d19a79; font-size:.7rem; letter-spacing:.18em; }
.case-card h3 { color:#fff; }
.case-card p { margin:0; color:rgba(255,255,255,.66); }

.case-more { margin-top:12px; text-align:center; }

.case-more a {
    min-width:230px;
    min-height:54px;
    padding:14px 28px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    border:1px solid rgba(255,255,255,.55);
    transition:color .25s,background .25s,border-color .25s;
}

.case-more a:hover,
.case-more a:focus-visible {
    color:#2a211d;
    background:#fff;
    border-color:#fff;
}

/* CARE */
.care-columns {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:28px;
}

.care-card {
    padding:clamp(28px,4vw,52px);
    background:var(--paper);
    border:1px solid var(--line);
}

.care-card>h3 { margin-bottom:28px; color:var(--brown); font-size:2rem; }
.care-card article { padding:22px 0; border-top:1px solid var(--line); }
.care-card h4 { margin-bottom:8px; }
.care-card p { margin-bottom:0; color:var(--muted); }

/* FAQ */
.faq-list { border-top:1px solid var(--line); }
.faq-list details { border-bottom:1px solid var(--line); }
.faq-list summary {
    position:relative;
    padding:24px 52px 24px 4px;
    cursor:pointer;
    list-style:none;
    font-size:1.08rem;
    font-weight:700;
}
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::before,
.faq-list summary::after {
    content:"";
    position:absolute;
    top:50%;
    right:8px;
    width:20px;
    height:1px;
    background:var(--brown);
    transition:transform .2s;
}
.faq-list summary::after { transform:rotate(90deg); }
.faq-list details[open] summary::after { transform:rotate(0); }
.faq-list details>div { padding:0 42px 24px 4px; color:var(--muted); }

@media (max-width:1100px) {
    .definition-layout { grid-template-columns:1fr; }
}

@media (max-width:900px) {
    .hero { min-height:610px; padding:130px 0 84px; }
    .hero h1 { font-size:clamp(2.1rem,8.5vw,3.45rem); }
    .method-grid,.case-grid { grid-template-columns:1fr; }
}

@media (max-width:720px) {
    .section { padding:82px 0; }
    .line-grid,.care-columns { grid-template-columns:1fr; }
    .guide-facts article { grid-template-columns:42px 100px 1fr; }
    .image-slot,.image-slot--wide { min-height:260px; }
    .line-card .image-slot { min-height:0; }
}

@media (max-width:640px) {
    .hero { min-height:560px; padding:116px 0 70px; }
    .hero h1 { font-size:clamp(2rem,10.5vw,2.75rem); }
    .hero__lead br { display:none; }
    .hero__actions {
        display:grid;
        grid-template-columns:1fr;
        max-width:320px;
        margin-inline:auto;
    }
    .guide-facts article { grid-template-columns:36px 1fr; }
    .guide-facts p { grid-column:2; }
}
