/* ═══════════════════════════════════════════
   HOMEPAGE — Sculpt & Glow
   ═══════════════════════════════════════════ */

/* ─── HERO — Editorial Statement ─── */
.sg-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--vanilla-cloud);
    overflow: hidden;
}

/* Subtle vignette */
.sg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 55%,
        rgba(249, 243, 236, 0.5) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Signature #1: vertical accent line (left) */
.sg-hero__line {
    position: absolute;
    left: var(--padding-x);
    top: 150px;
    bottom: 140px;
    width: 1px;
    background: linear-gradient(
        180deg,
        var(--smoked-mocha) 0%,
        rgba(130, 111, 95, 0.3) 60%,
        transparent 100%
    );
    transform-origin: top center;
    transform: scaleY(0);
    animation: sg-draw-vertical 1.6s var(--ease-out) 2.4s forwards;
    z-index: 1;
}

.sg-hero__line::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -3.5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--smoked-mocha);
    opacity: 0;
    animation: sg-fade-in 0.6s ease 3.4s both;
}

/* Minimal decor (dots only) */
.sg-hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.sg-hero__decor-dots {
    position: absolute;
    top: 26%;
    right: 4%;
    width: 88px;
    height: 88px;
    background-image: radial-gradient(circle, rgba(130, 111, 95, 0.12) 1.2px, transparent 1.2px);
    background-size: 12px 12px;
    animation: sg-fade-in 2s ease 3.2s both;
}

/* Grid — 50/50 split */
.sg-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 120px;
    gap: 40px;
}

/* Content column */
.sg-hero__content {
    padding-left: 20px;
    padding-right: 50px;
    max-width: 640px;
}

/* Eyebrow */
.sg-hero__eyebrow {
    margin-bottom: 4px;
    animation: sg-fade-up 0.8s var(--ease-out) 2.2s both;
}

/* Signature #2: oversize ampersand H1 — single row */
.sg-hero__h1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 0.22em;
    row-gap: 0;
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 0.92;
    margin: 8px 0 8px;
    color: var(--dark-thyme);
}

.sg-hero__h1-word {
    font-size: clamp(3.4rem, 6vw, 5.6rem);
    letter-spacing: -0.01em;
}

.sg-hero__h1-word--a {
    animation: sg-fade-up 0.9s var(--ease-out) 2.35s both;
}

.sg-hero__h1-amp {
    font-size: clamp(3.6rem, 6.5vw, 6rem);
    color: var(--smoked-mocha);
    font-style: italic;
    line-height: 0.9;
    display: inline-block;
    animation: sg-amp-in 1s var(--ease-out) 2.5s both;
}

.sg-hero__h1-word--b {
    animation: sg-fade-up 0.9s var(--ease-out) 2.65s both;
}

.sg-hero__h1-word--b em {
    font-style: italic;
    color: var(--smoked-mocha);
}

/* Subtitle */
.sg-hero__subtitle {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--mocha-light);
    margin: 20px 0 22px;
    letter-spacing: 0.01em;
    animation: sg-fade-up 0.8s var(--ease-out) 2.75s both;
}

/* Description */
.sg-hero__desc {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.72;
    color: var(--smoked-mocha);
    max-width: 440px;
    margin-bottom: 36px;
    font-weight: 300;
    animation: sg-fade-up 0.8s var(--ease-out) 2.85s both;
}

/* CTAs */
.sg-hero__actions {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
    animation: sg-fade-up 0.8s var(--ease-out) 2.95s both;
}

/* Button with arrow (primary CTA) */
.sg-btn--arrow {
    gap: 10px;
}

.sg-btn--arrow svg {
    transition: transform var(--duration-sm) var(--ease-out);
}

.sg-btn--arrow:hover svg {
    transform: translateX(4px);
}

.sg-btn--primary {
    position: relative;
    overflow: hidden;
}

.sg-btn--primary span,
.sg-btn--primary svg {
    position: relative;
    z-index: 1;
}

.sg-btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--smoked-mocha);
    border-radius: var(--radius-btn);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration-md) var(--ease-out);
    z-index: 0;
}

.sg-btn--primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.sg-btn--primary:hover {
    box-shadow: 0 14px 44px rgba(130, 111, 95, 0.3);
}

/* Secondary CTA — underline link (editorial) */
.sg-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--smoked-mocha);
    padding: 4px 0;
    border-bottom: 1px solid rgba(130, 111, 95, 0.35);
    transition: color var(--duration-sm) var(--ease-out),
                border-color var(--duration-sm) var(--ease-out),
                gap var(--duration-sm) var(--ease-out);
}

.sg-hero__link:hover {
    color: var(--dark-thyme);
    border-color: var(--dark-thyme);
    gap: 12px;
}

