:root {
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Inter", "Segoe UI", Arial, sans-serif;

    --text-xs: clamp(0.72rem, 0.7rem + 0.08vw, 0.78rem);
    --text-sm: clamp(0.84rem, 0.81rem + 0.12vw, 0.92rem);
    --text-base: clamp(0.94rem, 0.9rem + 0.16vw, 1rem);
    --text-md: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
    --text-lg: clamp(1.22rem, 1.08rem + 0.52vw, 1.5rem);
    --text-xl: clamp(1.75rem, 1.42rem + 1.12vw, 2.55rem);
    --text-section: clamp(1.9rem, 1.48rem + 1.42vw, 2.75rem);
    --text-display: clamp(2.5rem, 2rem + 2.1vw, 4rem);
    --text-hero: clamp(2.35rem, 1.52rem + 3vw, 4.65rem);
    --text-nav: clamp(0.7rem, 0.68rem + 0.08vw, 0.76rem);
    --text-button: clamp(0.82rem, 0.8rem + 0.1vw, 0.9rem);
    --text-label: clamp(0.82rem, 0.8rem + 0.08vw, 0.88rem);
    --text-field: clamp(0.9rem, 0.87rem + 0.1vw, 0.96rem);
    --text-error: clamp(0.76rem, 0.74rem + 0.08vw, 0.82rem);
    --text-footer: clamp(0.84rem, 0.81rem + 0.1vw, 0.9rem);

    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 20px;
    --space-lg: 32px;
    --space-xl: 56px;
    --space-xxl: 88px;

    --color-black: #050505;
    --color-dark: #111111;
    --color-dark-soft: #181818;
    --color-panel: #0c0c0c;
    --color-gold: #c9a45c;
    --color-gold-light: #e4c985;
    --color-white: #ffffff;
    --color-soft: #f4eee2;
    --color-muted: #b8b8b8;
    --color-muted-dark: #7a7a7a;
    --color-border: rgba(255, 255, 255, 0.12);
    --color-gold-border: rgba(201, 164, 92, 0.34);

    --shadow-deep: 0 34px 80px rgba(0, 0, 0, 0.58);
    --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.38);
    --shadow-gold: 0 16px 34px rgba(201, 164, 92, 0.18);
    --radius-lg: 8px;
    --radius-sm: 6px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-width: 0;
    overflow-x: hidden;
    color: var(--color-white);
    background:
        linear-gradient(180deg, #020202 0%, var(--color-black) 42%, #090806 100%),
        var(--color-black);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(90deg, rgba(201, 164, 92, 0.05), transparent 24%, transparent 76%, rgba(201, 164, 92, 0.035)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 18rem);
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 3px;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.section-pad {
    padding: clamp(64px, 7vw, var(--space-xxl)) 0;
}

p {
    margin: 0;
    color: rgba(244, 238, 226, 0.76);
    font-size: var(--text-base);
    line-height: 1.75;
}

h1,
h2,
h3,
.greek-brand {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0;
}

h1 {
    max-width: 11.5ch;
    font-size: var(--text-hero);
    line-height: 1.02;
    overflow-wrap: break-word;
}

h2 {
    font-size: var(--text-xl);
    line-height: 1.08;
    overflow-wrap: break-word;
}

h3 {
    font-size: var(--text-lg);
    line-height: 1.16;
    overflow-wrap: break-word;
}

.site-header {
    position: relative;
    z-index: 20;
    width: 100%;
    padding: 14px 20px 10px;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(5, 5, 5, 0.94)),
        var(--color-black);
    border-bottom: 1px solid rgba(201, 164, 92, 0.15);
}

.site-header::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(108px, 34vw);
    height: 1px;
    content: "";
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(228, 201, 133, 0.68), transparent);
    opacity: 0.7;
}

.brand-top {
    display: grid;
    place-items: center;
    gap: 6px;
    text-align: center;
}

.brand-mark,
.footer-logo {
    display: inline-grid;
    place-items: center;
}

.brand-mark img {
    width: clamp(120px, 9vw, 142px);
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.46));
    transition: opacity 180ms ease, transform 180ms ease;
}

.brand-mark:hover img,
.brand-mark:focus-visible img {
    opacity: 0.92;
    transform: translateY(-1px);
}

.brand-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 9px;
    max-width: min(100%, 560px);
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.35;
    text-transform: uppercase;
}

.brand-line-item {
    white-space: nowrap;
}

