:root {
    --navy: #071d35;
    --navy-deep: #031322;
    --navy-soft: #0e3555;
    --gold: #d4af37;
    --gold-light: #edcd7b;
    --gold-dark: #8a6924;
    --text: #10233b;
    --muted: #617083;
    --white: #ffffff;
    --soft: #f5f3ee;
    --soft-blue: #f3f6f8;
    --border: rgba(7, 29, 53, 0.14);
    --shadow: 0 18px 46px rgba(3, 19, 34, 0.13);
    --container: 1220px;
    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body,
input,
textarea,
button {
    font-family: var(--sans);
}

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

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

p {
    margin: 0 0 20px;
}

h1,
h2,
h3 {
    margin: 0 0 20px;
    color: var(--text);
    font-family: var(--serif);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -0.018em;
}

h1 {
    font-size: clamp(46px, 5.7vw, 78px);
}

h2 {
    font-size: clamp(34px, 4vw, 54px);
}

h3 {
    font-size: clamp(23px, 2.3vw, 31px);
}

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

/* Header */
.site-header {
    position: relative;
    z-index: 50;
    color: var(--white);
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.page-home .site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(3, 19, 34, 0.96), rgba(3, 19, 34, 0.70), rgba(3, 19, 34, 0));
    border-bottom: 0;
}

.topbar {
    background: rgba(2, 15, 27, 0.72);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    font-size: 13px;
}

.topbar-inner {
    width: min(var(--container), calc(100% - 48px));
    min-height: 38px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.topbar-note {
    color: rgba(255,255,255,0.64);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 11px;
}

.topbar-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
    color: rgba(255,255,255,0.90);
}

.topbar-contact a {
    transition: color .22s ease;
}

.topbar-contact a:hover {
    color: var(--gold-light);
}

.language-label {
    margin-left: 8px;
    padding-left: 15px;
    border-left: 1px solid rgba(255,255,255,0.22);
    color: var(--gold-light);
    font-weight: 700;
}

.nav-shell {
    width: min(var(--container), calc(100% - 48px));
    min-height: 96px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) auto;
    align-items: center;
    gap: 36px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 210px;
    max-height: 82px;
    object-fit: contain;
    object-position: left center;
    transition: transform .3s ease, filter .3s ease;
}

.brand:hover img {
    transform: translateY(-1px);
    filter: drop-shadow(0 7px 18px rgba(212,175,55,.16));
}

.nav-toggle,
.nav-toggle-label {
    display: none;
}

.main-nav > ul,
.dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 12px;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .025em;
    transition: color .22s ease;
}

.main-nav > ul > li > a::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 3px;
    left: 12px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.main-nav .has-dropdown:focus-within > a {
    color: var(--gold-light);
}

.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.is-active::after,
.main-nav .has-dropdown:focus-within > a::after {
    transform: scaleX(1);
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    min-width: 232px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);
    background: rgba(3, 19, 34, .98);
    border: 1px solid rgba(212,175,55,.28);
    box-shadow: 0 18px 38px rgba(0,0,0,.30);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.dropdown a {
    width: 100%;
    padding: 10px 13px;
    min-height: 40px;
    font-size: 14px;
}

.dropdown a:hover {
    background: rgba(212,175,55,.10);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 10px 18px;
    color: var(--navy-deep);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: 1px solid rgba(255,255,255,.18);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(0,0,0,.14);
    transition: transform .22s ease, box-shadow .22s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 28px rgba(0,0,0,.22);
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
}

.hero--home {
    min-height: 735px;
    display: flex;
    align-items: center;
    background-image: url('../Bilder/hero-energy-tanker.jpg');
    background-position: center center;
}

.hero--home::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(3,19,34,.98) 0%, rgba(3,19,34,.94) 29%, rgba(3,19,34,.64) 52%, rgba(3,19,34,.12) 78%, rgba(3,19,34,.04) 100%),
        linear-gradient(180deg, rgba(3,19,34,.10), rgba(3,19,34,.32));
}