.sg-hero__link-arrow {
    transition: transform var(--duration-sm) var(--ease-out);
}

.sg-hero__link:hover .sg-hero__link-arrow {
    transform: translate(2px, -2px);
}

/* Media column — editorial portrait + stamp */
.sg-hero__media {
    position: relative;
    height: 82vh;
    max-height: 760px;
    min-height: 540px;
}

/* Portrait — clean editorial rectangle with inner frame */
.sg-hero__portrait {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(56, 54, 36, 0.18),
                0 2px 10px rgba(56, 54, 36, 0.06);
    animation: sg-clip-reveal 1.3s var(--ease-out) 2.3s both;
}

.sg-hero__portrait::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(242, 232, 221, 0.45);
    border-radius: 18px;
    pointer-events: none;
    z-index: 2;
    animation: sg-fade-in 1s ease 3.3s both;
}

/* Slideshow — crossfade between studio shots (JS-driven) */
.sg-hero__slideshow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
}

.sg-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
}

.sg-hero__slide.is-active {
    opacity: 1;
}

/* Navigation arrows — outside portrait, always visible */
.sg-hero__slide-controls {
    position: absolute;
    bottom: -58px;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.sg-hero__slide-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--warm-white);
    border: 1px solid rgba(130, 111, 95, 0.18);
    color: var(--dark-thyme);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color var(--duration-sm) var(--ease-out),
                color var(--duration-sm) var(--ease-out),
                transform var(--duration-sm) var(--ease-out),
                border-color var(--duration-sm) var(--ease-out);
    box-shadow: 0 6px 18px rgba(56, 54, 36, 0.12);
}

.sg-hero__slide-nav:hover {
    background: var(--dark-thyme);
    color: var(--warm-white);
    border-color: var(--dark-thyme);
}

.sg-hero__slide-nav--prev:hover {
    transform: translateX(-3px);
}

.sg-hero__slide-nav--next:hover {
    transform: translateX(3px);
}

/* Dots indicator */
.sg-hero__slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(249, 243, 236, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-btn);
}

.sg-hero__slide-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(130, 111, 95, 0.35);
    cursor: pointer;
    transition: all var(--duration-sm) var(--ease-out);
}

.sg-hero__slide-dot.is-active {
    background: var(--smoked-mocha);
    width: 22px;
    border-radius: 4px;
}

.sg-hero__slide-dot:hover:not(.is-active) {
    background: var(--mocha-light);
}

/* Nested accent image inside main portrait — editorial polaroid */
.sg-hero__portrait-accent {
    position: absolute;
    right: 28px;
    bottom: 48px;
    width: 225px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--vanilla-cloud);
    box-shadow: 0 18px 40px rgba(56, 54, 36, 0.28);
    z-index: 3;
    opacity: 0;
    transform: translateY(20px) rotate(1.5deg);
    animation: sg-fade-up 1s var(--ease-out) 3.2s forwards;
    transition: transform var(--duration-md) var(--ease-out),
                box-shadow var(--duration-md) var(--ease-out);
}

.sg-hero__portrait-accent:hover {
    transform: translateY(0) rotate(0deg) scale(1.04);
    box-shadow: 0 24px 50px rgba(56, 54, 36, 0.35);
}

.sg-hero__portrait-accent-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.sg-hero__portrait-accent-tag {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 5px 10px;
    background: rgba(249, 243, 236, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dark-thyme);
    text-align: center;
}

/* Signature #3: rotating circular stamp */
.sg-hero__stamp {
    position: absolute;
    bottom: -36px;
    left: -36px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: var(--warm-white);
    border: 1px solid rgba(130, 111, 95, 0.2);
    box-shadow: 0 14px 36px rgba(56, 54, 36, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    animation: sg-stamp-in 0.9s var(--ease-out) 3s forwards;
    z-index: 3;
}

.sg-hero__stamp-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: sg-stamp-spin 30s linear infinite;
}

.sg-hero__stamp-text {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 8px;
    letter-spacing: 0.22em;
    fill: var(--smoked-mocha);
    text-transform: uppercase;
}

.sg-hero__stamp-icon {
    width: 20px;
    height: 20px;
    color: var(--smoked-mocha);
    position: relative;
    z-index: 1;
}

.sg-hero__stamp:hover .sg-hero__stamp-svg {
    animation-play-state: paused;
}

/* Scroll indicator */
.sg-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: sg-fade-up 0.8s var(--ease-out) 3.2s both;
}

.sg-hero__scroll span {
    font-family: var(--font-ui);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mocha-light);
    opacity: 0.5;
}

.sg-hero__scroll-line {
    width: 1px;
    height: 36px;
    position: relative;
    overflow: hidden;
    background: rgba(130, 111, 95, 0.12);
}