.brand-separator {
    color: var(--color-gold-light);
    opacity: 0.86;
}

.hero-section {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: clamp(680px, calc(100vh - 76px), 860px);
    min-height: clamp(680px, calc(100svh - 76px), 860px);
    overflow: hidden;
    padding: 0;
    background: var(--color-black);
}

.hero-frame {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: clamp(680px, calc(100vh - 76px), 860px);
    min-height: clamp(680px, calc(100svh - 76px), 860px);
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid rgba(201, 164, 92, 0.16);
    border-bottom: 1px solid rgba(201, 164, 92, 0.16);
    background: var(--color-dark);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), var(--shadow-deep);
}

.hero-frame::after {
    position: absolute;
    inset: clamp(12px, 1.8vw, 24px);
    z-index: 1;
    pointer-events: none;
    content: "";
    border: 1px solid rgba(228, 201, 133, 0.15);
    border-radius: var(--radius-sm);
}

.hero-image {
    --parallax-y: 0px;
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    transform: translateY(var(--parallax-y)) scale(1);
    animation: heroImageZoom 2.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.69) 40%, rgba(0, 0, 0, 0.2) 76%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.14) 34%, rgba(0, 0, 0, 0.72) 100%);
}

.hero-nav {
    position: absolute;
    top: clamp(20px, 3vw, 28px);
    left: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: calc(100% - 48px);
    transform: translateX(-50%);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(201, 164, 92, 0.35);
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.54);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    animation: heroNavReveal 850ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.hero-nav-link {
    display: inline-flex;
    min-width: 0;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-body);
    font-size: var(--text-nav);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 260ms ease, background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.hero-nav-link:hover,
.hero-nav-link:focus-visible,
.hero-nav-link.active {
    color: var(--color-white);
    background: rgba(201, 164, 92, 0.16);
}

.hero-nav-link-cta {
    color: #100d06;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    box-shadow: 0 10px 28px rgba(201, 164, 92, 0.28);
}

.hero-nav-link-cta:hover,
.hero-nav-link-cta:focus-visible {
    color: #080703;
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(201, 164, 92, 0.38);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(100% - 48px, 780px);
    min-width: 0;
    min-height: clamp(680px, calc(100vh - 76px), 860px);
    min-height: clamp(680px, calc(100svh - 76px), 860px);
    flex-direction: column;
    justify-content: center;
    padding: clamp(116px, 12vw, 150px) 0 clamp(96px, 10vw, 130px) clamp(28px, 8vw, 120px);
}

.eyebrow {
    display: inline-flex;
    margin: 0 0 var(--space-sm);
    align-items: center;
    gap: 10px;
    color: var(--color-gold-light);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 42px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--color-gold-light));
}

.hero-title {
    display: grid;
    max-width: 100%;
    gap: 0;
}

.hero-title-line {
    display: block;
    max-width: 100%;
}

@media (min-width: 761px) {
    .hero-title-line {
        white-space: nowrap;
    }
}

.hero-lead {
    max-width: 590px;
    margin-top: var(--space-md);
    color: var(--color-soft);
    font-size: var(--text-md);
    font-weight: 500;
    line-height: 1.62;
}

.hero-content p:not(.eyebrow):not(.hero-lead) {
    max-width: 570px;
    margin-top: var(--space-sm);
    color: rgba(244, 238, 226, 0.74);
}

.hero-description {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
}

.hero-animate {
    opacity: 0;
    animation: heroTextReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.12s;
    will-change: opacity, transform;
}

.hero-animate-delay-1 {
    animation-delay: 0.2s;
}

.hero-animate-delay-2 {
    animation-delay: 0.4s;
}

.hero-animate-delay-3 {
    animation-delay: 0.6s;
}

.hero-animate-delay-4 {
    animation-delay: 0.8s;
}

.hero-actions {
    display: flex;
    min-width: 0;
    max-width: 100%;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm) var(--space-md);
    margin-top: var(--space-lg);
}