.hero--home::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    z-index: 2;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.hero-home__inner {
    padding-top: 150px;
    padding-bottom: 80px;
}

.hero-copy {
    max-width: 720px;
    color: var(--white);
}

.hero-copy h1 {
    max-width: 680px;
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 0 9px 30px rgba(0,0,0,.32);
}

.hero-lead {
    max-width: 660px;
    margin-bottom: 31px;
    color: rgba(255,255,255,.86);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 25px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.20);
    color: rgba(255,255,255,.73);
    font-size: 13px;
    letter-spacing: .025em;
}

.hero-facts span {
    position: relative;
    padding-left: 17px;
}

.hero-facts span::before {
    content: "";
    position: absolute;
    top: .62em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-light);
}

.hero--sub {
    min-height: 350px;
    display: grid;
    place-items: center;
    background-image: url('../Bilder/hero-energy-tanker.jpg');
}

.hero--sub::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(3,19,34,.90), rgba(3,19,34,.64), rgba(3,19,34,.42));
}

.page-ueber-uns .hero--sub,
.page-kontakt .hero--sub {
    background-image: url('../Bilder/bild-international-markets.jpg');
}

.page-oelhandel .hero--sub {
    background-image: url('../Bilder/bild-crude-oil.svg');
}

.page-gashandel .hero--sub {
    background-image: url('../Bilder/bild-natural-gas.svg');
}

.page-petroliumhandel .hero--sub {
    background-image: url('../Bilder/bild-petroleum-products.svg');
}

.page-datenschutz .hero--sub,
.page-impressum .hero--sub {
    background-image: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
}

.hero-content {
    width: min(var(--container), calc(100% - 48px));
    padding: 64px 0;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(42px, 5vw, 66px);
    text-shadow: 0 10px 28px rgba(0,0,0,.28);
}

.hero-kicker,
.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.hero-kicker,
.eyebrow--light {
    color: var(--gold-light);
}

/* Generic sections */
.section {
    padding: 90px 0;
}

.section--compact {
    padding: 62px 0;
}

.section--light,
.section--soft {
    background: var(--soft-blue);
}

.section-heading {
    max-width: 800px;
    margin-bottom: 52px;
}

.section-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading p,
.section-header p,
.text-block p,
.editorial-copy p,
.card p,
.legal-content p,
.legal-content li {
    color: var(--muted);
}

.section-heading--light h2,
.section-heading--light p {
    color: var(--white);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 56px;
    text-align: center;
}

.gold-line {
    width: 78px;
    height: 3px;
    margin: 0 auto 24px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

/* Buttons and links */
.btn,
button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 170px;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    box-shadow: 0 12px 28px rgba(3,19,34,.17);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn::after,
button.btn::after {
    content: "→";
    color: var(--gold-light);
    font-size: 18px;
    line-height: 1;
}

.btn:hover,
button.btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep));
    box-shadow: 0 17px 35px rgba(3,19,34,.24);
}

.btn--gold,
.btn--light {
    color: var(--navy-deep);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: rgba(255,255,255,.22);
}

.btn--gold::after,
.btn--light::after {
    color: var(--navy-deep);
}

.btn--gold:hover,
.btn--light:hover {
    background: linear-gradient(135deg, #f2d88f, #cda832);
}

.text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .025em;
}

.text-link::after {
    content: "→";
    color: var(--gold-dark);
    transition: transform .22s ease;
}

.text-link:hover::after {
    transform: translateX(4px);
}

.text-link--light {
    color: var(--white);
}

.text-link--light::after {
    color: var(--gold-light);
}

/* Home market cards */
.market-section {
    background: var(--white);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.market-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 14px 35px rgba(3,19,34,.09);
    transition: transform .28s ease, box-shadow .28s ease;
}

.market-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(3,19,34,.16);
}

.market-card__image {
    display: block;
    height: 238px;
    overflow: hidden;
    background: var(--navy);
}

.market-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s ease, filter .65s ease;
}

