﻿:root {
    --navy: #162C51;
    --red: #AB2637;
    --yellow: #FFFF8F;
    --cream: #F7F5EF;
    --white: #ffffff;
    --text: rgba(22, 44, 81, 0.82);
    --line: rgba(22, 44, 81, 0.10);
    --shadow-soft: 0 20px 60px rgba(22, 44, 81, 0.08);
    --shadow-card: 0 18px 40px rgba(22, 44, 81, 0.10);
    --radius-xl: 36px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--navy);
    background:
        radial-gradient(circle at 12% 8%, rgba(255,255,143,0.28), transparent 22%),
        radial-gradient(circle at 88% 12%, rgba(171,38,55,0.08), transparent 18%),
        linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: 0.35s ease;
}

.site-header.scrolled .header-shell {
    background: rgba(255,255,255,0.82);
    border-color: rgba(22,44,81,0.08);
    box-shadow: 0 16px 40px rgba(22,44,81,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: 0.35s ease;
}

.header-logo img {
    width: clamp(160px, 18vw, 235px);
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(22, 44, 81, 0.84);
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.35s ease;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-outline {
    background: rgba(255,255,255,0.72);
    border-color: rgba(22,44,81,0.10);
    color: var(--navy);
}

.btn-outline:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 10px 24px rgba(22,44,81,0.06);
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 14px 30px rgba(171,38,55,0.20);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #bc3042;
    box-shadow: 0 18px 38px rgba(171,38,55,0.25);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(22,44,81,0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.75);
    cursor: pointer;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,143,0.42);
    border: 1px solid rgba(22,44,81,0.06);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 6px rgba(171,38,55,0.08);
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: clamp(54px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    max-width: 760px;
    color: var(--navy);
}

.hero h1 .accent {
    color: var(--red);
    position: relative;
    display: inline-block;
}

.hero h1 .accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 14px;
    background: rgba(255,255,143,0.70);
    border-radius: 999px;
    z-index: -1;
}

.hero-sub {
    max-width: 620px;
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.85;
    color: var(--text);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.note-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(22,44,81,0.08);
    box-shadow: 0 10px 24px rgba(22,44,81,0.05);
    font-size: 13px;
    font-weight: 600;
    color: rgba(22,44,81,0.80);
}

.note-pill span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}

.hero-visual {
    position: relative;
    min-height: 680px;
}

.hero-card {
    position: relative;
    height: 100%;
    min-height: 680px;
    border-radius: 42px;
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.90), rgba(247,245,239,0.92)),
        radial-gradient(circle at 50% 18%, rgba(255,255,143,0.38), transparent 34%);
    box-shadow: 0 28px 90px rgba(22,44,81,0.12);
    overflow: hidden;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 30px;
    pointer-events: none;
}

.hero-image-area {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 634px;
    border-radius: 28px;
    overflow: hidden;
    padding: 0;
    background: transparent;
    display: block;
}

/* PHOTO WALL */
.photo-wall {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 634px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 16%, rgba(255,255,143,0.20), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,245,239,0.96));
}

.photo-wall::before {
    content: "";
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 78%;
    height: 78%;
    border-radius: 50%;
    background: rgba(255,255,143,0.10);
    filter: blur(28px);
    pointer-events: none;
}

.hero-watermark {
    position: absolute;
    top: 7%;
    left: 50%;
    transform: translateX(-50%);
    width: 78%;
    max-width: 420px;
    opacity: 0.10;
    animation: floatSoft 8s ease-in-out infinite;
    pointer-events: none;
}