.sg-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--smoked-mocha);
    animation: sg-scroll-line 2s ease-in-out infinite;
}

/* ─── Keyframes ─── */
@keyframes sg-fade-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes sg-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes sg-scroll-line {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

@keyframes sg-draw-vertical {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes sg-amp-in {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.85);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes sg-clip-reveal {
    from {
        opacity: 0;
        clip-path: inset(100% 0 0 0);
        transform: scale(1.04);
    }
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        transform: scale(1);
    }
}

@keyframes sg-stamp-in {
    from {
        opacity: 0;
        transform: scale(0.7) rotate(-15deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes sg-stamp-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ─── STATS STRIP ─── */
.sg-stats {
    padding: 60px 0;
    background: var(--dark-thyme);
    position: relative;
    overflow: hidden;
}

/* Accent separator line at top */
.sg-stats::after {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mocha-light), var(--smoked-mocha), var(--mocha-light), transparent);
    opacity: 0.3;
}

.sg-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(130, 111, 95, 0.05) 0%, transparent 40%, rgba(130, 111, 95, 0.04) 100%);
}

.sg-stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.sg-stats__item {
    text-align: center;
}

.sg-stats__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--mocha-light);
    line-height: 1;
    margin-bottom: 8px;
}

.sg-stats__label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: rgba(242, 232, 221, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
}

.sg-stats__divider {
    display: block;
    width: 30px;
    height: 1px;
    background: rgba(130, 111, 95, 0.3);
    margin: 12px auto 0;
}

/* ─── MARQUEE ─── */
.sg-marquee {
    padding: 36px 0;
    border-bottom: 1px solid rgba(56, 54, 36, 0.06);
    overflow: hidden;
}

.sg-marquee__track {
    display: flex;
    align-items: center;
    animation: sg-marquee 35s linear infinite;
    width: max-content;
}

.sg-marquee__item {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--mocha-light);
    white-space: nowrap;
    padding: 0 28px;
    opacity: 0.5;
}

.sg-marquee__dot {
    display: inline-flex;
    align-items: center;
    color: var(--mocha-light);
    opacity: 0.6;
}

@keyframes sg-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ─── ABOUT ─── */
.sg-about {
    padding: var(--section-py) 0;
    position: relative;
}

.sg-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.sg-about__media {
    position: relative;
}

.sg-about__img-wrap {
    border-radius: 32px;
}

.sg-about__img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.sg-about__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 130px;
    height: 130px;
    background: var(--smoked-mocha);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 50px rgba(130, 111, 95, 0.4);
    animation: sg-spin-slow 20s linear infinite;
}

@keyframes sg-spin-slow { to { transform: rotate(360deg); } }

.sg-about__badge-inner {
    animation: sg-spin-rev 20s linear infinite;
    text-align: center;
}

@keyframes sg-spin-rev { to { transform: rotate(-360deg); } }

.sg-about__badge-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--warm-white);
    line-height: 1;
    display: block;
}

.sg-about__badge-sub {
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.sg-about__content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--smoked-mocha);
    font-weight: 300;
    margin-bottom: 16px;
}

.sg-about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 36px;
}

.sg-about__feat {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: var(--warm-white);
    border-radius: 18px;
    border: 1px solid rgba(56, 54, 36, 0.04);
    transition: all 0.4s var(--ease-out);
}

.sg-about__feat:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(56, 54, 36, 0.06);
}

.sg-about__feat h4 {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--dark-thyme);
}

.sg-about__feat p {
    font-size: 0.78rem;
    color: var(--mocha-light);
    line-height: 1.5;
    margin: 0;
}

/* ─── PROCESS ─── */
.sg-process {
    padding: 120px 0;
    background: var(--vanilla-light);
    position: relative;
    overflow: hidden;
}

.sg-process::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(130, 111, 95, 0.05) 0%, transparent 60%);
    border-radius: 50%;
}

.sg-process__header {
    text-align: center;
    margin-bottom: 70px;
}

.sg-process__header p {
    font-size: 1rem;
    color: var(--mocha-light);
    font-weight: 300;
    max-width: 500px;
    margin: 18px auto 0;
    line-height: 1.6;
}

.sg-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.sg-process__line {
    position: absolute;
    top: 35px;
    left: calc(12.5% + 35px);
    right: calc(12.5% + 35px);
    height: 2px;
    background: linear-gradient(90deg, rgba(130, 111, 95, 0.15), var(--mocha-light), var(--mocha-light), rgba(130, 111, 95, 0.15));
    opacity: 0.4;
}

.sg-process__step {
    text-align: center;
    position: relative;
}

.sg-process__num {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--vanilla-cloud);
    border: 2px solid rgba(130, 111, 95, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--smoked-mocha);
    position: relative;
    z-index: 2;
    transition: all 0.4s var(--ease-out);
}