.market-card:hover .market-card__image img {
    transform: scale(1.05);
    filter: saturate(1.08) contrast(1.04);
}

.market-card__body {
    position: relative;
    min-height: 310px;
    padding: 31px 30px 34px;
}

.market-card__number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: rgba(7,29,53,.10);
    font-family: var(--serif);
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
}

.market-card__body h3 {
    max-width: 78%;
}

.market-card__body p {
    color: var(--muted);
}

/* Values */
.values-band {
    padding: 76px 0 80px;
    color: var(--white);
    background:
        radial-gradient(circle at 50% 0, rgba(30,80,115,.45), transparent 45%),
        linear-gradient(135deg, var(--navy-deep), #07304e);
    border-top: 1px solid rgba(212,175,55,.25);
    border-bottom: 1px solid rgba(212,175,55,.25);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.value-item {
    min-height: 270px;
    padding: 33px 24px;
    text-align: center;
}

.value-item + .value-item {
    border-left: 1px solid rgba(255,255,255,.18);
}

.value-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    color: var(--gold-light);
    border: 1px solid rgba(212,175,55,.52);
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 29px;
}

.value-item h3 {
    color: var(--white);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.value-item p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.65;
}

/* Editorial sections */
.editorial-split,
.split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: center;
}

.editorial-split--reverse,
.split--reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
}

.editorial-image,
.image-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    background: var(--navy);
    box-shadow: var(--shadow);
}

.editorial-image,
.image-card-people {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
	height: 600px;
	width: auto;
}

.editorial-image::after,
.image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(212,175,55,.08), transparent 40%, rgba(3,19,34,.20));
}

.editorial-image img,
.image-card img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    transition: transform .65s ease, filter .65s ease;
}

.editorial-image:hover img,
.image-card:hover img {
    transform: scale(1.045);
    filter: saturate(1.05) contrast(1.03);
}

.editorial-copy,
.text-block {
    padding: 10px 0;
}

.editorial-copy .btn,
.text-block .btn {
    margin-top: 8px;
}

.responsible-section {
    background: var(--soft);
}

/* Existing service cards */
.service-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.service-card {
    min-height: 485px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform .28s ease, box-shadow .28s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 50px rgba(3,19,34,.17);
}

.service-card__image {
    height: 235px;
    overflow: hidden;
    background: var(--navy);
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.055);
}

.service-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.service-card__body p {
    color: var(--muted);
}

.service-card__body .btn {
    margin-top: auto;
    align-self: flex-start;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature {
    position: relative;
    min-height: 275px;
    padding: 34px;
    background: var(--white);
    border-top: 3px solid var(--gold);
    box-shadow: 0 14px 34px rgba(3,19,34,.08);
}

.feature strong {
    display: block;
    margin-bottom: 14px;
    color: var(--gold-dark);
    font-family: var(--serif);
    font-size: 30px;
}

.feature h3 {
    font-size: 27px;
}

.feature p {
    color: var(--muted);
}

/* CTA */
.cta-band,
.footer-cta {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
    border-top: 1px solid rgba(212,175,55,.30);
    border-bottom: 1px solid rgba(212,175,55,.30);
}

.cta-band h2,
.cta-band p,
.footer-cta h2,
.footer-cta p {
    color: var(--white);
}

.cta-inner,
.footer-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 38px;
}

.footer-cta {
    padding: 48px 0;
}

.footer-cta h2 {
    margin-bottom: 10px;
    font-size: clamp(31px, 3.3vw, 46px);
}

.footer-cta p {
    margin: 0;
    color: rgba(255,255,255,.74);
}