.btn {
    position: relative;
    display: inline-flex;
    min-height: 46px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid rgba(201, 164, 92, 0.7);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--text-button);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn::after {
    position: absolute;
    inset: 0;
    content: "";
    transform: translateX(-120%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transition: transform 520ms ease;
}

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

.btn:hover::after,
.btn:focus-visible::after {
    transform: translateX(120%);
}

.btn-primary {
    color: #171106;
    background: linear-gradient(135deg, #f4dda0 0%, var(--color-gold-light) 42%, var(--color-gold) 100%);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    border-color: rgba(255, 237, 183, 0.88);
    box-shadow: 0 18px 44px rgba(201, 164, 92, 0.25);
}

.btn-ghost {
    color: var(--color-soft);
    background: rgba(255, 255, 255, 0.035);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    border-color: rgba(228, 201, 133, 0.72);
    background: rgba(201, 164, 92, 0.12);
}

.brand-story {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #080806 0%, var(--color-black) 44%, #080808 100%),
        var(--color-black);
    border-top: 1px solid rgba(201, 164, 92, 0.1);
    border-bottom: 1px solid rgba(201, 164, 92, 0.1);
}

.section-anchor {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.brand-story::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(90deg, rgba(201, 164, 92, 0.1), transparent 23%, transparent 78%, rgba(255, 255, 255, 0.025)),
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.03));
}

.story-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(36px, 5vw, 60px);
    align-items: center;
}

.image-collage {
    position: relative;
    display: grid;
    min-height: clamp(420px, 42vw, 560px);
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
}

.collage-card {
    position: relative;
    min-height: 150px;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-lg);
    background: var(--color-dark-soft);
    box-shadow: var(--shadow-soft);
}

.collage-card::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22));
}

.collage-card-large {
    z-index: 2;
    grid-column: 1 / 7;
    grid-row: 2 / 10;
}

.image-collage .collage-card:nth-child(2) {
    z-index: 3;
    grid-column: 7 / 13;
    grid-row: 1 / 6;
}

.image-collage .collage-card:nth-child(3) {
    z-index: 4;
    grid-column: 8 / 13;
    grid-row: 6 / 11;
}

.collage-card-wide {
    z-index: 5;
    grid-column: 2 / 8;
    grid-row: 9 / 13;
}

.collage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.015);
    transition: transform 620ms ease, filter 620ms ease;
}

.collage-card:hover img {
    filter: saturate(1.08) contrast(1.06);
    transform: scale(1.06);
}

.story-copy {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
}

.greek-brand {
    margin: 0 0 18px;
    color: var(--color-gold-light);
    font-size: var(--text-display);
    font-weight: 600;
    line-height: 0.95;
    text-shadow: 0 18px 40px rgba(201, 164, 92, 0.18);
}

.story-copy h2 {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: var(--text-section);
    line-height: 1.1;
}

.story-copy p:not(.greek-brand) {
    max-width: 100%;
    color: rgba(244, 238, 226, 0.78);
    font-size: var(--text-base);
    line-height: 1.78;
    text-align: left;
}

.story-copy p + p {
    margin-top: 16px;
}

.brand-link {
    border-bottom: 1px solid rgba(201, 164, 92, 0.45);
    color: var(--color-gold);
    font-weight: 600;
    text-decoration: none;
    transition: color 180ms ease, border-color 180ms ease;
}

.brand-link:hover,
.brand-link:focus-visible {
    border-bottom-color: var(--color-gold-light);
    color: var(--color-gold-light);
}

.button-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.button-row .btn {
    white-space: nowrap;
}

.consultation-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--color-black);
}

.consultation-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url("../images/image-6.jpg") center / cover no-repeat;
    transform: scale(1.03);
}

.consultation-section::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 46%, rgba(0, 0, 0, 0.84) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.92));
}

.consultation-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 500px);
    gap: clamp(var(--space-lg), 6vw, 80px);
    align-items: center;
}

.consultation-copy {
    max-width: 560px;
}

.consultation-copy p:not(.eyebrow) {
    max-width: 500px;
    margin-top: var(--space-md);
    color: rgba(244, 238, 226, 0.76);
    font-size: var(--text-base);
}

.consultation-form-panel {
    display: grid;
    gap: 14px;
}

.consultation-form {
    position: relative;
    display: grid;
    gap: var(--space-sm);
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid rgba(228, 201, 133, 0.22);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(18, 18, 18, 0.9), rgba(7, 7, 7, 0.9)),
        rgba(8, 8, 8, 0.88);
    box-shadow: var(--shadow-deep);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.form-heading {
    display: grid;
    gap: 4px;
    padding-bottom: 2px;
}

.form-heading .eyebrow {
    margin-bottom: 0;
}

.form-heading h3 {
    color: var(--color-soft);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
}