.sg-process__step:hover .sg-process__num {
    background: var(--smoked-mocha);
    color: var(--warm-white);
    border-color: var(--smoked-mocha);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(130, 111, 95, 0.3);
}

.sg-process__step h3 {
    margin-bottom: 10px;
}

.sg-process__step p {
    font-size: 0.82rem;
    color: var(--mocha-light);
    line-height: 1.6;
    font-weight: 300;
    max-width: 240px;
    margin: 0 auto;
}

/* ─── SERVICES ─── */
.sg-services {
    padding: var(--section-py) 0;
    background: var(--vanilla-light);
    position: relative;
    overflow: hidden;
}

.sg-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(130, 111, 95, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(174, 183, 154, 0.12) 0%, transparent 50%);
}

.sg-services__inner {
    position: relative;
    z-index: 1;
}

.sg-services__header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label--dark::before {
    background: var(--dark-thyme);
}

.section-label--dark span {
    color: var(--dark-thyme);
}

.sg-services__header p {
    font-size: 1rem;
    color: var(--mocha-light);
    font-weight: 300;
    max-width: 520px;
    margin: 18px auto 0;
    line-height: 1.6;
}

.sg-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* Service Card */
.sg-svc-card {
    background: var(--warm-white);
    border: 1px solid rgba(56, 54, 36, 0.05);
    border-radius: var(--radius-card);
    padding: 34px 26px;
    text-decoration: none;
    color: var(--dark-thyme);
    transition: all var(--duration-md) var(--ease-out);
    position: relative;
    overflow: hidden;
    display: block;
}

.sg-svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(130, 111, 95, 0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--duration-md) ease;
    border-radius: var(--radius-card);
}

.sg-svc-card:hover {
    transform: translateY(-8px);
    background: var(--warm-white);
    border-color: rgba(130, 111, 95, 0.1);
    box-shadow: 0 24px 70px rgba(56, 54, 36, 0.1);
}

.sg-svc-card:hover::before {
    opacity: 1;
}

.sg-svc-card__num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(56, 54, 36, 0.06);
    position: absolute;
    top: 14px;
    right: 18px;
    transition: color var(--duration-sm);
}

.sg-svc-card:hover .sg-svc-card__num {
    color: rgba(130, 111, 95, 0.12);
}

.sg-svc-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(130, 111, 95, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease-out);
}

.sg-svc-card__icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--smoked-mocha);
    fill: none;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sg-svc-card:hover .sg-svc-card__icon {
    background: var(--smoked-mocha);
    transform: scale(1.08);
}

.sg-svc-card:hover .sg-svc-card__icon svg {
    stroke: var(--warm-white);
}

.sg-svc-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.sg-svc-card p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--smoked-mocha);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.sg-svc-card__arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 22px;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--smoked-mocha);
    background: rgba(130, 111, 95, 0.08);
    border-radius: 100px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    z-index: 1;
}

.sg-svc-card:hover .sg-svc-card__arrow {
    background: var(--smoked-mocha);
    color: var(--warm-white);
    gap: 12px;
}

/* ─── PACKAGES ─── */
.sg-packages {
    padding: var(--section-py) 0;
}

.sg-packages__header {
    text-align: center;
    margin-bottom: 60px;
}

.sg-packages__header p {
    font-size: 1rem;
    color: var(--mocha-light);
    font-weight: 300;
    max-width: 480px;
    margin: 16px auto 0;
    line-height: 1.6;
}

.sg-packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Package Card */
.sg-pkg {
    background: var(--warm-white);
    border-radius: 26px;
    padding: 38px 28px;
    border: 1px solid rgba(56, 54, 36, 0.04);
    transition: all var(--duration-md) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.sg-pkg:hover {
    transform: translateY(-8px);
}

.sg-pkg:not(.sg-pkg--featured):hover {
    box-shadow: 0 24px 64px rgba(56, 54, 36, 0.07);
}

.sg-pkg--featured {
    background: var(--dark-thyme);
    color: var(--vanilla-cloud);
    border-color: transparent;
    box-shadow: 0 30px 80px rgba(56, 54, 36, 0.14);
}

.sg-pkg__badge {
    position: absolute;
    top: 16px;
    right: -8px;
    background: var(--smoked-mocha);
    color: var(--warm-white);
    font-family: var(--font-ui);
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 18px 7px 14px;
    border-radius: 6px 0 0 6px;
    line-height: 1;
    box-shadow: 0 4px 16px rgba(130, 111, 95, 0.4);
    z-index: 2;
}

.sg-pkg__badge::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    border-style: solid;
    border-width: 0 8px 6px 0;
    border-color: transparent var(--mocha-dark) transparent transparent;
}