.photo-card {
    position: absolute;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(22,44,81,0.08);
    box-shadow: 0 18px 40px rgba(22,44,81,0.12);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    will-change: transform;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main portrait */
.card-1 {
    width: 290px;
    height: 390px;
    top: 70px;
    left: 55px;
    z-index: 3;
    transform: rotate(-4deg);
    animation: floatWallA 7s ease-in-out infinite;
}

/* Upper right */
.card-2 {
    width: 215px;
    height: 250px;
    top: 40px;
    right: 70px;
    z-index: 2;
    transform: rotate(5deg);
    animation: floatWallB 8s ease-in-out infinite;
}

/* Bottom right */
.card-3 {
    width: 240px;
    height: 280px;
    bottom: 55px;
    right: 50px;
    z-index: 4;
    transform: rotate(-3deg);
    animation: floatWallC 7.5s ease-in-out infinite;
}

/* Lower left overlap */
.card-4 {
    width: 180px;
    height: 220px;
    bottom: 70px;
    left: 25px;
    z-index: 2;
    transform: rotate(6deg);
    animation: floatWallB 9s ease-in-out infinite;
}

/* Middle accent card */
.card-5 {
    width: 165px;
    height: 190px;
    top: 220px;
    right: 210px;
    z-index: 5;
    transform: rotate(3deg);
    animation: floatWallA 8.5s ease-in-out infinite;
}

.photo-card:hover {
    transform: translateY(-8px) scale(1.02) rotate(0deg);
    box-shadow: 0 28px 60px rgba(22,44,81,0.16);
}

.photo-label-card {
    position: absolute;
    left: 50px;
    bottom: 28px;
    z-index: 6;
    max-width: 260px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(22,44,81,0.08);
    box-shadow: 0 18px 40px rgba(22,44,81,0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.photo-label-card small {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(171,38,55,0.75);
}

.photo-label-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(22,44,81,0.78);
}

.hero-photo-placeholder {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 360px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(22,44,81,0.08);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-photo-placeholder small {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(171,38,55,0.74);
}

.hero-photo-placeholder p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(22,44,81,0.78);
}

.floating-card {
    position: absolute;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(22,44,81,0.08);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 3;
}

.floating-card.top {
    top: 54px;
    right: -16px;
    width: 220px;
    animation: floatUpDown 5.5s ease-in-out infinite;
}

.floating-card.bottom {
    left: -26px;
    bottom: 72px;
    width: 230px;
    animation: floatUpDown 6.5s ease-in-out infinite;
}

.floating-card h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(22,44,81,0.56);
    margin-bottom: 10px;
}

.floating-card strong {
    display: block;
    font-size: 19px;
    line-height: 1.4;
    color: var(--navy);
    margin-bottom: 10px;
}

.floating-card p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(22,44,81,0.70);
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
    pointer-events: none;
}

.hero-bg-orb.orb-1 {
    width: 220px;
    height: 220px;
    background: rgba(255,255,143,0.42);
    top: 90px;
    left: -70px;
}

.hero-bg-orb.orb-2 {
    width: 260px;
    height: 260px;
    background: rgba(171,38,55,0.08);
    right: -90px;
    bottom: 80px;
}

.seed {
    position: absolute;
    width: 12px;
    height: 16px;
    border-radius: 999px;
    background: rgba(171,38,55,0.14);
    animation: seedFloat 7s ease-in-out infinite;
}

.seed.s1 {
    top: 14%;
    left: 8%;
    transform: rotate(-18deg);
}

.seed.s2 {
    top: 10%;
    left: 18%;
    transform: rotate(8deg);
    animation-delay: .6s;
}

.seed.s3 {
    top: 18%;
    left: 26%;
    transform: rotate(-10deg);
    animation-delay: 1.2s;
}

.seed.s4 {
    top: 14%;
    right: 16%;
    transform: rotate(14deg);
    animation-delay: .8s;
}

.seed.s5 {
    top: 23%;
    right: 10%;
    transform: rotate(-14deg);
    animation-delay: 1.5s;
}

.seed.s6 {
    bottom: 18%;
    right: 18%;
    transform: rotate(18deg);
    animation-delay: 1.1s;
}

/* ABOUT */
.about-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.about-shell {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: start;
}

.about-visual {
    position: relative;
}

.about-visual-card {
    position: relative;
    min-height: 640px;
    border-radius: 40px;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,245,239,0.96)),
        radial-gradient(circle at 30% 20%, rgba(255,255,143,0.18), transparent 30%);
    box-shadow: 0 28px 80px rgba(22,44,81,0.10);
    overflow: hidden;
}

.about-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    max-width: 380px;
    transform: translate(-50%, -50%);
    opacity: 0.07;
    pointer-events: none;
}

.about-main-photo {
    position: absolute;
    inset: 34px 90px 34px 34px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(22,44,81,0.12);
}

.about-main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    max-width: 260px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(22,44,81,0.08);
    box-shadow: 0 18px 40px rgba(22,44,81,0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-floating-card small {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(171,38,55,0.74);
}

.about-floating-card strong {
    display: block;
    font-size: 24px;
    line-height: 1.25;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    color: var(--navy);
}

.about-floating-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(22,44,81,0.76);
}

.about-floating-card.card-top {
    top: 42px;
    right: 24px;
}