.form-group {
    display: grid;
    gap: 7px;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

label {
    color: rgba(244, 238, 226, 0.9);
    font-size: var(--text-label);
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.065);
    outline: none;
    padding: 11px 13px;
    font-size: var(--text-field);
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

select {
    color-scheme: dark;
}

select option {
    color: var(--color-white);
    background: var(--color-dark);
}

textarea {
    min-height: 118px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: rgba(244, 238, 226, 0.42);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(228, 201, 133, 0.76);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.16);
}

.field-error {
    display: block;
    min-height: 17px;
    color: #ffb4b4;
    font-size: var(--text-error);
    line-height: 1.4;
}

.has-error input,
.has-error select,
.has-error textarea,
input.is-invalid,
select.is-invalid,
textarea.is-invalid {
    border-color: rgba(255, 125, 125, 0.72);
    background: rgba(105, 34, 34, 0.14);
    box-shadow: 0 0 0 3px rgba(255, 143, 143, 0.12);
}

.form-message {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    line-height: 1.55;
    transition: opacity 260ms ease, transform 260ms ease;
}

.form-message strong {
    color: var(--color-soft);
    font-family: var(--font-heading);
    font-size: var(--text-md);
    font-weight: 600;
}

.form-message span {
    display: block;
}

.form-message a {
    width: fit-content;
    margin-top: 2px;
    color: var(--color-gold-light);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(228, 201, 133, 0.48);
}

.form-message a:hover {
    color: var(--color-soft);
    border-bottom-color: rgba(244, 238, 226, 0.72);
}

.form-message.is-hiding {
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
}

.form-message-success {
    border: 1px solid rgba(228, 201, 133, 0.34);
    color: rgba(244, 238, 226, 0.84);
    background:
        linear-gradient(135deg, rgba(201, 164, 92, 0.16), rgba(255, 255, 255, 0.035)),
        rgba(8, 8, 8, 0.92);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.form-message-error {
    border: 1px solid rgba(255, 153, 153, 0.42);
    color: #ffdede;
    background: rgba(146, 58, 58, 0.22);
}

.modal-open {
    overflow: hidden;
}

.success-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 220ms ease;
}

.success-modal.is-hiding {
    opacity: 0;
    pointer-events: none;
}

.success-modal-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(201, 164, 92, 0.12), transparent 34rem),
        rgba(0, 0, 0, 0.74);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.success-modal-card {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    width: min(100%, 520px);
    max-height: calc(100vh - 40px);
    max-height: calc(100svh - 40px);
    overflow-y: auto;
    padding: clamp(28px, 5vw, 42px);
    text-align: center;
    border: 1px solid rgba(228, 201, 133, 0.4);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(201, 164, 92, 0.13), rgba(255, 255, 255, 0.035)),
        #080808;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
    transform: translateY(0) scale(1);
    transition: transform 220ms ease;
}

.success-modal.is-hiding .success-modal-card {
    transform: translateY(8px) scale(0.98);
}

.success-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(228, 201, 133, 0.28);
    border-radius: 50%;
    color: rgba(244, 238, 226, 0.78);
    background: rgba(255, 255, 255, 0.045);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.success-modal-close:hover,
.success-modal-close:focus-visible {
    color: var(--color-soft);
    border-color: rgba(228, 201, 133, 0.72);
    background: rgba(201, 164, 92, 0.14);
}

.success-modal-icon {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border: 1px solid rgba(228, 201, 133, 0.56);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.18), transparent 38%),
        rgba(201, 164, 92, 0.14);
    box-shadow: inset 0 0 0 6px rgba(201, 164, 92, 0.08);
}

.success-modal-icon::after {
    position: absolute;
    top: 19px;
    left: 23px;
    width: 18px;
    height: 29px;
    border-right: 3px solid var(--color-gold-light);
    border-bottom: 3px solid var(--color-gold-light);
    content: "";
    transform: rotate(42deg);
}

.success-modal .eyebrow {
    margin-bottom: 10px;
}

.success-modal h3 {
    margin-bottom: 14px;
    color: var(--color-soft);
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    line-height: 1.08;
}

.success-modal p:not(.eyebrow) {
    max-width: 430px;
    color: rgba(244, 238, 226, 0.78);
    font-size: var(--text-base);
    line-height: 1.72;
}

.success-modal p + p {
    margin-top: 12px;
}

.success-modal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.btn-submit {
    width: 100%;
    margin-top: 2px;
}

.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 54px 0 24px;
    text-align: center;
    background: #050505;
    border-top: 1px solid rgba(201, 164, 92, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.site-footer::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background-image: url("../images/image-6.jpg");
    background-repeat: no-repeat;
    background-position: center 42%;
    background-size: cover;
    opacity: 0.13;
    filter: saturate(0.82) contrast(1.08);
    transform: scale(1.015);
}