.sg-pkg__tagline {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--smoked-mocha);
    font-weight: 500;
    margin-bottom: 4px;
}

.sg-pkg--featured .sg-pkg__tagline {
    color: var(--mocha-light);
}

.sg-pkg__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 22px;
}

.sg-pkg__price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.sg-pkg__price span {
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.5;
}

.sg-pkg__period {
    font-size: 0.76rem;
    color: var(--mocha-light);
    margin-bottom: 24px;
}

.sg-pkg--featured .sg-pkg__period {
    color: rgba(242, 232, 221, 0.35);
}

.sg-pkg__divider {
    height: 1px;
    background: rgba(56, 54, 36, 0.06);
    margin-bottom: 24px;
}

.sg-pkg--featured .sg-pkg__divider {
    background: rgba(242, 232, 221, 0.07);
}

.sg-pkg__list li {
    font-size: 0.8rem;
    color: var(--smoked-mocha);
    padding: 7px 0 7px 24px;
    position: relative;
    line-height: 1.5;
}

.sg-pkg--featured .sg-pkg__list li {
    color: rgba(242, 232, 221, 0.45);
}

.sg-pkg__list li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 13px;
    width: 10px;
    height: 5px;
    border-left: 2px solid var(--smoked-mocha);
    border-bottom: 2px solid var(--smoked-mocha);
    transform: rotate(-45deg);
}

.sg-pkg__cta {
    display: block;
    margin-top: 28px;
    padding: 14px;
    text-align: center;
    border-radius: var(--radius-btn);
    font-family: var(--font-ui);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s var(--ease-out);
    border: 1px solid rgba(56, 54, 36, 0.12);
    color: var(--dark-thyme);
    background: transparent;
}

.sg-pkg__cta:hover {
    background: var(--dark-thyme);
    color: var(--vanilla-cloud);
    border-color: var(--dark-thyme);
}

.sg-pkg--featured .sg-pkg__cta {
    background: var(--smoked-mocha);
    color: var(--warm-white);
    border: none;
    font-weight: 600;
}

.sg-pkg--featured .sg-pkg__cta:hover {
    background: var(--mocha-light);
}

/* ─── TESTIMONIALS ─── */
.sg-testimonials {
    padding: var(--section-py) 0;
    background: var(--vanilla-light);
    position: relative;
    overflow: hidden;
}

.sg-testimonials__quote-bg {
    position: absolute;
    top: 40px;
    left: 5%;
    font-family: var(--font-display);
    font-size: 24rem;
    color: rgba(130, 111, 95, 0.05);
    line-height: 1;
    pointer-events: none;
}

.sg-testimonials__inner {
    position: relative;
    z-index: 1;
}

.sg-testimonials__header {
    text-align: center;
    margin-bottom: 60px;
}

.sg-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sg-testi {
    background: var(--vanilla-cloud);
    border-radius: var(--radius-card);
    padding: 36px;
    border: 1px solid rgba(56, 54, 36, 0.03);
    transition: all 0.4s var(--ease-out);
}

.sg-testi:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(56, 54, 36, 0.06);
}

.sg-testi__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    color: var(--smoked-mocha);
}

.sg-testi__text {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.65;
    color: var(--dark-thyme);
    margin-bottom: 24px;
    border: none;
    padding: 0;
}

.sg-testi__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sg-testi__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mocha-light), var(--smoked-mocha));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--warm-white);
    flex-shrink: 0;
}

.sg-testi__name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark-thyme);
}

.sg-testi__role {
    font-size: 0.72rem;
    color: var(--mocha-light);
    font-weight: 300;
}

/* ─── LOCATIONS ─── */
.sg-locations {
    padding: var(--section-py) 0;
}

.sg-locations__header {
    text-align: center;
    margin-bottom: 60px;
}

.sg-locations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sg-loc {
    background: var(--warm-white);
    border-radius: 28px;
    border: 1px solid rgba(56, 54, 36, 0.04);
    transition: all var(--duration-md) var(--ease-out);
    overflow: hidden;
}

.sg-loc:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(56, 54, 36, 0.06);
}

.sg-loc__map {
    height: 200px;
    overflow: hidden;
}

.sg-loc__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.6) contrast(1.1);
    transition: filter 0.4s ease;
}

.sg-loc:hover .sg-loc__map iframe {
    filter: saturate(1);
}

.sg-loc__body {
    padding: 32px 36px;
}

.sg-loc__badge {
    display: inline-block;
    font-family: var(--font-ui);
    padding: 6px 16px;
    border-radius: var(--radius-btn);
    background: rgba(130, 111, 95, 0.1);
    color: var(--smoked-mocha);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sg-loc h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.sg-loc p {
    font-size: 0.88rem;
    color: var(--mocha-light);
    line-height: 1.6;
}

.sg-loc__arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--smoked-mocha);
    transition: gap var(--duration-sm) var(--ease-out);
}

