    /* ========================================
   EVERGLOWBEAUTY — COMPLETE CSS STYLING
   All pages: Home, Makeup, Portfolio, About, Privacy, Terms
   ======================================== */

/* ── RESET & VARIABLES ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary-pink: #F5CBCB;
    --deep-green: #1C352D;
    --white: #FFFFFF;
    --text-black: #000000;
    --soft-contrast: #F8EDED;
}

body {
    background-color: var(--white);
    color: var(--text-black);
    overflow-x: hidden;
}

/* ── TYPOGRAPHY CLASSES ── */
.font-quotes, .font-main-head-script {
    font-family: "Clicker Script", cursive;
    font-weight: 600;
    font-style: normal;
}

.font-headline {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.font-para-reg {
    font-family: "Crimson Text", serif;
    font-weight: 400;
    font-style: normal;
}

.font-para-semibold {
    font-family: "Crimson Text", serif;
    font-weight: 600;
    font-style: normal;
}

.font-para-italic {
    font-family: "Crimson Text", serif;
    font-weight: 400;
    font-style: italic;
}

/* ── STICKY HEADER ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4%;
    transition: all 0.3s ease;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-main {
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: lowercase;
    text-decoration: none;
    color: var(--text-black);
      width: 100%;
  height: 10px;
  background: 
    linear-gradient(135deg, transparent 75%, #ff4757 75%),
    linear-gradient(225deg, transparent 75%, #ff4757 75%),
    linear-gradient(45deg, transparent 75%, #ff4757 75%),
    linear-gradient(315deg, transparent 75%, #ff4757 75%);
  background-position: 0 0, 0 0, 10px 0, 10px 0;
  background-size: 10px 30px;
  background-repeat: repeat-x;
}

.logo-divider {
    width: 1px;
    height: 20px;
    background-color: #ddd;
}

.header-quotes {
    font-size: 1.2rem;
    color: var(--text-black);
}

.header-right nav {
    display: flex;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-black);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-pink);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text-black);
    transition: all 0.3s ease;
}

/* ── MAIN CONTENT ── */
main {
    padding-top: 80px;
}

/* ── HERO SECTION ── */
.hero-section {
    background-color: var(--white);
    height: 70vh;
    margin-top: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image-container {
    width: 100%;
    max-width: 1250px;
    height: 650px;
    overflow: hidden;
    position: relative;
    margin-bottom: -60px;
    z-index: 2;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-container:hover img {
    transform: scale(1.04);
}

.hero-title-overlay {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 100%;
    text-align: center;
    pointer-events: none;
}

.hero-title-overlay h1 {
    color: var(--white);
    font-size: 5.5rem;
    line-height: 1;
    text-shadow: 0px 4px 10px rgba(0,0,0,0.15);
    white-space: nowrap;
}

/* ── GLAM INTRO SECTION ── */
.glam-intro-section {
    background-color: var(--primary-pink);
    padding: 140px 8% 100px 8%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sub-nav-line {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0.8;
}

.glam-intro-text {
    font-size: 1.8rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 80px auto;
}

.glam-headline {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.luxury-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.luxury-card {
    background-color: var(--white);
    padding: 25px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
}

.luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.luxury-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 20px;
}

.luxury-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.luxury-card p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
}

/* ── FIXED STORY SECTION ── */
.fixed-story-section {
    height: 600px;
    position: relative;
    background-image: url('https://i.pinimg.com/736x/18/c4/6a/18c46aa05c7d153800cab1610ea3c065.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-slider-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
    text-align: center;
}

.story-text-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.story-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.story-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.story-slide p {
    font-size: 2rem;
    line-height: 1.5;
    color: var(--text-black);
}

.story-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-black);
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.story-btn:hover {
    opacity: 0.5;
}

.story-btn-left { left: 0; }
.story-btn-right { right: 0; }




/* ── HAMBURGER MENU STYLES ── */

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text-black);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger active/ open state (X animation) */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Navigation ── */
.header-right nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header-right nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 30px;
        padding: 60px 40px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.08);
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .header-right nav.open {
        right: 0;
    }

    /* Overlay when menu is open */
    .header-right nav.open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.2);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

    .nav-link {
        font-size: 1.2rem;
        letter-spacing: 2px;
        padding: 8px 0;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        transition: all 0.3s ease;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-pink);
        padding-left: 12px;
    }

    /* Header adjustments for mobile */
    header {
        padding: 15px 5%;
    }

    .header-quotes {
        font-size: 1.2rem;
        display: none;
    }

    .logo-divider {
        display: none;
    }

    .logo-main {
        font-size: 1.4rem;
    }

    .header-left {
        gap: 10px;
    }
}

