:root {
    --sand-50: #f8f4ed;
    --sand-100: #f0e6da;
    --sand-200: #e5d7c4;
    --amber-500: #d4af7a;
    --amber-600: #c19869;
    --amber-800: #7c5536;
    --bronze-900: #4a2f1a;
    --text-dark: #35271d;
    --text-muted: #6f5a4a;
    --accent-gradient: linear-gradient(130deg, rgba(212, 175, 122, 0.95), rgba(124, 85, 54, 0.95));
    --soft-gradient: linear-gradient(145deg, rgba(252, 247, 238, 0.95), rgba(234, 219, 198, 0.9));
}

body,
header,
.hero,
main section:not(.hero) > .container,
.countdown-card,
.timer-box,
.letter,
.secret-card,
.secret-message,
.promise-card,
footer,
.language-select,
.theme-toggle {
    transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: 'Cairo', 'Tahoma', sans-serif;
    background: var(--sand-50);
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(212, 175, 122, 0.18), transparent 52%),
        linear-gradient(180deg, rgba(244, 233, 217, 0.4), rgba(248, 244, 237, 0.85));
    color: var(--text-dark);
    line-height: 1.9;
    letter-spacing: 0.01em;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 10% 90%, rgba(212, 175, 122, 0.16), transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(124, 85, 54, 0.16), transparent 62%);
    mix-blend-mode: screen;
    opacity: 0.8;
    pointer-events: none;
    z-index: -2;
}

.floating-icons {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-icons span {
    position: absolute;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(56px, 8vw, 72px);
    height: clamp(56px, 8vw, 72px);
    border-radius: 28px;
    background: rgba(248, 244, 237, 0.62);
    box-shadow: 0 18px 36px rgba(74, 47, 29, 0.18);
    color: var(--bronze-900);
    animation: floatIcon 9s ease-in-out infinite;
    opacity: 0.75;
    backdrop-filter: blur(12px);
    line-height: 1;
}

.floating-icons span:nth-child(odd) {
    background: rgba(235, 219, 198, 0.5);
    animation-duration: 11s;
}

.floating-icons span:nth-child(3n) {
    opacity: 0.55;
    animation-duration: 13s;
}

@keyframes floatIcon {
    0% {
        transform: translate3d(-6px, 12px, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(6px, -16px, 0) rotate(6deg);
    }
    100% {
        transform: translate3d(-6px, 12px, 0) rotate(0deg);
    }
}

.floating-icons span:nth-child(1) {
    left: 6%;
    top: 18%;
    animation-delay: -2s;
}

.floating-icons span:nth-child(2) {
    left: 22%;
    top: 68%;
    animation-delay: -5s;
}

.floating-icons span:nth-child(3) {
    left: 38%;
    top: 12%;
    animation-delay: -8s;
}

.floating-icons span:nth-child(4) {
    left: 54%;
    top: 72%;
    animation-delay: -3s;
}

.floating-icons span:nth-child(5) {
    left: 70%;
    top: 20%;
    animation-delay: -7s;
}

.floating-icons span:nth-child(6) {
    left: 82%;
    top: 68%;
    animation-delay: -11s;
}

.floating-icons span:nth-child(7) {
    left: 12%;
    top: 42%;
    animation-delay: -9s;
}

.floating-icons span:nth-child(8) {
    left: 48%;
    top: 38%;
    animation-delay: -4s;
}

.floating-icons span:nth-child(9) {
    left: 66%;
    top: 52%;
    animation-delay: -10s;
}

.floating-icons span:nth-child(10) {
    left: 86%;
    top: 34%;
    animation-delay: -6s;
}

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

header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(248, 244, 237, 0.82);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(212, 175, 122, 0.2);
    box-shadow: 0 18px 30px rgba(74, 49, 28, 0.06);
}

.container {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: var(--amber-800);
}

.brand span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(247, 235, 215, 0.9), rgba(212, 175, 122, 0.9));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    color: var(--bronze-900);
    font-size: 1.35rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 26px;
    margin: 0;
    padding: 0;
    font-weight: 600;
    color: var(--text-muted);
}

nav a {
    position: relative;
    padding-bottom: 6px;
    color: inherit;
    transition: color 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.9), rgba(124, 85, 54, 0.9));
    border-radius: 999px;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--text-dark);
}

.controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(247, 235, 215, 0.7));
    color: var(--amber-800);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 122, 0.35);
}

.theme-toggle:focus-visible,
.language-select:focus-visible {
    outline: 2px solid rgba(212, 175, 122, 0.6);
    outline-offset: 2px;
}

.language-select {
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 122, 0.4);
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 235, 215, 0.8));
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
}

main {
    padding-bottom: 140px;
}
.hero {
    margin-top: 64px;
    border-radius: 48px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.84), rgba(239, 224, 206, 0.94));
    box-shadow: 0 42px 88px rgba(74, 49, 28, 0.18);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(0px);
    opacity: 0.55;
}

.hero::before {
    width: 320px;
    height: 320px;
    background: rgba(212, 175, 122, 0.28);
    top: -160px;
    left: -140px;
}

.hero::after {
    width: 380px;
    height: 380px;
    background: rgba(124, 85, 54, 0.18);
    bottom: -180px;
    right: -150px;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: clamp(56px, 8vw, 110px);
    display: grid;
    gap: clamp(36px, 6vw, 48px);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.hero-visual img {
    width: 100%;
    border-radius: 36px;
    box-shadow: 0 32px 64px rgba(74, 47, 29, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.55);
    display: block;
}

.hero-texts {
    max-width: 600px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(247, 235, 215, 0.7));
    color: var(--amber-800);
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(212, 175, 122, 0.35);
}

.hero-title {
    margin: 24px 0 0;
    font-size: clamp(2.6rem, 4.4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--bronze-900);
}

.hero-title span {
    color: var(--amber-500);
}

.hero-lead {
    color: var(--text-muted);
    font-size: 1.12rem;
    margin: 22px 0 36px;
    max-width: 54ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-actions a.primary {
    background: var(--accent-gradient);
    color: #fff8f0;
    box-shadow: 0 18px 32px rgba(74, 47, 29, 0.28);
}

.hero-actions a.secondary {
    background: rgba(255, 255, 255, 0.85);
    color: var(--amber-800);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 122, 0.4);
}

.hero-actions a:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(74, 47, 29, 0.22);
}

section {
    padding: clamp(80px, 12vw, 140px) 0;
    position: relative;
}

section:nth-of-type(even) {
    background: transparent;
}

section:nth-of-type(even)::before {
    content: "";
    position: absolute;
    inset: 10% 5% auto 5%;
    height: 80%;
    border-radius: 60px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
    filter: blur(0.5px);
    opacity: 0.4;
    pointer-events: none;
}

main section:not(.hero) > .container {
    position: relative;
    z-index: 1;
    padding: clamp(44px, 7vw, 82px);
    border-radius: 48px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(246, 236, 221, 0.74));
    box-shadow: 0 40px 90px rgba(58, 36, 20, 0.1);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

h2 {
    margin: 0 0 24px;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    color: var(--bronze-900);
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 82px;
    height: 4px;
    margin-top: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(183, 122, 69, 0.8), rgba(90, 58, 31, 0.8));
}

p {
    margin: 0 0 18px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.love-letter {
    display: grid;
    gap: 28px;
}

.love-letter .highlight {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--amber-500);
    line-height: 1.6;
}

.poetry-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

blockquote {
    margin: 0;
    padding: 32px;
    border-radius: 32px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(246, 236, 221, 0.78));
    box-shadow: 0 26px 48px rgba(74, 47, 29, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    font-family: 'Scheherazade New', serif;
    font-size: 1.3rem;
    line-height: 2;
    position: relative;
}

blockquote::before {
    content: "\201C";
    position: absolute;
    font-size: 3.6rem;
    color: rgba(212, 175, 122, 0.35);
    top: -28px;
    right: 26px;
}

.promise-card {
    border-radius: 36px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(247, 235, 215, 0.75));
    box-shadow: 0 28px 60px rgba(74, 47, 29, 0.14);
    padding: clamp(36px, 6vw, 58px);
    display: grid;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
}

.promise-card ul {
    margin: 0;
    padding: 0 22px;
    font-size: 1.08rem;
    color: var(--text-muted);
}

.promise-card ul li + li {
    margin-top: 10px;
}

.countdown-card {
    border-radius: 34px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(244, 231, 210, 0.78));
    box-shadow: 0 28px 60px rgba(74, 47, 29, 0.14);
    padding: clamp(36px, 6vw, 58px);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
}