.sg-loc:hover .sg-loc__arrow {
    gap: 14px;
}

/* ─── FAQ ─── */
.sg-faq {
    padding: var(--section-py) 0;
    background: var(--vanilla-light);
}

.sg-faq__inner {
    max-width: 800px;
}

.sg-faq__header {
    text-align: center;
    margin-bottom: 60px;
}

.sg-faq__item {
    border-bottom: 1px solid rgba(56, 54, 36, 0.08);
    overflow: hidden;
}

.sg-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark-thyme);
    transition: color var(--duration-sm);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.sg-faq__question:hover {
    color: var(--smoked-mocha);
}

.sg-faq__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(56, 54, 36, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-out);
}

.sg-faq__icon svg {
    stroke: var(--smoked-mocha);
    transition: transform 0.4s var(--ease-out);
}

.sg-faq__item.is-active .sg-faq__icon {
    background: var(--smoked-mocha);
    border-color: var(--smoked-mocha);
}

.sg-faq__item.is-active .sg-faq__icon svg {
    stroke: var(--warm-white);
    transform: rotate(45deg);
}

.sg-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-md) var(--ease-out), padding var(--duration-md) ease;
}

.sg-faq__item.is-active .sg-faq__answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.sg-faq__answer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--smoked-mocha);
    font-weight: 300;
}

/* ─── CTA BANNER ─── */
.sg-cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--mocha-dark) 0%, var(--smoked-mocha) 50%, var(--mocha-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sg-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sg-cta-banner__inner {
    position: relative;
    z-index: 1;
}

.sg-cta-banner h2 {
    color: var(--warm-white);
    margin-bottom: 16px;
}

.sg-cta-banner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.sg-btn--white {
    padding: 18px 42px;
    font-weight: 600;
}

.sg-btn--white:hover {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

/* ─── CONTACT SECTION ─── */
.sg-contact-section {
    padding: var(--section-py) 0;
    background: var(--dark-thyme);
    position: relative;
    overflow: hidden;
}

.sg-contact-section__orb {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(130, 111, 95, 0.08) 0%, transparent 60%);
    border-radius: 50%;
}

.sg-contact-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sg-contact-section h2 {
    color: var(--vanilla-cloud);
    margin-bottom: 20px;
}

.sg-contact-section h2 em {
    color: var(--mocha-light);
}

.sg-contact-section__content > p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(242, 232, 221, 0.45);
    font-weight: 300;
    max-width: 440px;
    margin-bottom: 40px;
}

.section-label--light::before {
    background: var(--mocha-light);
}

.section-label--light span {
    color: var(--mocha-light);
}

.sg-contact-section__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.sg-contact-section__item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--vanilla-cloud);
    font-size: 0.92rem;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(242, 232, 221, 0.06);
    border: 1px solid rgba(242, 232, 221, 0.1);
    transition: background-color var(--duration-sm) var(--ease-out),
                border-color var(--duration-sm) var(--ease-out),
                transform var(--duration-sm) var(--ease-out),
                color var(--duration-sm) var(--ease-out);
}

.sg-contact-section__item:hover {
    background: rgba(242, 232, 221, 0.1);
    border-color: rgba(242, 232, 221, 0.2);
    color: var(--warm-white);
    transform: translateX(4px);
}

.sg-contact-section__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--mocha-light), var(--smoked-mocha));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--duration-sm) var(--ease-out),
                box-shadow var(--duration-sm) var(--ease-out);
}

.sg-contact-section__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--warm-white);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sg-contact-section__item:hover .sg-contact-section__icon {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 6px 16px rgba(130, 111, 95, 0.4);
}

.sg-contact-section__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* ─── INSTAGRAM ─── */
.sg-instagram {
    padding: 100px 0 60px;
    background: var(--dark-thyme);
    text-align: center;
}

.sg-instagram__header {
    margin-bottom: 40px;
}

.sg-instagram__header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--vanilla-cloud);
}

.sg-instagram__header h2 a {
    color: var(--mocha-light);
    text-decoration: none;
    font-style: italic;
    transition: text-decoration-color var(--duration-sm);
}

.sg-instagram__header h2 a:hover {
    text-decoration: underline;
}

.sg-instagram__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}

.sg-instagram__item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: block;
}

.sg-instagram__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sg-instagram__item:hover img {
    transform: scale(1.1);
}

.sg-instagram__overlay {
    position: absolute;
    inset: 0;
    background: rgba(56, 54, 36, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-sm);
}

.sg-instagram__overlay svg {
    stroke: var(--warm-white);
}

.sg-instagram__item:hover .sg-instagram__overlay {
    opacity: 1;
}