.about-floating-card.card-bottom {
    right: 24px;
    bottom: 42px;
}
.about-mini-timeline {
    
    
    display: grid;
    gap: 16px;
    padding: 22px 22px;
    border-radius: 26px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(22,44,81,0.08);
    box-shadow: 0 18px 40px rgba(22,44,81,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mini-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 14px;
    align-items: start;
}

.mini-timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 20px;
    bottom: -16px;
    width: 1px;
    background: rgba(22,44,81,0.10);
}

.mini-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(171,38,55,0.08);
    margin-top: 3px;
    position: relative;
    z-index: 2;
}

.mini-timeline-item small {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(171,38,55,0.78);
}

.mini-timeline-item p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(22,44,81,0.78);
}
.about-copy {
    position: relative;
    z-index: 2;
}

.section-title {
    margin-top: 14px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--navy);
    max-width: 720px;
}

.about-text {
    margin-top: 24px;
    max-width: 620px;
    font-size: 17px;
    line-height: 1.95;
    color: var(--text);
}

.about-points {
    display: grid;
    gap: 18px;
    margin-top: 34px;
    max-width: 620px;
}

.about-point {
    display: grid;
    grid-template-columns: 12px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(22,44,81,0.08);
    box-shadow: 0 14px 30px rgba(22,44,81,0.05);
}

.about-point span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    margin-top: 7px;
    box-shadow: 0 0 0 6px rgba(171,38,55,0.08);
}

.about-point strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}

.about-point p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(22,44,81,0.74);
}

.about-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
}

.about-bg-orb.orb-a {
    width: 220px;
    height: 220px;
    background: rgba(255,255,143,0.24);
    top: 20px;
    right: -80px;
}

.about-bg-orb.orb-b {
    width: 260px;
    height: 260px;
    background: rgba(171,38,55,0.06);
    left: -100px;
    bottom: 30px;
}

/* SERVICES */
.services-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.services-heading {
    position: relative;
    z-index: 2;
}

.services-heading-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: start;
}

.services-intro {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.95;
    color: var(--text);
    padding-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 46px;
}

.service-card {
    position: relative;
    padding: 28px 26px;
    border-radius: 28px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(22,44,81,0.08);
    box-shadow: 0 18px 40px rgba(22,44,81,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(22,44,81,0.10);
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(255,255,143,0.42);
    border: 1px solid rgba(22,44,81,0.06);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--red);
}

.service-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 14px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(22,44,81,0.76);
}

.service-feature {
    margin-top: 30px;
    padding: 34px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,245,239,0.96)),
        radial-gradient(circle at 15% 20%, rgba(255,255,143,0.18), transparent 26%);
    border: 1px solid rgba(22,44,81,0.08);
    box-shadow: 0 26px 70px rgba(22,44,81,0.08);
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: start;
}

.service-feature-copy small {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(171,38,55,0.74);
}

.service-feature-copy h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--navy);
    max-width: 520px;
}

.service-feature-copy p {
    margin-top: 18px;
    max-width: 480px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}

.service-feature-list {
    display: grid;
    gap: 16px;
}

.feature-item {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(22,44,81,0.08);
    box-shadow: 0 12px 28px rgba(22,44,81,0.05);
}

.feature-item span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    margin-top: 7px;
    box-shadow: 0 0 0 6px rgba(171,38,55,0.08);
}

.feature-item p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(22,44,81,0.78);
}

.services-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(28px);
    pointer-events: none;
}

.services-bg-orb.orb-1 {
    width: 220px;
    height: 220px;
    background: rgba(255,255,143,0.24);
    top: 40px;
    left: -80px;
}

.services-bg-orb.orb-2 {
    width: 260px;
    height: 260px;
    background: rgba(171,38,55,0.06);
    right: -100px;
    bottom: 60px;
}
.service-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 30px rgba(171,38,55,0.20);
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    width: fit-content;
}

.service-info-btn:hover {
    transform: translateY(-2px);
    background: #bc3042;
    box-shadow: 0 18px 38px rgba(171,38,55,0.25);
}

.service-info-btn:active {
    transform: translateY(0);
}

.service-info-btn:focus-visible {
    outline: 2px solid rgba(22,44,81,0.18);
    outline-offset: 4px;
}

/* REVIEW */
.review-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.review-heading-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: start;
}

.review-intro {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.95;
    color: var(--text);
    padding-top: 10px;
}

.review-slider {
    position: relative;
    margin-top: 46px;
    overflow: hidden;
    border-radius: 34px;
}

.review-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}

.review-card {
    min-width: 100%;
    padding: 42px 38px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,245,239,0.96)),
        radial-gradient(circle at 18% 18%, rgba(255,255,143,0.16), transparent 22%);
    border: 1px solid rgba(22,44,81,0.08);
    box-shadow: 0 24px 70px rgba(22,44,81,0.08);
}