/* ── Tablet styles ── */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-right nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .header-quotes {
        font-size: 1.3rem;
    }

    .logo-main {
        font-size: 1.5rem;
    }
}

/* ── Animation for overlay ── */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ── Prevent body scroll when menu is open ── */
body.menu-open {
    overflow: hidden;
}

/* ── Hamburger touch target size ── */
.hamburger {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    flex-shrink: 0;
}

/* ── Close button style (optional extra) ── */
.hamburger-close {
    display: none;
}

@media (max-width: 768px) {
    /* Optional: add a close "X" inside the nav */
    .header-right nav .nav-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.8rem;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--text-black);
        opacity: 0.5;
        transition: opacity 0.3s ease;
        padding: 8px;
        line-height: 1;
    }

    .header-right nav .nav-close:hover {
        opacity: 1;
    }
}

/* ── PRODUCT GRID SHOWCASE ── */
.product-grid-section {
    background-color: var(--deep-green);
    padding: 100px 4%;
    display: flex;
    justify-content: center;
}

.editorial-container-card {
    background-color: var(--white);
    width: 100%;
    max-width: 1100px;
    padding: 60px;
}

.editorial-row {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
}

.row-3col {
    grid-template-columns: repeat(3, 1fr);
}

.row-split {
    grid-template-columns: 2fr 3fr;
    align-items: center;
}

.editorial-item {
    display: flex;
    flex-direction: column;
}

.editorial-img-wrap {
    width: 100%;
    overflow: hidden;
    margin-bottom: 12px;
}

.editorial-img-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 32/40;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.editorial-item:hover .editorial-img-wrap img {
    transform: scale(1.05);
}

.row-split .small-hero img {
    aspect-ratio: 4/5;
}
.row-split .large-hero img {
    aspect-ratio: 32/20;
}

.beauty-label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.9;
}

/* ── SUBSCRIPTION FORM ── */
.subscription-section {
    background-color: var(--white);
    padding: 100px 4%;
    display: flex;
    justify-content: center;
}

.form-block {
    width: 100%;
    max-width: 550px;
    text-align: center;
}

.form-headline {
    font-size: 2.8rem;
    color: var(--text-black);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--primary-pink);
    border-radius: 4px;
    font-family: "Crimson Text", serif;
    font-size: 1.1rem;
    outline: none;
    background-color: transparent;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--text-black);
}

.form-buttons-row {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.btn-editorial {
    flex: 1;
    padding: 15px 25px;
    background: none;
    border: 1px solid var(--text-black);
    font-family: "Inter Tight", sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    transition: color 0.3s ease;
}

.btn-editorial::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-pink);
    transition: width 0.3s ease;
}

.btn-editorial:hover::after {
    width: 100%;
}

/* ── FOOTER ── */
footer {
    background-color: var(--primary-pink);
    padding: 60px 4% 30px 4%;
    color: var(--white);
    font-family: "Inter Tight", sans-serif;
}

.footer-top {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-icon-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.footer-icon-link:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 25px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.footer-bottom-left a, .footer-bottom-right a {
    color: var(--white);
    text-decoration: none;
    margin-right: 15px;
}

/* ── SUB-PAGE HERO ── */
.inner-page-hero {
    padding: 80px 4% 40px 4%;
    text-align: center;
}

.inner-page-hero h2 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.inner-page-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.3rem;
    opacity: 0.8;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .luxury-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-title-overlay h1 {
        font-size: 4rem;
    }
    .row-3col {
        grid-template-columns: 1fr;
    }
    .row-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 6%;
    }
    .header-right nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 40px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        transform: translateY(-150%);
        transition: transform 0.4s ease-in-out;
    }
    .header-right nav.open {
        transform: translateY(0);
    }
    .hamburger {
        display: flex;
    }
    .hero-image-container {
        height: 500px;
    }
    .hero-title-overlay h1 {
        font-size: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ========================================
   MAKEUP PAGE STYLES
   ======================================== */

.makeup-hero {
    padding: 80px 4% 40px;
    text-align: center;
    background: var(--white);
}

.makeup-hero h2 {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--text-black);
}