/* ─── ATMOSPHERE — full-bleed cinematic statement ─── */
.sg-atmosphere {
    position: relative;
    min-height: 72vh;
    max-height: 780px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-thyme);
}

.sg-atmosphere__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.sg-atmosphere__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    transform: scale(1.02);
    transition: transform 12s ease;
}

.sg-atmosphere:hover .sg-atmosphere__img {
    transform: scale(1.06);
}

.sg-atmosphere__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(56, 54, 36, 0.35) 0%,
        rgba(56, 54, 36, 0.55) 50%,
        rgba(56, 54, 36, 0.7) 100%
    );
    pointer-events: none;
}

.sg-atmosphere__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px var(--padding-x);
    max-width: 840px;
    color: var(--vanilla-cloud);
}

.sg-atmosphere__eyebrow {
    display: inline-block;
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--vanilla-cloud);
    opacity: 0.85;
    margin-bottom: 28px;
}

.sg-atmosphere__quote {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.6rem, 5.6vw, 4.6rem);
    line-height: 1.08;
    letter-spacing: -0.005em;
    color: var(--warm-white);
    margin: 0 0 36px;
}

.sg-atmosphere__quote em {
    font-style: italic;
    color: var(--mocha-light);
}

.sg-atmosphere__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vanilla-cloud);
    padding: 6px 0;
    border-bottom: 1px solid rgba(242, 232, 221, 0.4);
    transition: color var(--duration-sm) var(--ease-out),
                border-color var(--duration-sm) var(--ease-out),
                gap var(--duration-sm) var(--ease-out);
}

.sg-atmosphere__link:hover {
    color: var(--warm-white);
    border-color: var(--warm-white);
    gap: 14px;
}

.sg-atmosphere__link svg {
    transition: transform var(--duration-sm) var(--ease-out);
}