.review-quote-mark {
    font-family: "Cormorant Garamond", serif;
    font-size: 84px;
    line-height: 0.8;
    color: rgba(171,38,55,0.28);
    margin-bottom: 10px;
}

.review-text {
    max-width: 820px;
    font-size: 20px;
    line-height: 1.9;
    color: rgba(22,44,81,0.80);
}

.review-author {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-author strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}

.review-author span {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(171,38,55,0.72);
}

.review-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(22,44,81,0.16);
    cursor: pointer;
    transition: 0.35s ease;
}

.review-dot.active {
    width: 34px;
    background: var(--red);
}

.review-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(28px);
    pointer-events: none;
}

.review-bg-orb.orb-1 {
    width: 220px;
    height: 220px;
    background: rgba(255,255,143,0.22);
    top: 20px;
    right: -80px;
}

.review-bg-orb.orb-2 {
    width: 260px;
    height: 260px;
    background: rgba(171,38,55,0.06);
    left: -100px;
    bottom: 40px;
}

/* FOOTER */
.site-footer {
    position: relative;
    padding: 110px 0 34px;
    overflow: hidden;
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: end;
    padding: 34px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,245,239,0.96)),
        radial-gradient(circle at 18% 18%, rgba(255,255,143,0.18), transparent 24%);
    border: 1px solid rgba(22,44,81,0.08);
    box-shadow: 0 24px 70px rgba(22,44,81,0.08);
}

.footer-main h2 {
    margin-top: 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--navy);
}

.footer-main p {
    max-width: 560px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}

.footer-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(171,38,55,0.74);
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.footer-link-card {
    width: 100%;
    padding: 18px 22px;
    border-radius: 24px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(22,44,81,0.08);
    box-shadow: 0 14px 30px rgba(22,44,81,0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.footer-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(22,44,81,0.08);
    border-color: rgba(171,38,55,0.16);
}

.footer-link-kicker {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(171,38,55,0.74);
}

.footer-link-card strong {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    color: var(--navy);
    word-break: break-word;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 30px rgba(171,38,55,0.20);
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.footer-whatsapp-btn:hover {
    transform: translateY(-2px);
    background: #bc3042;
    box-shadow: 0 18px 38px rgba(171,38,55,0.25);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 0 6px;
}

.footer-bottom p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(22,44,81,0.62);
}

.footer-bottom strong {
    color: var(--navy);
    font-weight: 600;
}

.footer-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(28px);
    pointer-events: none;
}

.footer-bg-orb.orb-1 {
    width: 220px;
    height: 220px;
    background: rgba(255,255,143,0.18);
    top: 10px;
    left: -80px;
}

.footer-bg-orb.orb-2 {
    width: 260px;
    height: 260px;
    background: rgba(171,38,55,0.06);
    right: -100px;
    bottom: 10px;
}
.footer-instagram-card {
    color: var(--navy);
}

.footer-social-inline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,143,0.42);
    border: 1px solid rgba(22,44,81,0.08);
    color: var(--red);
    flex-shrink: 0;
}

.footer-social-icon svg {
    width: 30px;
    height: 30px;
}

.footer-button-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(22,44,81,0.08);
    box-shadow: 0 14px 30px rgba(22,44,81,0.05);
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.footer-instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(22,44,81,0.08);
    border-color: rgba(171,38,55,0.16);
}

.footer-instagram-btn svg {
    width: 20px;
    height: 20px;
    color: var(--red);
    flex-shrink: 0;
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(26px);
    animation: fadeUp 1s cubic-bezier(.22,.61,.36,1) forwards;
}

.delay-1 {
    animation-delay: 0.12s;
}

.delay-2 {
    animation-delay: 0.24s;
}

.delay-3 {
    animation-delay: 0.36s;
}