.makeup-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.3rem;
    opacity: 0.8;
    line-height: 1.6;
}

.makeup-product-grid {
    background: var(--deep-green);
    padding: 80px 4%;
    display: flex;
    justify-content: center;
}

.makeup-editorial-card {
    background: var(--white);
    width: 100%;
    max-width: 1100px;
    padding: 60px;
}

.makeup-editorial-row {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.makeup-row-split {
    grid-template-columns: 2fr 3fr;
    align-items: stretch;
}

.makeup-row-split-reverse {
    grid-template-columns: 3fr 2fr;
    align-items: stretch;
}

.makeup-editorial-item {
    display: flex;
    flex-direction: column;
}

.makeup-editorial-img-wrap {
    width: 100%;
    overflow: hidden;
    margin-bottom: 12px;
    border-radius: 4px;
}

.makeup-editorial-img-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.makeup-editorial-item:hover .makeup-editorial-img-wrap img {
    transform: scale(1.04);
}

.makeup-large-img img {
    aspect-ratio: 16/9 !important;
}

.makeup-product-label {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 8px;
    opacity: 0.85;
    font-family: "Inter Tight", sans-serif;
}

.makeup-product-desc {
    font-family: "Crimson Text", serif;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-top: 4px;
}

.makeup-philosophy-block {
    padding: 40px 0 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 20px;
}

.makeup-philosophy-block h3 {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.makeup-philosophy-block p {
    font-family: "Crimson Text", serif;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
    max-width: 800px;
}

.makeup-routine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.makeup-routine-grid div {
    padding: 20px;
    background: var(--soft-contrast);
    border-radius: 4px;
}

.makeup-routine-grid h4 {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.makeup-routine-grid p {
    font-family: "Crimson Text", serif;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* ========================================
   PORTFOLIO PAGE STYLES
   ======================================== */

.portfolio-hero {
    padding: 80px 4% 40px;
    text-align: center;
    background: var(--white);
}

.portfolio-hero h2 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.portfolio-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.85;
}

.portfolio-showcase {
    background: var(--soft-contrast);
    padding: 100px 8%;
}

.portfolio-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-card {
    background: var(--white);
    padding: 25px 25px 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 4px;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.portfolio-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 18px;
    border-radius: 3px;
}

.portfolio-card h3 {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.portfolio-card p {
    font-family: "Crimson Text", serif;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.portfolio-story-block {
    padding: 100px 8%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.portfolio-story-block h2 {
    font-family: "Inter Tight", sans-serif;
    font-size: 2.4rem;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.portfolio-story-block > p {
    font-family: "Crimson Text", serif;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 50px;
    opacity: 0.85;
}

.portfolio-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.portfolio-metrics div {
    padding: 25px;
    background: var(--soft-contrast);
    border-radius: 4px;
}

.portfolio-metrics h3 {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.portfolio-metrics p {
    font-family: "Crimson Text", serif;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.portfolio-case-studies {
    padding: 80px 8% 100px;
    background: var(--white);
}

.portfolio-case-studies h2 {
    font-family: "Inter Tight", sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.case-study-card {
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.case-study-card:hover {
    border-color: var(--primary-pink);
}

.case-study-card h3 {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.case-study-card p {
    font-family: "Crimson Text", serif;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.8;
}

.portfolio-philosophy {
    padding: 80px 8% 100px;
    text-align: center;
    background: var(--deep-green);
    color: var(--white);
}

.portfolio-philosophy blockquote {
    font-family: "Clicker Script", cursive;
    font-size: 2.8rem;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto 20px;
}

.portfolio-philosophy cite {
    font-family: "Inter Tight", sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0.7;
    font-style: normal;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-origin-section {
    padding: 140px 6%;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-highlight-box {
    padding: 40px;
    border-left: 3px solid var(--primary-pink);
    background: rgba(245, 203, 203, 0.08);
}

.about-highlight-box h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.about-philosophy {
    padding: 140px 6%;
    background: var(--soft-contrast);
    text-align: center;
}

.about-philosophy h3 {
    font-size: 3rem;
    margin-bottom: 60px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-card {
    background: #fff;
    padding: 35px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: 0.4s ease;
    text-align: left;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.philosophy-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.philosophy-card p {
    line-height: 1.7;
    opacity: 0.8;
}

.about-mission {
    padding: 140px 6%;
    background: var(--deep-green);
    color: #fff;
    text-align: center;
}

.mission-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-mission h3 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-mission p {
    font-size: 1.2rem;
    opacity: 0.85;
    line-height: 1.8;
}

.about-timeline {
    padding: 140px 6%;
    background: #fff;
}

.about-timeline h3 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-item {
    padding: 30px;
    border-left: 3px solid var(--primary-pink);
    background: rgba(245, 203, 203, 0.06);
}

.timeline-item span {
    font-size: 0.9rem;
    color: #999;
    letter-spacing: 0.5px;
}

.timeline-item h4 {
    margin: 10px 0;
    font-size: 1.3rem;
}

.timeline-item p {
    line-height: 1.7;
    opacity: 0.8;
}

.about-quote {
    padding: 160px 6%;
    text-align: center;
    background: var(--soft-contrast);
}

.about-quote blockquote {
    font-size: 2.2rem;
    max-width: 900px;
    margin: 0 auto 30px;
    font-style: italic;
    line-height: 1.5;
}

.about-quote cite {
    opacity: 0.7;
    font-style: normal;
}

/* ========================================
   PRIVACY & TERMS PAGES STYLES
   ======================================== */

.privacy-content,
.terms-content {
    padding: 70px 12% 120px;
    background: var(--white);
}

.privacy-content .content-wrapper,
.terms-content .content-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

.privacy-content .date-badge,
.terms-content .date-badge {
    display: inline-block;
    font-family: "Inter Tight", sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border: 1px solid var(--primary-pink);
    border-radius: 30px;
    margin-bottom: 32px;
    opacity: 0.5;
    background: transparent;
}

.privacy-content p,
.terms-content p {
    font-family: "Crimson Text", serif;
    font-size: 1.12rem;
    line-height: 2;
    margin-bottom: 28px;
    opacity: 0.88;
    color: var(--text-black);
    letter-spacing: 0.2px;
}

.privacy-content p strong,
.terms-content p strong {
    font-weight: 600;
    opacity: 1;
}

.privacy-content .section-divider,
.terms-content .section-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 50px 0 40px;
    opacity: 0.3;
}

.privacy-content .section-divider::before,
.terms-content .section-divider::before,
.privacy-content .section-divider::after,
.terms-content .section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--text-black);
}

.privacy-content .section-divider span,
.terms-content .section-divider span {
    font-family: "Clicker Script", cursive;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--primary-pink);
}

.privacy-content h3,
.terms-content h3 {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 50px 0 18px;
    color: var(--text-black);
}

.privacy-content h3:first-of-type,
.terms-content h3:first-of-type {
    margin-top: 0;
}

.privacy-content h3 .accent-number,
.terms-content h3 .accent-number {
    font-family: "Clicker Script", cursive;
    font-size: 1.8rem;
    color: var(--primary-pink);
    margin-right: 10px;
    opacity: 0.6;
}

.privacy-content h4,
.terms-content h4 {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin: 30px 0 12px;
    color: var(--text-black);
    opacity: 0.9;
}

.privacy-content ul,
.terms-content ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 32px;
}

.privacy-content ul li,
.terms-content ul li {
    font-family: "Crimson Text", serif;
    font-size: 1.05rem;
    line-height: 1.9;
    padding: 10px 0 10px 32px;
    position: relative;
    opacity: 0.85;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.privacy-content ul li:last-child,
.terms-content ul li:last-child {
    border-bottom: none;
}

.privacy-content ul li::before,
.terms-content ul li::before {
    content: "•";
    position: absolute;
    left: 6px;
    color: var(--primary-pink);
    font-size: 1.4rem;
    font-weight: 300;
}

.privacy-content .highlight-box,
.terms-content .highlight-box {
    background: var(--soft-contrast);
    padding: 35px 40px;
    border-radius: 6px;
    margin: 35px 0;
    border-left: 4px solid var(--primary-pink);
    transition: box-shadow 0.3s ease;
}

.privacy-content .highlight-box:hover,
.terms-content .highlight-box:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.privacy-content .highlight-box p,
.terms-content .highlight-box p {
    margin-bottom: 10px;
    opacity: 0.9;
    font-size: 1.08rem;
}

.privacy-content .highlight-box p:last-child,
.terms-content .highlight-box p:last-child {
    margin-bottom: 0;
}

.privacy-content .highlight-box .label,
.terms-content .highlight-box .label {
    font-family: "Inter Tight", sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.4;
    display: block;
    margin-bottom: 6px;
}

.privacy-grid,
.terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0 30px;
}

.privacy-grid .grid-item,
.terms-grid .grid-item {
    padding: 28px 30px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.privacy-grid .grid-item:hover,
.terms-grid .grid-item:hover {
    border-color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.privacy-grid .grid-item .icon,
.terms-grid .grid-item .icon {
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.5;
}

.privacy-grid .grid-item h4,
.terms-grid .grid-item h4 {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.privacy-grid .grid-item p,
.terms-grid .grid-item p {
    font-family: "Crimson Text", serif;
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 0;
    opacity: 0.8;
}

.privacy-content .back-top,
.terms-content .back-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter Tight", sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-black);
    text-decoration: none;
    padding: 12px 0;
    margin-top: 50px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.privacy-content .back-top:hover,
.terms-content .back-top:hover {
    border-bottom-color: var(--primary-pink);
    opacity: 1;
}

.privacy-content .back-top .arrow,
.terms-content .back-top .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.privacy-content .back-top:hover .arrow,
.terms-content .back-top:hover .arrow {
    transform: translateY(-2px);
}

.privacy-content .footer-note,
.terms-content .footer-note {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-family: "Inter Tight", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.3;
    text-align: center;
}

/* ========================================
   REUSABLE UTILITY CLASSES
   ======================================== */

.editorial-text-block {
    padding: 40px 4%;
    max-width: 950px;
    margin: 0 auto;
}

.editorial-text-block h3 {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.editorial-text-block p {
    font-family: "Crimson Text", serif;
    font-size: 1.1rem;
    line-height: 1.9;
    opacity: 0.85;
}

.mini-desc {
    font-family: "Crimson Text", serif;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.8;
    margin-top: 4px;
}

/* ── Responsive for Privacy/Terms ── */
@media (max-width: 992px) {
    .privacy-content,
    .terms-content {
        padding: 50px 8% 90px;
    }
    .privacy-grid,
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-card-grid {
        grid-template-columns: 1fr 1fr;
    }
    .portfolio-metrics {
        grid-template-columns: 1fr;
    }
    .case-study-grid {
        grid-template-columns: 1fr;
    }
    .makeup-row-split,
    .makeup-row-split-reverse {
        grid-template-columns: 1fr;
    }
    .makeup-routine-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .privacy-content,
    .terms-content {
        padding: 30px 5% 60px;
    }
    .privacy-content p,
    .terms-content p {
        font-size: 1rem;
        line-height: 1.9;
    }
    .privacy-content .highlight-box,
    .terms-content .highlight-box {
        padding: 22px 24px;
    }
    .privacy-content h3,
    .terms-content h3 {
        font-size: 1.3rem;
    }
    .privacy-grid .grid-item,
    .terms-grid .grid-item {
        padding: 20px 22px;
    }
    .makeup-hero h2,
    .portfolio-hero h2 {
        font-size: 2.8rem;
    }
    .makeup-editorial-card {
        padding: 30px 20px;
    }
    .portfolio-card-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .portfolio-showcase {
        padding: 60px 4%;
    }
    .portfolio-story-block {
        padding: 60px 4%;
    }
    .portfolio-case-studies {
        padding: 50px 4% 70px;
    }
    .portfolio-philosophy {
        padding: 60px 4%;
    }
    .portfolio-philosophy blockquote {
        font-size: 1.8rem;
    }
    .about-philosophy h3,
    .about-mission h3,
    .about-timeline h3 {
        font-size: 2.2rem;
    }
    .about-quote blockquote {
        font-size: 1.6rem;
    }
    .about-origin-section,
    .about-philosophy,
    .about-mission,
    .about-timeline {
        padding: 80px 4%;
    }
    .inner-page-hero h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .privacy-content p,
    .terms-content p {
        font-size: 0.95rem;
    }
    .privacy-content .highlight-box,
    .terms-content .highlight-box {
        padding: 18px 18px;
    }
    .hero-title-overlay h1 {
        font-size: 2.2rem;
    }
    .glam-headline {
        font-size: 2rem;
    }
    .form-headline {
        font-size: 2rem;
    }
}