/* Breadcrumb */
.breadcrumb {
    background: #f7f5f0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}

.breadcrumb .container {
    padding: 13px 0;
}

.breadcrumb a {
    color: var(--navy);
    font-weight: 700;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: .76fr 1.24fr;
    gap: 42px;
    align-items: start;
}

.info-card,
.form-card,
.legal-content {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.info-card,
.form-card {
    padding: clamp(28px, 4vw, 42px);
}

.info-card dl {
    margin: 0;
}

.info-card dt {
    margin-top: 22px;
    color: var(--text);
    font-weight: 800;
}

.info-card dt:first-child {
    margin-top: 0;
}

.info-card dd {
    margin: 3px 0 0;
    color: var(--muted);
}

.info-card a,
.legal-content a {
    color: var(--navy-soft);
    text-decoration: underline;
    text-decoration-color: rgba(212,175,55,.65);
    text-underline-offset: 3px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-group--full {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 7px;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(7,29,53,.20);
    border-radius: 0;
    padding: 13px 14px;
    color: var(--text);
    background: #fbfcfd;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}

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

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212,175,55,.14);
}

.checkbox-row {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: var(--muted);
    font-size: 14px;
}

.checkbox-row input {
    width: auto;
    margin-top: 6px;
}

.checkbox-row label {
    margin: 0;
    color: var(--muted);
    font-weight: 400;
}

.checkbox-row a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-note,
.required-note {
    color: var(--muted);
    font-size: 14px;
}

.message {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-left: 4px solid currentColor;
}

.message--success {
    color: #1b5c31;
    background: #ecf8ef;
}

.message--error {
    color: #8c2e2e;
    background: #fff0f0;
}

/* Legal */
.legal-content {
    padding: clamp(30px, 5vw, 62px);
}

.legal-content h2 {
    margin-top: 38px;
    font-size: clamp(25px, 2.8vw, 36px);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content ul {
    padding-left: 21px;
}

.placeholder-box {
    margin: 0 0 30px;
    padding: 18px 20px;
    color: #654c16;
    background: rgba(237,205,123,.17);
    border-left: 4px solid var(--gold);
}

/* Footer */
.page-datenschutz .footer-cta,
.page-impressum .footer-cta {
    display: none;
}

.site-footer {
    padding: 58px 0 0;
    color: rgba(255,255,255,.74);
    background: var(--navy-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr .95fr .85fr .75fr;
    gap: 48px;
    padding-bottom: 46px;
}

.footer-brand img {
    width: 220px;
    max-height: 92px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 15px;
}

.footer-brand p {
    max-width: 390px;
    margin: 0;
    font-size: 14px;
}

.footer-column h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-column address {
    margin: 0 0 13px;
    font-style: normal;
}

.footer-column a {
    overflow-wrap: anywhere;
    display: block;
    width: fit-content;
    margin-bottom: 8px;
    transition: color .2s ease;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-link-button {
    display: block;
    width: fit-content;
    margin: 0 0 8px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    font: inherit;
    line-height: inherit;
    text-align: left;
    cursor: pointer;
    transition: color .2s ease;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
    color: var(--gold-light);
}

.footer-bottom {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 12px;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    z-index: 30;
    color: var(--navy-deep);
    background: var(--gold-light);
    border: 1px solid rgba(3,19,34,.18);
    box-shadow: 0 12px 28px rgba(0,0,0,.20);
    font-size: 19px;
    font-weight: 800;
}

/* Cookie consent */
body.cookie-consent-open {
    overflow: hidden;
}

.cookie-consent[hidden],
.cookie-consent [hidden] {
    display: none !important;
}

.cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    align-items: end;
    padding: 24px;
    overflow-y: auto;
}

.cookie-consent__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(3, 19, 34, .70);
    backdrop-filter: blur(4px);
}

.cookie-consent__panel {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    max-height: calc(100vh - 48px);
    margin: 0 auto;
    padding: clamp(26px, 4vw, 42px);
    overflow-y: auto;
    color: var(--text);
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, .52);
    box-shadow: 0 26px 80px rgba(0, 0, 0, .32);
}

.cookie-consent__panel h2 {
    margin-bottom: 13px;
    font-size: clamp(29px, 3.4vw, 42px);
}

.cookie-consent__panel p {
    max-width: 820px;
    margin-bottom: 17px;
    color: var(--muted);
    line-height: 1.65;
}

.cookie-consent__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cookie-consent__links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 22px;
    margin: 2px 0 23px;
}

.cookie-consent__links a {
    color: var(--navy-soft);
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, .72);
    text-underline-offset: 3px;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
    margin-top: 24px;
}