.delay-4 {
    animation-delay: 0.48s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSoft {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes seedFloat {
    0%, 100% {
        transform: translateY(0) rotate(var(--rot, 0deg));
        opacity: 0.55;
    }
    50% {
        transform: translateY(-10px) rotate(calc(var(--rot, 0deg) + 5deg));
        opacity: 1;
    }
}

@keyframes floatWallA {
    0%, 100% {
        transform: translateY(0) rotate(-4deg);
    }
    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

@keyframes floatWallB {
    0%, 100% {
        transform: translateY(0) rotate(5deg);
    }
    50% {
        transform: translateY(-12px) rotate(7deg);
    }
}

@keyframes floatWallC {
    0%, 100% {
        transform: translateY(0) rotate(-3deg);
    }
    50% {
        transform: translateY(-9px) rotate(-1deg);
    }
}

/* RESPONSIVE */
@media (max-width: 1080px) {
    .hero-grid,
    .about-shell {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-card {
        min-height: 600px;
    }

    .hero-image-area,
    .photo-wall {
        min-height: 554px;
    }

    .about-visual-card {
        min-height: 580px;
    }
    .services-heading-grid,
    .service-feature {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-heading-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .nav,
    .header-actions .btn-outline {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding-top: 130px;
    }

    .floating-card.top {
        right: 10px;
        top: 20px;
    }

    .floating-card.bottom {
        left: 10px;
        bottom: 20px;
    }
    .footer-shell {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .hero {
        padding: 120px 0 70px;
    }

    .about-section {
        padding: 90px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-card {
        min-height: 520px;
        border-radius: 28px;
    }

    .hero-image-area,
    .photo-wall {
        min-height: 520px;
    }

    .hero-image-area {
        padding: 0;
    }

    .card-1 {
        width: 180px;
        height: 240px;
        top: 60px;
        left: 18px;
    }

    .card-2 {
        width: 130px;
        height: 160px;
        top: 30px;
        right: 18px;
    }

    .card-3 {
        width: 150px;
        height: 180px;
        bottom: 80px;
        right: 20px;
    }

    .card-4 {
        width: 120px;
        height: 145px;
        bottom: 115px;
        left: 8px;
    }

    .card-5 {
        width: 105px;
        height: 120px;
        top: 210px;
        right: 130px;
    }

    .photo-label-card {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }

    .hero-photo-placeholder,
    .floating-card {
        width: min(220px, 64vw);
    }

    .hero h1 .accent::after {
        height: 10px;
        bottom: 5px;
    }

    .about-visual-card {
        min-height: 500px;
        border-radius: 28px;
        padding: 18px;
    }

    .about-main-photo {
        inset: 18px 18px 120px 18px;
        border-radius: 24px;
    }

    .about-floating-card {
        max-width: none;
        left: 18px;
        right: 18px;
        padding: 16px 18px;
    }

    .about-floating-card.card-top {
        top: auto;
        bottom: 128px;
    }

    .about-floating-card.card-bottom {
        bottom: 18px;
    }

    .section-title {
        font-size: clamp(34px, 10vw, 48px);
    }

    .about-text {
        font-size: 16px;
        line-height: 1.85;
    }

    .about-point {
        border-radius: 20px;
    }

    .about-mini-timeline {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 18px;
        border-radius: 22px;
    }

    .mini-timeline-item p {
        font-size: 13px;
        line-height: 1.65;
    }
     .services-section {
        padding: 90px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 34px;
    }

    .service-card {
        padding: 24px 22px;
        border-radius: 22px;
    }

    .service-card h3 {
        font-size: 28px;
    }

    .services-intro {
        font-size: 16px;
        line-height: 1.85;
        padding-top: 0;
    }

    .service-feature {
        margin-top: 22px;
        padding: 24px 20px;
        border-radius: 24px;
        gap: 22px;
    }

    .service-feature-copy h3 {
        font-size: clamp(30px, 8vw, 40px);
    }

    .review-section {
        padding: 90px 0;
    }

    .review-intro {
        font-size: 16px;
        line-height: 1.85;
        padding-top: 0;
    }

    .review-slider {
        margin-top: 34px;
        border-radius: 24px;
    }

    .review-card {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .review-quote-mark {
        font-size: 64px;
        margin-bottom: 8px;
    }

    .review-text {
        font-size: 16px;
        line-height: 1.85;
    }

    .review-author {
        margin-top: 20px;
    }
    .site-footer {
        padding: 90px 0 28px;
    }

    .footer-shell {
        padding: 24px 20px;
        border-radius: 24px;
        gap: 24px;
    }

    .footer-main h2 {
        font-size: clamp(32px, 10vw, 44px);
    }

    .footer-main p {
        font-size: 15px;
        line-height: 1.85;
    }

    .footer-link-card {
        border-radius: 20px;
    }

    .footer-whatsapp-btn {
        width: 100%;
    }

    .footer-bottom {
        margin-top: 18px;
        gap: 8px;
    }

    .footer-bottom p {
        width: 100%;
    }
     .footer-button-row {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-whatsapp-btn,
    .footer-instagram-btn {
        width: 100%;
    }
}