.sg-atmosphere__link:hover svg {
    transform: translateX(3px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
    .sg-services__grid { grid-template-columns: repeat(2, 1fr); }
    .sg-packages__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet landscape & below */
@media (max-width: 1024px) {
    /* Sections with wider cols collapse */
    .sg-process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .sg-process__line { display: none; }
    .sg-instagram__grid { grid-template-columns: repeat(3, 1fr); }

    /* Hero — padding-top reduced since header is mobile-compact from 1024 */
    .sg-hero__inner {
        grid-template-columns: 52% 48%;
        gap: 24px;
        padding-top: 100px;
        padding-bottom: 80px;
    }
    .sg-hero__content { padding-right: 24px; padding-left: 24px; }
    .sg-hero__portrait { border-radius: 24px; }
    .sg-hero__portrait::after { inset: 10px; border-radius: 16px; }
    .sg-hero__portrait-accent {
        width: 180px;
        height: 240px;
        right: 20px;
        bottom: 40px;
    }
    .sg-hero__stamp { width: 94px; height: 94px; bottom: -24px; left: -24px; }

    /* Tighter section vertical padding */
    .sg-about,
    .sg-process,
    .sg-services,
    .sg-packages,
    .sg-testimonials,
    .sg-locations,
    .sg-faq,
    .sg-contact-section,
    .sg-instagram {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    /* Atmosphere section smaller on tablet */
    .sg-atmosphere {
        min-height: 60vh;
        max-height: 640px;
    }
    .sg-atmosphere__inner {
        padding: 60px var(--padding-x);
    }
}

/* Tablet portrait */
@media (max-width: 900px) {
    .sg-testimonials__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sg-testimonials__grid > :nth-child(3) { grid-column: span 2; max-width: 560px; justify-self: center; }
    .sg-about__features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .sg-hero__inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 60px;
        gap: 36px;
    }
    /* Image FIRST, text SECOND on mobile */
    .sg-hero__media { order: -1; }
    .sg-hero__content {
        padding: 0;
        max-width: 100%;
    }
    /* H1 single row on mobile */
    .sg-hero__h1 {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: baseline;
        column-gap: 0.18em;
        line-height: 0.92;
        margin-top: 2px;
    }
    .sg-hero__h1-word {
        font-size: clamp(2.2rem, 10vw, 3.1rem);
        white-space: nowrap;
        margin-top: 10px;
    }
    .sg-hero__h1-amp {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        line-height: 0.9;
        margin: 0;
    }
    .sg-hero__h1-word--b {
        margin-left: 0;
    }
    .sg-hero__subtitle {
        font-size: 1.1rem;
        margin: 14px 0 16px;
    }
    .sg-hero__desc { margin-bottom: 26px; }
    /* CTAs full-width stacked */
    .sg-hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .sg-hero__actions .sg-btn,
    .sg-hero__actions .sg-hero__link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

  .sg-hero__eyebrow {
    margin-top:50px;
  }
    
    .sg-hero__link {
        padding: 14px 20px;
        border: 1px solid rgba(56, 54, 36, 0.25);
        border-radius: var(--radius-btn);
    }
    .sg-hero__link:hover {
        border-color: var(--dark-thyme);
    }
    /* Smaller media + slightly tighter */
    .sg-hero__media {
        height: 54vh;
        max-height: 460px;
        min-height: 320px;
        margin-right: calc(-1 * var(--padding-x));
        margin-left: calc(-1 * var(--padding-x));
    }
    .sg-hero__portrait {
        border-radius: 20px;
        margin: 0 var(--padding-x);
    }
    .sg-hero__portrait::after { inset: 10px; border-radius: 14px; }
    .sg-hero__portrait-accent {
        width: 144px;
        height: 192px;
        right: calc(var(--padding-x) + 12px);
        bottom: 32px;
        border-width: 3px;
    }
    .sg-hero__slide-nav {
        width: 36px;
        height: 36px;
    }
    /* Arrows inside portrait top-center — no content overlap below */
    .sg-hero__slide-controls {
        bottom: auto;
        bottom: -50px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        gap: 8px;
    }
    .sg-hero__slide-nav {
        background: rgba(249, 243, 236, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    /* Dots centered within portrait */
    .sg-hero__slide-dots {
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
    }
    .sg-hero__portrait-accent-tag {
        font-size: 0.52rem;
        padding: 4px 6px;
        letter-spacing: 0.1em;
    }
    .sg-hero__stamp {
        width: 82px;
        height: 82px;
        bottom: -20px;
        left: calc(var(--padding-x) + 8px);
    }
    .sg-hero__line { display: none; }
    .sg-hero__decor { display: none; }
    .sg-hero__scroll { display: none; }

    .sg-about__inner { grid-template-columns: 1fr; gap: 50px; }
    .sg-about__media { order: -1; } /* Slika uvek prva na mobilnom */
    .sg-about__img { height: 400px; }
    .sg-about__features { grid-template-columns: 1fr; }
    .sg-about__badge { width: 100px; height: 100px; bottom: -10px; right: -10px; }
    .sg-about__badge-text { font-size: 1.4rem; }

    .sg-stats__inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .sg-services__grid,
    .sg-packages__grid,
    .sg-testimonials__grid,
    .sg-locations__grid { grid-template-columns: 1fr; }

    .sg-contact-section__inner { grid-template-columns: 1fr; gap: 50px; }
    .sg-contact-section__visual { order: -1; } /* Slika uvek prva na mobilnom */

    .sg-instagram__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Atmosphere on mobile */
@media (max-width: 768px) {
    .sg-atmosphere {
        min-height: 55vh;
        max-height: 540px;
    }
    .sg-atmosphere__inner {
        padding: 50px var(--padding-x);
    }
    .sg-atmosphere__eyebrow {
        font-size: 0.64rem;
        margin-bottom: 18px;
        letter-spacing: 0.2em;
    }
    .sg-atmosphere__quote {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 26px;
    }
    .sg-atmosphere__link {
        font-size: 0.7rem;
    }
}

/* Intermediate 2-col for small tablets / large phones */
@media (max-width: 640px) {
    .sg-hero__portrait-accent {
        width: 128px;
        height: 170px;
    }
    .sg-hero__subtitle { font-size: 1rem; }
    .sg-hero__desc { font-size: 0.92rem; line-height: 1.65; }
    .sg-about,
    .sg-process,
    .sg-services,
    .sg-packages,
    .sg-testimonials,
    .sg-locations,
    .sg-faq,
    .sg-contact-section,
    .sg-instagram {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .sg-stats__inner { grid-template-columns: 1fr 1fr; gap: 24px; }
    .sg-process__steps { grid-template-columns: 1fr; }
    .sg-instagram__grid { grid-template-columns: repeat(2, 1fr); }

    .sg-testimonials__grid { grid-template-columns: 1fr; }
    .sg-testimonials__grid > :nth-child(3) { grid-column: auto; max-width: none; }
    .sg-about__features { grid-template-columns: 1fr; }

    .sg-hero__stamp { width: 72px; height: 72px; }
    .sg-hero__stamp-icon { width: 16px; height: 16px; }
    .sg-hero__portrait-accent {
        width: 112px;
        height: 150px;
        bottom: 24px;
    }
    .sg-hero__portrait-accent-tag {
        font-size: 0.48rem;
        padding: 3px 5px;
    }
}

/* ─── Accessibility: respect reduced motion preference ─── */
@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;
    }

    .sg-hero__stamp-svg,
    .sg-hero__portrait-img,
    .sg-hero__slide { transition: none; }

    .sg-hero__slide.is-active { transition: none; }
}