.site-footer::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 164, 92, 0.13), transparent 34%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.9) 52%, rgba(5, 5, 5, 0.97)),
        rgba(0, 0, 0, 0.8);
}

.footer-inner {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 0;
}

.footer-logo img {
    width: clamp(112px, 8vw, 134px);
    height: auto;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.52));
}

.footer-logo {
    margin-bottom: 12px;
}

.footer-description {
    max-width: 560px;
    margin: 0 auto 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: var(--text-footer);
    line-height: 1.66;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(201, 164, 92, 0.44);
    border-radius: 50%;
    color: var(--color-soft);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(228, 201, 133, 0.76);
    background: rgba(201, 164, 92, 0.12);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(228, 201, 133, 0.14);
}

.footer-social img {
    width: 17px;
    height: 17px;
}

.footer-copyright {
    display: block;
    width: min(100%, 460px);
    padding-top: 15px;
    border-top: 1px solid rgba(201, 164, 92, 0.16);
    color: rgba(255, 255, 255, 0.56);
    font-size: var(--text-xs);
    line-height: 1.4;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroImageZoom {
    from {
        transform: translateY(var(--parallax-y)) scale(1.08);
    }

    to {
        transform: translateY(var(--parallax-y)) scale(1);
    }
}

@keyframes heroTextReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroNavReveal {
    from {
        opacity: 0;
        transform: translate(-50%, -12px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
        filter: blur(0);
    }
}

@media (max-width: 991px) {
    .story-grid,
    .consultation-grid {
        grid-template-columns: 1fr;
    }

    .story-copy,
    .consultation-copy {
        max-width: 720px;
    }

    .story-copy h2 {
        max-width: 100%;
    }

    .story-copy p:not(.greek-brand) {
        font-size: var(--text-base);
        line-height: 1.75;
        text-align: left;
    }

    .image-collage {
        width: min(100%, 720px);
    }

    .consultation-form {
        width: min(100%, 620px);
    }
}

@media (max-width: 760px) {
    :root {
        --text-xl: clamp(1.65rem, 5.8vw, 2.3rem);
        --text-section: clamp(1.72rem, 6vw, 2.35rem);
        --text-display: clamp(2.4rem, 10vw, 3.55rem);
        --text-hero: clamp(2.1rem, 9.2vw, 3.15rem);
        --space-xl: 44px;
        --space-xxl: 64px;
    }

    body {
        font-size: var(--text-base);
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .section-pad {
        padding: 58px 0;
    }

    .site-header {
        padding: 12px 16px 9px;
    }

    .brand-mark img {
        width: clamp(112px, 27vw, 128px);
        max-width: calc(100vw - 48px);
    }

    .brand-top {
        gap: 5px;
    }

    .brand-line {
        max-width: min(100%, 560px);
        font-size: clamp(0.62rem, 1.9vw, 0.7rem);
        letter-spacing: 0;
        line-height: 1.4;
    }

    .hero-section,
    .hero-frame {
        min-height: clamp(650px, calc(100vh - 64px), 760px);
        min-height: clamp(650px, calc(100svh - 64px), 760px);
    }

    .hero-frame::after {
        inset: 10px;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.56) 44%, rgba(0, 0, 0, 0.9) 100%),
            rgba(0, 0, 0, 0.3);
    }

    .hero-nav {
        top: 16px;
        display: grid;
        grid-template-columns: 0.72fr 1fr 1.45fr;
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        min-height: auto;
        justify-content: center;
        gap: 6px;
        overflow: visible;
        padding: 6px;
        -webkit-mask-image: none;
        mask-image: none;
        scrollbar-width: none;
    }

    .hero-nav::-webkit-scrollbar {
        display: none;
    }

    .hero-nav-link {
        width: 100%;
        min-height: 40px;
        flex: 0 1 auto;
        padding: 0 8px;
        font-size: clamp(0.62rem, 1.8vw, 0.68rem);
        letter-spacing: 0;
        line-height: 1.15;
        white-space: normal;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        min-height: clamp(650px, calc(100vh - 64px), 760px);
        min-height: clamp(650px, calc(100svh - 64px), 760px);
        padding: 154px 24px 46px;
    }

    .hero-title {
        max-width: min(100%, 9.3ch);
    }

    .hero-lead {
        margin-top: var(--space-md);
        font-size: var(--text-base);
    }

    .image-collage {
        min-height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        gap: var(--space-sm);
    }

    .collage-card,
    .collage-card-large,
    .image-collage .collage-card:nth-child(2),
    .image-collage .collage-card:nth-child(3),
    .collage-card-wide {
        min-height: 210px;
        grid-column: auto;
        grid-row: auto;
    }

    .collage-card-wide {
        grid-column: 1 / -1;
    }

    .story-copy {
        padding-left: 0;
    }

    .story-copy h2 {
        max-width: 100%;
    }

    .button-row {
        flex-wrap: wrap;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .button-row .btn {
        flex: 1 1 220px;
    }

    .site-footer {
        padding: 40px 0 22px;
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    .footer-description {
        max-width: 540px;
        margin-bottom: 16px;
        font-size: var(--text-footer);
        line-height: 1.6;
    }

    .footer-social {
        gap: 8px;
        margin-bottom: 17px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-copyright {
        padding-top: 14px;
        font-size: var(--text-xs);
    }
}

@media (max-width: 520px) {
    :root {
        --text-base: clamp(0.91rem, 0.88rem + 0.12vw, 0.95rem);
        --text-md: clamp(0.98rem, 0.93rem + 0.18vw, 1.05rem);
        --text-section: clamp(1.62rem, 7vw, 2.12rem);
        --text-display: clamp(2.25rem, 12vw, 3.2rem);
        --text-hero: clamp(2.05rem, 9vw, 2.82rem);
    }

    .container {
        width: min(100% - 24px, var(--container));
    }

    .site-header {
        padding: 11px 12px 8px;
    }

    .brand-mark img {
        width: clamp(104px, 32vw, 118px);
    }

    .brand-line {
        display: flex;
        width: 100%;
        max-width: calc(100vw - 24px);
        gap: 3px 5px;
        font-size: clamp(0.58rem, 2vw, 0.64rem);
        letter-spacing: 0;
        line-height: 1.4;
    }

    .hero-section,
    .hero-frame {
        min-height: clamp(640px, calc(100vh - 60px), 740px);
        min-height: clamp(640px, calc(100svh - 60px), 740px);
    }

    .hero-frame::after {
        inset: 8px;
    }

    .hero-nav {
        width: calc(100% - 28px);
        max-width: calc(100% - 28px);
        padding: 6px;
    }

    .hero-nav-link {
        min-height: 38px;
        padding-inline: 6px;
        font-size: clamp(0.58rem, 1.9vw, 0.64rem);
    }

    .hero-content {
        min-height: clamp(640px, calc(100vh - 60px), 740px);
        min-height: clamp(640px, calc(100svh - 60px), 740px);
        max-width: 100vw;
        padding: 146px 18px 40px;
    }

    .hero-title {
        max-width: min(100%, 8.6ch);
    }

    .hero-actions,
    .hero-actions .btn,
    .btn {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .image-collage {
        grid-template-columns: 1fr;
    }

    .collage-card,
    .collage-card-large,
    .image-collage .collage-card:nth-child(2),
    .image-collage .collage-card:nth-child(3),
    .collage-card-wide {
        min-height: 200px;
        grid-column: auto;
    }

    .greek-brand {
        font-size: var(--text-display);
    }

    .button-row {
        flex-direction: column;
        align-items: stretch;
    }

    .button-row .btn {
        flex: 0 0 auto;
        width: 100%;
        white-space: normal;
    }

    .consultation-form {
        padding: 20px 16px;
    }

    input,
    select,
    textarea {
        min-height: 46px;
        padding-inline: 12px;
    }

    .footer-logo img {
        width: 108px;
    }
}

@media (max-width: 360px) {
    :root {
        --text-hero: clamp(2.05rem, 10vw, 2.42rem);
    }

    .hero-title {
        max-width: min(100%, 8.2ch);
    }

    .hero-section,
    .hero-frame {
        min-height: clamp(660px, calc(100vh - 58px), 760px);
        min-height: clamp(660px, calc(100svh - 58px), 760px);
    }

    .hero-content {
        min-height: clamp(660px, calc(100vh - 58px), 760px);
        min-height: clamp(660px, calc(100svh - 58px), 760px);
        padding-inline: 14px;
    }

    .consultation-form {
        padding-inline: 14px;
    }

    .site-footer {
        padding-top: 36px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-animate {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none !important;
    }
}
