:root {
    --color-cream: #f7efe5;
    --color-cream-light: #fffaf4;
    --color-sand: #ead6c0;
    --color-terracotta: #a95f43;
    --color-terracotta-dark: #7f442f;
    --color-brown: #3a2a22;
    --color-brown-soft: #6c584c;
    --color-white-alpha: rgba(255, 250, 244, 0.72);
    --color-border: rgba(127, 68, 47, 0.2);
    --shadow-soft: 0 26px 70px rgba(58, 42, 34, 0.14);
    --shadow-card: 0 18px 50px rgba(58, 42, 34, 0.1);
    --font-title: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --font-body: Inter, Avenir, Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --header-height: 82px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--color-brown);
    font-family: var(--font-body);
    background:
        radial-gradient(circle at 20% 15%, rgba(169, 95, 67, 0.16), transparent 34%),
        radial-gradient(circle at 82% 16%, rgba(234, 214, 192, 0.85), transparent 32%),
        linear-gradient(135deg, var(--color-cream-light), var(--color-cream));
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(127, 68, 47, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127, 68, 47, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, black, transparent 72%);
}

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

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 20;
    padding: 10px 14px;
    color: var(--color-cream-light);
    background: var(--color-brown);
    border-radius: 999px;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(20px, 5vw, 72px);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 10px clamp(12px, 3vw, 34px);
    z-index: -1;
    background: rgba(255, 250, 244, 0.58);
    border: 1px solid rgba(127, 68, 47, 0.14);
    border-radius: 999px;
    box-shadow: 0 16px 46px rgba(58, 42, 34, 0.08);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-title);
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.brand__mark {
    position: relative;
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(127, 68, 47, 0.38);
    border-radius: 50%;
}

.brand__mark::before,
.brand__mark::after,
.brand__mark span {
    content: "";
    position: absolute;
    border: 1.5px solid var(--color-terracotta);
    border-radius: 50% 50% 50% 0;
    transform-origin: center;
}

.brand__mark::before {
    width: 18px;
    height: 18px;
    transform: translateY(1px) rotate(45deg);
}

.brand__mark::after {
    width: 18px;
    height: 18px;
    transform: translateX(-5px) translateY(4px) rotate(18deg);
    opacity: 0.72;
}

.brand__mark span {
    width: 18px;
    height: 18px;
    transform: translateX(5px) translateY(4px) rotate(72deg);
    opacity: 0.72;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 3vw, 34px);
    color: var(--color-brown-soft);
    font-size: 0.94rem;
    font-weight: 600;
}

.site-nav a {
    position: relative;
    padding: 8px 0;
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: var(--color-terracotta);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.landing {
    min-height: 100vh;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    padding: calc(var(--header-height) + 36px) clamp(20px, 5vw, 72px) 44px;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    right: -12vw;
    bottom: -28vh;
    width: 62vw;
    height: 62vw;
    min-width: 520px;
    min-height: 520px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(169, 95, 67, 0.18), transparent 67%);
    border-radius: 50%;
}

.hero__visual {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center end;
    padding-right: clamp(0px, 6vw, 90px);
    pointer-events: none;
}

.hero-symbol {
    width: min(58vw, 720px);
    min-width: 430px;
    opacity: 0.9;
    filter: drop-shadow(0 36px 60px rgba(58, 42, 34, 0.11));
    animation: symbol-float 12s ease-in-out infinite;
}

.symbol__aura {
    fill: rgba(255, 250, 244, 0.48);
    stroke: rgba(169, 95, 67, 0.16);
    stroke-width: 1;
    transform-origin: center;
    animation: aura-breathe 7s ease-in-out infinite;
}

.symbol__ring {
    fill: none;
    stroke: rgba(127, 68, 47, 0.32);
    stroke-width: 1.25;
    stroke-dasharray: 7 15;
    transform-box: fill-box;
    transform-origin: center;
}

.symbol__ring--outer {
    animation: ring-turn 32s linear infinite;
}

.symbol__ring--inner {
    stroke: rgba(169, 95, 67, 0.38);
    stroke-dasharray: 4 11;
    animation: ring-turn-reverse 22s linear infinite;
}

