:root {
    --blue: #a8d8ea;
    --blue-deep: #76b7d2;
    --cream: #f9f7f2;
    --yellow: #ffffd2;
    --pink: #fce1e5;
    --mint: #dff3ec;
    --ink: #2f3134;
    --muted: #747474;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(47, 49, 52, 0.08);
    --ease: all 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

@keyframes rise {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Trebuchet MS', 'Aptos', sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

h1, h2, h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.08;
}

a {
    color: inherit;
    text-decoration: none;
}

header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 1.35rem clamp(1.25rem, 4vw, 4rem);
    position: fixed;
    top: 0;
    transition: var(--ease);
    width: 100%;
    z-index: 10;
}

header.scrolled {
    background: rgba(249, 247, 242, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 35px rgba(47, 49, 52, 0.06);
    padding-block: 0.75rem;
}

.brand img {
    height: 44px;
    object-fit: contain;
    width: 150px;
}

nav ul {
    display: flex;
    gap: clamp(1rem, 3vw, 3rem);
    list-style: none;
}

nav a {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--blue-deep);
}

.hero {
    align-items: center;
    display: grid;
    min-height: 100vh;
    overflow: hidden;
    padding: 8rem 1.25rem 4rem;
    place-items: center;
    position: relative;
}

.hero-image {
    background: linear-gradient(rgba(47, 49, 52, 0.16), rgba(47, 49, 52, 0.2)), url('assets/hero.webp') center/cover no-repeat;
    inset: 0;
    position: absolute;
    transform: scale(1.04);
    transition: transform 1.8s ease;
    z-index: -2;
}

.hero:hover .hero-image {
    transform: scale(1);
}

.halo {
    border-radius: 999px;
    filter: blur(45px);
    opacity: 0.62;
    position: absolute;
    z-index: -1;
}

.halo-one {
    animation: float 7s ease-in-out infinite;
    background: var(--yellow);
    height: 120px;
    left: 9%;
    top: 17%;
    width: 120px;
}

.halo-two {
    animation: float 8s ease-in-out infinite reverse;
    background: var(--blue);
    bottom: 18%;
    height: 170px;
    right: 12%;
    width: 170px;
}

.hero-content {
    animation: rise 1.1s ease both;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 34px;
    box-shadow: 0 30px 90px rgba(47, 49, 52, 0.14);
    color: var(--white);
    max-width: 850px;
    padding: clamp(2rem, 5vw, 4.5rem);
    text-align: center;
}

.hero h1 {
    font-size: clamp(3.2rem, 8vw, 6.8rem);
    margin: 0.6rem 0 1.2rem;
}

.hero p:not(.eyebrow) {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0 auto 2rem;
    max-width: 650px;
}

.eyebrow {
    color: var(--blue-deep);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--white);
}

.btn {
    background: var(--ink);
    border-radius: 999px;
    color: var(--white);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 1rem 1.65rem;
    text-transform: uppercase;
    transition: var(--ease);
}

.btn:hover {
    background: var(--blue-deep);
    box-shadow: 0 14px 35px rgba(47, 49, 52, 0.14);
    transform: translateY(-4px);
}

section {
    padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4rem);
}

.section-title {
    margin: 0 auto clamp(2.5rem, 6vw, 5rem);
    max-width: 780px;
    text-align: center;
}

.section-title h2 {
    font-size: clamp(2.35rem, 5vw, 4.4rem);
    margin: 0.5rem 0 1rem;
}

.section-title p:last-child {
    color: var(--muted);
}

.intro-strip {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 2rem;
}

.intro-strip article {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(47, 49, 52, 0.06);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 2rem;
}

.intro-strip span {
    color: var(--blue-deep);
    font-weight: 700;
}

.intro-strip h2 {
    font-size: 1.65rem;
    margin: 0.7rem 0;
}

.intro-strip p,
.about-copy p,
.ritual-copy p,
.product-copy span,
.collection-info strong {
    color: var(--muted);
}

.about-grid,
.ritual {
    align-items: center;
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    max-width: 1180px;
}

.about-image img,
.ritual img {
    border-radius: 34px;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.about-copy p + p {
    margin-top: 1.25rem;
}

.signature-card {
    background: var(--white);
    border-left: 6px solid var(--blue);
    border-radius: 24px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
    padding: 1.5rem;
}

.signature-card span {
    color: var(--blue-deep);
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