.cookie-button {
    min-height: 45px;
    padding: 10px 18px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid rgba(7, 29, 53, .28);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .025em;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.cookie-button:hover {
    border-color: var(--gold-dark);
    transform: translateY(-1px);
}

.cookie-button--primary {
    color: var(--navy-deep);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: var(--gold);
}

.cookie-button--primary:hover {
    background: linear-gradient(135deg, #f2d88f, #cda832);
}

.cookie-button--text {
    min-height: 0;
    padding: 8px 5px;
    color: var(--navy-soft);
    background: transparent;
    border-color: transparent;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-button--text:hover {
    background: transparent;
    border-color: transparent;
}

.cookie-button:focus-visible,
.footer-link-button:focus-visible,
.privacy-cookie-button:focus-visible {
    outline: 3px solid rgba(212, 175, 55, .58);
    outline-offset: 3px;
}

.cookie-categories {
    margin-top: 25px;
    border-top: 1px solid var(--border);
}

.cookie-category {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin: 0;
    padding: 18px 2px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.cookie-category strong,
.cookie-category small {
    display: block;
}

.cookie-category strong {
    margin-bottom: 3px;
    color: var(--text);
    font-size: 15px;
}

.cookie-category small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

.cookie-category input {
    width: 21px;
    height: 21px;
    margin: 0;
    accent-color: var(--gold-dark);
    cursor: pointer;
}

.cookie-category input:disabled {
    cursor: not-allowed;
}

.privacy-cookie-button {
    display: inline;
    margin: 0 0 0 4px;
    padding: 0;
    color: var(--navy-soft);
    background: transparent;
    border: 0;
    font: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, .72);
    text-underline-offset: 3px;
    cursor: pointer;
}

/* Motion */
.animate {
    animation: fadeUp .78s ease both;
}

.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
.delay-3 { animation-delay: .24s; }

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

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

@media (max-width: 1120px) {
    .nav-shell {
        grid-template-columns: 190px minmax(0, 1fr) auto;
        gap: 20px;
    }

    .brand img {
        width: 185px;
    }

    .main-nav a {
        padding-inline: 8px;
        font-size: 13px;
    }

    .header-cta {
        padding-inline: 14px;
    }

    .values-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .value-item:nth-child(4) {
        border-left: 0;
    }

    .value-item:nth-child(n+4) {
        border-top: 1px solid rgba(255,255,255,.18);
    }
}

@media (max-width: 960px) {
    .topbar-note {
        display: none;
    }

    .topbar-inner {
        justify-content: flex-end;
    }

    .nav-shell {
        position: relative;
        grid-template-columns: 1fr auto;
        min-height: 88px;
    }

    .brand img {
        width: 195px;
    }

    .header-cta {
        display: none;
    }

    .nav-toggle-label {
        display: flex;
        width: 45px;
        height: 45px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(212,175,55,.45);
        cursor: pointer;
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        position: relative;
        display: block;
        width: 22px;
        height: 2px;
        background: var(--white);
        transition: transform .2s ease, opacity .2s ease, background .2s ease;
    }

    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: "";
        position: absolute;
        left: 0;
    }

    .nav-toggle-label span::before { top: -7px; }
    .nav-toggle-label span::after { top: 7px; }

    .nav-toggle:checked + .nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked + .nav-toggle-label span::before {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle:checked + .nav-toggle-label span::after {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        padding: 12px 0 18px;
        background: rgba(3,19,34,.99);
        border-top: 1px solid rgba(212,175,55,.22);
        box-shadow: 0 18px 28px rgba(0,0,0,.22);
    }

    .nav-toggle:checked ~ .main-nav {
        display: block;
    }

    .main-nav > ul {
        display: block;
    }

    .main-nav a {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 24px;
        font-size: 15px;
    }

    .main-nav > ul > li > a::after {
        right: auto;
        bottom: 7px;
        left: 24px;
        width: 40px;
        transform-origin: left;
    }

    .dropdown {
        position: static;
        min-width: 0;
        padding: 0 0 6px 20px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .dropdown a {
        min-height: 36px;
        color: rgba(255,255,255,.68);
        font-size: 14px;
    }

    .nav-legal {
        display: block;
    }

    .hero--home {
        min-height: 680px;
        background-position: 58% center;
    }

    .hero--home::before {
        background: linear-gradient(90deg, rgba(3,19,34,.98), rgba(3,19,34,.86) 56%, rgba(3,19,34,.35));
    }

    .hero-home__inner {
        padding-top: 145px;
    }

    .market-grid,
    .service-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .market-card:last-child,
    .service-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 13px);
        justify-self: center;
    }

    .editorial-split,
    .editorial-split--reverse,
    .split,
    .split--reverse,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .split--reverse .text-block,
    .editorial-split--reverse .editorial-copy {
        order: 1;
    }

    .split--reverse .image-card,
    .editorial-split--reverse .editorial-image {
        order: 2;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature {
        min-height: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .container,
    .topbar-inner,
    .nav-shell,
    .hero-content {
        width: min(100% - 32px, var(--container));
    }

    h1 {
        font-size: clamp(39px, 12vw, 54px);
    }

    h2 {
        font-size: clamp(31px, 9vw, 42px);
    }

    .topbar-contact {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
        font-size: 12px;
    }

    .topbar-contact > span:not(.language-label) {
        display: none;
    }

    .language-label {
        margin-left: 0;
        padding-left: 10px;
    }

    .nav-shell {
        min-height: 80px;
    }

    .brand img {
        width: 170px;
        max-height: 72px;
    }

    .hero--home {
        min-height: 720px;
        background-position: 64% center;
    }

    .hero--home::before {
        background: linear-gradient(90deg, rgba(3,19,34,.98), rgba(3,19,34,.88) 70%, rgba(3,19,34,.52));
    }

    .hero-home__inner {
        padding-top: 150px;
        padding-bottom: 65px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-facts {
        display: grid;
        gap: 8px;
    }

    .hero--sub {
        min-height: 285px;
    }

    .hero-content {
        padding: 50px 0;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading,
    .section-header {
        margin-bottom: 40px;
    }

    .market-grid,
    .service-list,
    .values-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .market-card:last-child,
    .service-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .market-card__image,
    .service-card__image {
        height: 220px;
    }

    .market-card__body {
        min-height: 0;
    }

    .value-item,
    .value-item + .value-item,
    .value-item:nth-child(4) {
        min-height: 0;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.18);
    }

    .value-item:first-child {
        border-top: 0;
    }

    .editorial-image,
    .image-card,
    .editorial-image img,
    .image-card img {
        min-height: 300px;
    }

    .cta-inner,
    .footer-cta__inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-grid {
        gap: 34px;
    }

    .footer-bottom {
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .form-group--full {
        grid-column: auto;
    }
}

@media (max-width: 460px) {
    body {
        font-size: 15px;
    }

    .topbar-contact a:first-child {
        display: none;
    }

    .hero--home {
        min-height: 690px;
    }

    .hero-copy h1 {
        font-size: 41px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .btn,
    button.btn {
        width: 100%;
    }

    .text-link {
        width: auto;
    }

    .market-card__body,
    .service-card__body,
    .info-card,
    .form-card {
        padding: 25px 22px;
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
    }
}

@media (max-width: 700px) {
    .cookie-consent {
        padding: 0;
    }

    .cookie-consent__panel {
        width: 100%;
        max-height: 92vh;
        padding: 27px 20px 23px;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
    }

    .cookie-consent__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-button {
        width: 100%;
    }

    .cookie-category {
        gap: 15px;
    }
}