.symbol__line,
.symbol__petal {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.symbol__line {
    stroke: rgba(127, 68, 47, 0.18);
    stroke-width: 1.2;
    animation: draw-line 3.4s ease forwards;
}

.symbol__line--two {
    animation-delay: 0.45s;
}

.symbol__petal {
    stroke: rgba(127, 68, 47, 0.68);
    stroke-width: 2.2;
    animation: draw-line 2.9s ease forwards, petal-glow 8s ease-in-out infinite;
}

.symbol__petal--one {
    animation-delay: 0.2s, 3.2s;
}

.symbol__petal--two {
    animation-delay: 0.45s, 3.4s;
}

.symbol__petal--three {
    animation-delay: 0.7s, 3.6s;
}

.symbol__petal--four {
    animation-delay: 0.95s, 3.8s;
}

.symbol__petal--five {
    animation-delay: 1.2s, 4s;
}

.symbol__nodes circle {
    fill: var(--color-terracotta);
    opacity: 0;
    transform-origin: center;
    animation: node-appear 0.6s ease forwards, node-pulse 5s ease-in-out infinite;
}

.symbol__nodes circle:nth-child(1) {
    animation-delay: 2.2s, 3.4s;
}

.symbol__nodes circle:nth-child(2) {
    animation-delay: 2.35s, 3.8s;
}

.symbol__nodes circle:nth-child(3) {
    animation-delay: 2.5s, 4.2s;
}

.symbol__nodes circle:nth-child(4) {
    animation-delay: 2.65s, 4.6s;
}

.symbol__nodes circle:nth-child(5) {
    animation-delay: 2.8s, 5s;
}

.symbol__nodes circle:nth-child(6) {
    animation-delay: 2.95s, 5.4s;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(680px, 100%);
    padding-top: 24px;
}

.hero__eyebrow {
    width: fit-content;
    margin: 0 0 22px;
    padding: 9px 15px;
    color: var(--color-terracotta-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(255, 250, 244, 0.72);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    box-shadow: 0 12px 34px rgba(58, 42, 34, 0.07);
    backdrop-filter: blur(12px);
}

.hero__title {
    max-width: 780px;
    margin: 0;
    font-family: var(--font-title);
    font-size: clamp(4.3rem, 9vw, 9.6rem);
    font-weight: 500;
    line-height: 0.84;
    letter-spacing: -0.06em;
}

.hero__title span {
    display: block;
    color: var(--color-terracotta-dark);
    font-style: italic;
}

.hero__text {
    max-width: 610px;
    margin: 30px 0 0;
    color: var(--color-brown-soft);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 24px;
    font-weight: 800;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--primary {
    color: var(--color-cream-light);
    background: var(--color-terracotta-dark);
    box-shadow: 0 18px 34px rgba(127, 68, 47, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: var(--color-brown);
    box-shadow: 0 22px 42px rgba(58, 42, 34, 0.22);
}

.button--secondary {
    color: var(--color-terracotta-dark);
    background: rgba(255, 250, 244, 0.54);
    border: 1px solid rgba(127, 68, 47, 0.26);
    backdrop-filter: blur(14px);
}

.button--secondary:hover,
.button--secondary:focus-visible {
    border-color: rgba(127, 68, 47, 0.44);
    background: rgba(255, 250, 244, 0.82);
}

.quick-access {
    position: relative;
    z-index: 3;
    align-self: end;
    width: min(1040px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: clamp(52px, 8vh, 94px);
}

.quick-card {
    min-height: 158px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "icon title"
        "icon text";
    column-gap: 16px;
    align-items: start;
    padding: 24px;
    background: var(--color-white-alpha);
    border: 1px solid rgba(127, 68, 47, 0.16);
    border-radius: 30px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.quick-card:hover,
.quick-card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(127, 68, 47, 0.34);
    box-shadow: var(--shadow-soft);
}

.quick-card__icon {
    grid-area: icon;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--color-terracotta-dark);
    background: rgba(169, 95, 67, 0.1);
    border: 1px solid rgba(169, 95, 67, 0.16);
    border-radius: 18px;
}

.quick-card__icon svg {
    width: 30px;
    height: 30px;
}

.quick-card__icon path,
.quick-card__icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quick-card strong {
    grid-area: title;
    margin-top: 1px;
    font-family: var(--font-title);
    font-size: 1.7rem;
    line-height: 1;
}

.quick-card > span:last-child {
    grid-area: text;
    margin-top: 9px;
    color: var(--color-brown-soft);
    font-size: 0.96rem;
    line-height: 1.55;
}

@keyframes symbol-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0, -14px, 0) rotate(1.5deg);
    }
}

@keyframes aura-breathe {
    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.64;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

@keyframes ring-turn {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ring-turn-reverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes petal-glow {
    0%,
    100% {
        stroke: rgba(127, 68, 47, 0.54);
    }

    50% {
        stroke: rgba(169, 95, 67, 0.86);
    }
}

@keyframes node-appear {
    from {
        opacity: 0;
        transform: scale(0.35);
    }

    to {
        opacity: 0.72;
        transform: scale(1);
    }
}

@keyframes node-pulse {
    0%,
    100% {
        opacity: 0.48;
        transform: scale(0.94);
    }

    50% {
        opacity: 0.92;
        transform: scale(1.16);
    }
}

@media (max-width: 980px) {
    .site-header {
        height: auto;
        min-height: var(--header-height);
    }

    .hero {
        padding-top: 126px;
    }

    .hero__visual {
        place-items: start center;
        padding: 80px 0 0;
        opacity: 0.58;
    }

    .hero-symbol {
        width: 700px;
        max-width: none;
        min-width: 0;
        transform: translateX(18%);
    }

    .hero__content {
        max-width: 720px;
    }

    .quick-access {
        grid-template-columns: 1fr;
        max-width: 640px;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 76px;
    }

    .site-header {
        align-items: flex-start;
        padding: 16px 18px;
    }

    .site-header::before {
        inset: 8px 10px;
        border-radius: 28px;
    }

    .brand {
        font-size: 1.65rem;
    }

    .brand__mark {
        width: 34px;
        height: 34px;
    }

    .site-nav {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 124px 18px 28px;
    }

    .hero__visual {
        top: 22px;
        bottom: auto;
        height: 440px;
        opacity: 0.44;
    }

    .hero-symbol {
        width: 540px;
        transform: translateX(24%);
    }

    .hero__eyebrow {
        margin-bottom: 18px;
        font-size: 0.7rem;
    }

    .hero__title {
        font-size: clamp(4rem, 18vw, 6rem);
        line-height: 0.88;
    }

    .hero__text {
        margin-top: 24px;
        font-size: 1.02rem;
        line-height: 1.65;
    }

    .hero__actions {
        display: grid;
        margin-top: 28px;
    }

    .button {
        width: 100%;
    }

    .quick-access {
        margin-top: 44px;
        gap: 12px;
    }

    .quick-card {
        min-height: auto;
        padding: 20px;
        border-radius: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .symbol__line,
    .symbol__petal {
        stroke-dashoffset: 0;
    }

    .symbol__nodes circle {
        opacity: 0.72;
    }
}