.timer-display {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-top: 28px;
}

.timer-box {
    min-width: 120px;
    padding: 20px 22px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(235, 219, 198, 0.7));
    box-shadow: inset 0 0 0 1px rgba(212, 175, 122, 0.28), 0 14px 26px rgba(74, 47, 29, 0.08);
}

.timer-box span {
    display: block;
}

.timer-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bronze-900);
}

.timer-label {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.letter {
    border-radius: 36px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(247, 235, 215, 0.78));
    box-shadow: 0 28px 60px rgba(74, 47, 29, 0.14);
    padding: clamp(36px, 6vw, 58px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
}

.secret-card {
    border-radius: 36px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(247, 235, 215, 0.8));
    box-shadow: 0 32px 64px rgba(74, 47, 29, 0.16);
    padding: clamp(36px, 6vw, 58px);
    display: grid;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(16px);
}

.secret-form {
    display: grid;
    gap: 12px;
}

.secret-input-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.secret-input-group input {
    flex: 1 1 220px;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 122, 0.35);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    font-size: 1rem;
}

.secret-input-group button {
    padding: 14px 24px;
    border-radius: 18px;
    border: none;
    background: var(--accent-gradient);
    color: #fff8f0;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 16px 28px rgba(74, 47, 29, 0.24);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.secret-input-group button:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 38px rgba(74, 47, 29, 0.22);
}

.secret-message {
    border-radius: 26px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.82), rgba(240, 226, 208, 0.72));
    padding: 26px;
    line-height: 1.9;
    box-shadow: inset 0 0 0 1px rgba(212, 175, 122, 0.32);
}

.secret-message--visible {
    animation: fadeIn 0.5s ease forwards;
}

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

footer {
    background: linear-gradient(160deg, rgba(34, 23, 18, 0.94), rgba(70, 44, 28, 0.9));
    color: #fdf7ef;
    padding: 48px 0;
    border-top: 1px solid rgba(212, 175, 122, 0.25);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(212, 175, 122, 0.18), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.footer-emblem {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(247, 235, 215, 0.22), rgba(212, 175, 122, 0.3));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fdf7ef;
}

.footer-title {
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: 0.12em;
}

.footer-subtitle {
    margin: 0;
    font-size: 1rem;
    color: rgba(253, 247, 239, 0.8);
}

.footer-note {
    margin: 12px 0 0;
    font-size: 0.95rem;
    color: rgba(253, 247, 239, 0.72);
}
body.dark {
    --text-dark: #f5ecdd;
    --text-muted: #d2c0ad;
    --bronze-900: #f7e7d3;
    --amber-500: #f0c987;
    --amber-600: #e0b374;
    --amber-800: #f4d4a1;
    --accent-gradient: linear-gradient(130deg, rgba(240, 201, 135, 0.95), rgba(182, 128, 76, 0.95));
    background: #1f1814;
    background-image: radial-gradient(circle at 20% 20%, rgba(90, 66, 48, 0.45), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(126, 88, 58, 0.28), transparent 52%),
        linear-gradient(180deg, rgba(28, 22, 18, 0.8), rgba(34, 26, 21, 0.92));
    color: var(--text-dark);
}

body.dark::before {
    background: radial-gradient(circle at 10% 90%, rgba(182, 128, 76, 0.22), transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(114, 78, 52, 0.22), transparent 62%);
    mix-blend-mode: normal;
    opacity: 0.45;
}

body.dark header {
    background: rgba(36, 28, 22, 0.92);
    border-bottom: 1px solid rgba(240, 201, 135, 0.25);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.4);
}

body.dark .brand span {
    background: linear-gradient(135deg, rgba(64, 48, 37, 0.9), rgba(126, 88, 58, 0.9));
    color: #f8ecdd;
    box-shadow: inset 0 0 0 1px rgba(240, 201, 135, 0.25);
}

body.dark nav ul {
    color: #dcc9b7;
}

body.dark nav a:hover {
    color: #fff1e2;
}

body.dark .theme-toggle {
    background: linear-gradient(135deg, rgba(58, 44, 34, 0.92), rgba(42, 32, 25, 0.9));
    color: #f5e6d2;
    box-shadow: inset 0 0 0 1px rgba(240, 201, 135, 0.3);
}

body.dark .language-select {
    background: linear-gradient(135deg, rgba(52, 39, 30, 0.92), rgba(36, 27, 21, 0.9));
    color: #f5e6d2;
    border-color: rgba(240, 201, 135, 0.3);
}

body.dark .hero {
    background: linear-gradient(140deg, rgba(43, 32, 25, 0.96), rgba(30, 23, 19, 0.95));
    box-shadow: 0 42px 88px rgba(0, 0, 0, 0.45);
    border-color: rgba(240, 201, 135, 0.18);
}

body.dark .floating-icons span {
    background: rgba(48, 36, 28, 0.68);
    color: #f4e7d4;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

body.dark .hero::before {
    background: rgba(182, 128, 76, 0.22);
}

body.dark .hero::after {
    background: rgba(98, 68, 46, 0.22);
}

body.dark .hero-actions a.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #f8ecdd;
    box-shadow: inset 0 0 0 1px rgba(240, 201, 135, 0.45);
}

body.dark section:nth-of-type(even)::before {
    background: radial-gradient(circle at 20% 20%, rgba(86, 64, 47, 0.35), rgba(86, 64, 47, 0));
}

body.dark main section:not(.hero) > .container {
    background: linear-gradient(150deg, rgba(42, 31, 24, 0.95), rgba(30, 23, 19, 0.88));
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
    border-color: rgba(240, 201, 135, 0.18);
}

body.dark blockquote {
    background: linear-gradient(150deg, rgba(46, 34, 27, 0.92), rgba(34, 25, 20, 0.85));
    border-color: rgba(240, 201, 135, 0.18);
    box-shadow: 0 26px 48px rgba(0, 0, 0, 0.45);
}

body.dark blockquote::before {
    color: rgba(240, 201, 135, 0.35);
}

body.dark .promise-card,
body.dark .letter,
body.dark .secret-card,
body.dark .secret-message,
body.dark .countdown-card {
    background: linear-gradient(160deg, rgba(44, 33, 26, 0.94), rgba(32, 24, 19, 0.9));
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45);
    border-color: rgba(240, 201, 135, 0.18);
}

body.dark .timer-box {
    background: linear-gradient(145deg, rgba(50, 37, 28, 0.92), rgba(38, 28, 22, 0.88));
    box-shadow: inset 0 0 0 1px rgba(240, 201, 135, 0.22), 0 14px 26px rgba(0, 0, 0, 0.35);
}

body.dark footer {
    background: linear-gradient(160deg, rgba(18, 13, 10, 0.96), rgba(32, 22, 16, 0.92));
    border-top-color: rgba(240, 201, 135, 0.2);
}

body.dark .footer-subtitle {
    color: rgba(253, 247, 239, 0.7);
}

body.dark .footer-note {
    color: rgba(253, 247, 239, 0.6);
}

html[dir="ltr"] nav a::after {
    left: 0;
    right: auto;
}

html[dir="ltr"] blockquote::before {
    left: 26px;
    right: auto;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: stretch;
    }

    nav ul {
        gap: 16px;
        font-size: 0.95rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .controls {
        justify-content: center;
    }

    .hero-actions a {
        width: 100%;
        justify-content: center;
    }

    blockquote {
        font-size: 1.2rem;
    }

    .timer-box {
        min-width: 120px;
    }

    section:nth-of-type(even)::before {
        display: none;
    }

    main section:not(.hero) > .container {
        padding: clamp(28px, 9vw, 48px);
    }

    .footer-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 540px) {
    body {
        font-size: 0.95rem;
    }

    .container {
        width: 92vw;
    }

    .brand {
        font-size: 1.25rem;
    }

    .brand span {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    nav ul {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.6rem);
    }

    .hero-lead,
    p {
        font-size: 1rem;
    }

    .hero-actions a {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    h2 {
        font-size: clamp(1.6rem, 6vw, 2.1rem);
    }

    blockquote {
        font-size: 1.05rem;
    }

    .timer-value {
        font-size: 1.8rem;
    }

    .timer-label {
        font-size: 0.85rem;
    }

    .floating-icons span {
        width: clamp(44px, 10vw, 56px);
        height: clamp(44px, 10vw, 56px);
        font-size: clamp(1.4rem, 6vw, 2.2rem);
    }
}
