:root {
    --navy: #0a2540;
    --navy-800: #0d2f52;
    --ocean: #12508c;
    --teal: #0f8a8a;
    --sand: #f4efe6;
    --ink: #12212f;
    --muted: #5c6b7a;
    --line: #e3e8ee;
    --bg: #ffffff;
    --bg-alt: #f5f8fb;
    --radius: 14px;
    --shadow: 0 8px 30px rgba(10, 37, 64, 0.10);
    --shadow-hover: 0 16px 44px rgba(10, 37, 64, 0.18);
    --wrap: 1160px;
    --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: 20px;
}

.hero,
.section,
.site-footer {
    scroll-margin-top: 90px;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    text-decoration: none;
    color: var(--navy);
}

.brand__mark { font-size: 1.35rem; }
.brand__name { letter-spacing: -0.01em; }

.brand__logo {
    display: block;
    height: 46px;
    width: auto;
}

.brand picture { display: flex; }

.nav {
    display: flex;
    gap: 22px;
    margin-left: auto;
}

.nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav a:hover { color: var(--ocean); }

.langswitch {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
}

.langswitch a {
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--muted);
}

.langswitch a.is-active {
    background: #4080c0;
    color: #fff;
}

/* ---------- Hero ---------- */
.hero {
    background-color: var(--navy);
    /* Fallback: dark overlay + JPG photo */
    background-image:
        linear-gradient(160deg, rgba(10, 37, 64, 0.86) 0%, rgba(13, 47, 82, 0.78) 50%, rgba(18, 80, 140, 0.70) 130%),
        url('/img/hero.jpg');
    /* Modern: same overlay, WebP with JPG fallback via image-set */
    background-image:
        linear-gradient(160deg, rgba(10, 37, 64, 0.86) 0%, rgba(13, 47, 82, 0.78) 50%, rgba(18, 80, 140, 0.70) 130%),
        image-set(url('/img/hero.webp') type('image/webp'), url('/img/hero.jpg') type('image/jpeg'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #eaf2fb;
}

.hero__inner {
    padding-block: 88px 96px;
    max-width: var(--wrap);
}

.hero__kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #7fd4d4;
    margin: 0 0 14px;
}

.hero__claim {
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.05;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.hero__lead {
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    font-weight: 600;
    margin: 0 0 18px;
    color: #cfe0f0;
}

.hero__intro {
    font-size: 1.05rem;
    color: #b9cbdd;
    max-width: none;
    margin: 0 0 28px;
}

.stats {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
}

.stats__item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 16px 14px;
    text-align: center;
}

.stats__value {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.stats__label {
    display: block;
    font-size: 0.82rem;
    color: #a9bece;
    margin-top: 2px;
}

/* ---------- Sections ---------- */
.section { padding-block: 64px; }
.section--alt { background: var(--bg-alt); }

.section__head {
    max-width: 720px;
    margin-bottom: 34px;
}

.section__title {
    font-size: clamp(1.6rem, 3.4vw, 2.2rem);
    margin: 0 0 8px;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.section__lead {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

/* ---------- Grid & cards ---------- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
}

.card {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card__shot {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background:
        linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent), #000 28%));
    overflow: hidden;
}

.card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border: 0;
}

.card__badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(10, 37, 64, 0.82);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 5px 11px;
    border-radius: 999px;
    backdrop-filter: blur(2px);
}

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

.card__title {
    margin: 0 0 3px;
    font-size: 1.25rem;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.card__tagline {
    margin: 0 0 12px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--accent);
}

.card__desc {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 0.95rem;
}

.card__label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--muted);
    margin: 0 0 8px;
}

.card__highlights {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 7px;
}

.card__highlights li {
    position: relative;
    padding-left: 22px;
    font-size: 0.9rem;
    color: var(--ink);
}

.card__highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.card__foot {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.card__stat {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
}

.card__link {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    color: var(--accent);
}

.card__link:hover { text-decoration: underline; }

.card__host {
    font-weight: 500;
    font-size: 0.78rem;
    color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
    background: linear-gradient(to bottom, var(--navy-800) 0%, var(--navy) 55%, #06162a 100%);
    color: #c6d4e2;
    padding-block: 48px 24px;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 40px;
}

.site-footer__tel { color: #fff; font-weight: 700; text-decoration: none; }
.site-footer__tel:hover { text-decoration: underline; }

.site-footer__brand strong {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    margin-top: 6px;
}

.site-footer__claim {
    color: #7fd4d4;
    font-weight: 600;
    margin: 6px 0 0;
}

.site-footer__title {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 12px;
}

.site-footer__address {
    font-style: normal;
    line-height: 1.9;
    font-size: 0.95rem;
}

.site-footer .muted { color: #8aa0b5; }

.site-footer__web {
    display: inline-block;
    margin-top: 14px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.site-footer__web:hover { text-decoration: underline; }

.site-footer__social { margin-top: 16px; }
.site-footer__social a {
    display: inline-flex; align-items: center; justify-content: center;
    color: #c6d4e2;
    transition: color 0.15s ease, transform 0.15s ease;
}
.site-footer__social a:hover { color: #fff; transform: translateY(-2px); }

.site-footer__copy {
    text-align: center;
    color: #6f869b;
    font-size: 0.85rem;
    margin: 36px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
    .nav { display: none; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
    .site-footer__title--spacer { display: none; }
}

@media (max-width: 420px) {
    .grid { grid-template-columns: 1fr; }
}

/* ============ Long-form company page ============ */
.wrap--narrow { max-width: 820px; }

/* Hero intro + quote */
.hero__intro p { margin: 0 0 14px; }
.hero__intro p:last-child { margin-bottom: 0; }
.hero__intro strong { color: #fff; font-weight: 700; }

.hero__quote {
    margin: 30px 0 0;
    padding-left: 20px;
    border-left: 3px solid var(--teal);
}
.hero__quote blockquote {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
}
.hero__quote figcaption {
    margin-top: 10px;
    color: #9fd0d0;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Prose */
.prose p { margin: 0 0 16px; color: var(--ink); font-size: 1.02rem; }
.prose p:last-child { margin-bottom: 0; }
.txt-accent { color: #4080c0; }
.prose--wide { margin-bottom: 28px; }

/* Intro spans the full content width in these sections */
#plattformen .section__head,
#technologie .section__head,
#zahlen .section__head,
#auszeichnungen .section__head { max-width: none; }

/* Big alternating platform rows */
.platforms { display: grid; gap: 44px; }
.platform {
    display: grid;
    grid-template-columns: minmax(0, 430px) 1fr;
    gap: 40px;
    align-items: center;
}
.platform--rev { grid-template-columns: 1fr minmax(0, 430px); }
.platform--rev .platform__shot { order: 2; }
.platform__shot {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    aspect-ratio: 4 / 3;
    background: var(--bg-alt);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.platform__shot:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.platform__shot img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
}
.platform__name { font-size: 1.5rem; margin: 0 0 4px; color: var(--navy); letter-spacing: -0.01em; }
.platform__sub { margin: 0 0 16px; font-weight: 600; color: #4080c0; }

/* Try: "Weitere Plattformen" with a boats photo background + dark overlay */
#weitere {
    background-image:
        linear-gradient(to bottom, rgba(8, 26, 46, 0.84) 0%, rgba(6, 22, 42, 0.90) 100%),
        url('/img/viele-boote.jpg');
    background-image:
        linear-gradient(to bottom, rgba(8, 26, 46, 0.84) 0%, rgba(6, 22, 42, 0.90) 100%),
        image-set(url('/img/viele-boote.webp') type('image/webp'), url('/img/viele-boote.jpg') type('image/jpeg'));
    background-size: cover;
    background-position: center;
}

/* Sections on the hero-blue gradient background */
.section--blue {
    background: linear-gradient(to bottom, var(--navy-800) 0%, var(--navy) 55%, #06162a 100%);
    color: #eaf2fb;
}
.section--blue .section__title { color: #fff; }
.section--blue .section__lead { color: #cfe0f0; }
.section--blue .prose p { color: #dbe7f3; }
.section--blue .platform__shot { border-color: transparent; background: transparent; }

/* Each platform row as a glass card (matching the "Zahlen" boxes) */
.section--blue .platform {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px;
    border-radius: var(--radius);
}
.section--blue .platform .platform__name { color: #fff; }
.section--blue .platform .platform__sub { color: #8fc0e8; }
.section--blue .platform .prose p { color: #dbe7f3; }

/* Awards section on blue: glass boxes + light text */
#auszeichnungen .split,
#messen .split { grid-template-columns: 1fr 1fr; }
#messen .split-photo { order: -1; }
#auszeichnungen .award__link {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}
#auszeichnungen .award__link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: none;
}
#auszeichnungen .award__body strong { color: #fff; }
#auszeichnungen .award__body span { color: #a9bece; }
#auszeichnungen .quote blockquote { color: #fff; }
#auszeichnungen .quote figcaption { color: #a9bece; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 18px;
    padding: 11px 20px;
    border-radius: 999px;
    background: #4080c0;
    color: #fff; font-weight: 700; font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--big { font-size: 1.05rem; padding: 14px 28px; background: #4080c0; margin-top: 0; }

/* Text + photo split */
.split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }

/* Variant: image column exactly as wide as the platform screenshots (1fr / 1.05fr, gap 36) */
.split--equal { grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }

/* Full-width intro above the "International" split */
.intl-intro { margin-bottom: 28px; }

/* Variant: text + a free-standing (transparent) image, vertically centred */
.split--media { grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: center; }
.logos-stack { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.logo-link {
    display: block;
    width: 100%;
    max-width: 200px;
    transition: transform 0.15s ease, opacity 0.15s ease;
}
.logo-link:hover { transform: translateY(-2px); opacity: 0.82; }
.logo-link img { width: 100%; height: auto; display: block; }

/* Domains list */
.domains { list-style: none; margin: 22px 0; padding: 0; display: grid; gap: 10px; }
.domains__link {
    display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px;
    padding: 12px 18px; background: #4080c0;
    border: 1px solid #4080c0; border-radius: 999px;
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.domains__link:hover { background: #356fa8; border-color: #356fa8; box-shadow: var(--shadow); }
.domains__name { font-weight: 700; color: #fff; }
.domains__label { color: #dbe7f3; font-size: 0.92rem; }

.slogan { margin: 22px 0 0; font-size: 1.15rem; font-weight: 700; font-style: italic; color: #4080c0; }

/* Plain image, no frame — just the graphic itself. Top margin matches the
   domains list so the image sits flush with the first domain pill. */
.media-box {
    margin: 22px 0 0;
}
.media-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

/* Photo placeholder */
.photo-ph {
    margin: 0;
    display: flex; align-items: center; justify-content: center;
    min-height: 240px;
    border: 2px dashed #c7d3df;
    border-radius: var(--radius);
    background: repeating-linear-gradient(45deg, #f2f6fa, #f2f6fa 12px, #eef3f8 12px, #eef3f8 24px);
    color: var(--muted); font-weight: 600; font-size: 0.9rem;
    text-align: center; padding: 20px;
}

/* Real photo inside a split (e.g. awards section) */
.split-photo { margin: 0; }
.split-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Weitere Plattformen mini cards */
.minigrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.minicard {
    display: flex; flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.12); border-top: 3px solid #4080c0;
    border-radius: var(--radius); overflow: hidden;
    text-decoration: none; background: rgba(255, 255, 255, 0.06);
    transition: transform 0.15s ease, background 0.15s ease;
}
.minicard:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.12); }
.minicard__name { font-weight: 700; color: #fff; padding: 18px 18px 4px; }
.minicard__note { color: #a9bece; font-size: 0.88rem; padding: 0 18px 18px; }

/* Technology blocks */
.techgrid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.techblock { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #f5f8fb; }
.techblock__title {
    margin: 0 0 12px; color: var(--navy); font-size: 1.2rem;
    position: relative; padding-left: 16px;
}
.techblock__title::before {
    content: ""; position: absolute; left: 0; top: 0.15em; bottom: 0.15em;
    width: 4px; border-radius: 2px; background: var(--teal);
}

/* Figures (Zahlen) — dark section */
.section--dark { background: linear-gradient(160deg, var(--navy), var(--navy-800)); color: #dfeaf5; }
.section--dark .section__title { color: #fff; }
.section--dark .section__lead { color: #a9bece; }
.figures { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.figure { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius); padding: 22px; }
.figure__value { display: block; font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.figure__label { display: block; font-weight: 700; margin-top: 4px; color: #eaf2fb; }
.figure__sub { display: block; margin-top: 4px; font-size: 0.88rem; color: #9fb4c8; }

/* Awards */
.awards { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 14px; }
.award__link {
    display: flex; gap: 18px; align-items: baseline;
    padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px;
    background: var(--bg); text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.award__link:hover { border-color: var(--ocean); box-shadow: var(--shadow); transform: translateY(-2px); }
.award__year { font-size: 1.3rem; font-weight: 800; color: #4080c0; min-width: 66px; }
.award__body { display: grid; gap: 2px; }
.award__body strong { color: var(--navy); }
.award__body span { color: var(--muted); font-size: 0.95rem; }

/* Generic quote */
.quote { margin: 24px 0 0; padding-left: 20px; border-left: 3px solid var(--teal); }
.quote blockquote { margin: 0; font-size: 1.1rem; font-weight: 600; color: var(--navy); line-height: 1.55; }
.quote figcaption { margin-top: 10px; color: var(--muted); font-weight: 600; font-size: 0.9rem; }
.quote--wide { margin-top: 34px; }

/* Team */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.member__photo {
    margin: 0 0 16px;
    max-width: 50%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-alt);
    box-shadow: var(--shadow);
}
.member__photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.member__name { margin: 0 0 10px; color: var(--navy); font-size: 1.25rem; }
.section--blue .member__name { color: #fff; }
.member__role { display: inline-block; margin-left: 6px; padding: 2px 10px; border-radius: 999px; background: #4080c0; color: #fff; font-size: 0.72rem; font-weight: 700; vertical-align: middle; }

/* CTA */
.section--cta { background: #fff; }
.cta {
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 48px 40px;
}
.cta__text { color: var(--muted); font-size: 1.1rem; max-width: 620px; margin: 8px auto 24px; }
.cta__email { border: 0; cursor: pointer; -webkit-appearance: none; appearance: none; }
.cta__email img { display: block; height: 22px; width: auto; }

/* Legal / privacy page */
.legal__title { font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--navy); margin: 0 0 6px; letter-spacing: -0.01em; }
.legal__updated { color: var(--muted); font-size: 0.92rem; margin: 0 0 24px; }
.legal__heading { font-size: 1.25rem; color: var(--navy); margin: 32px 0 10px; }
.legal__controller { font-style: normal; line-height: 1.9; color: var(--ink); margin: 0 0 8px; }
.legal__controller strong { color: var(--navy); }
.legal__link { color: var(--ocean); text-decoration: none; font-weight: 600; }
.legal__link:hover { text-decoration: underline; }
.legal__email { display: inline-flex; align-items: center; gap: 8px; }
.legal__email img { display: inline-block; height: 18px; width: auto; vertical-align: middle; }
.legal__list { margin: 4px 0 0; padding-left: 20px; display: grid; gap: 6px; }
.legal__list li { color: var(--ink); }

/* 404 page */
.error404 { text-align: center; }
.error404__inner { max-width: 620px; margin-inline: auto; padding-block: 40px; }
.error404__code { font-size: clamp(4rem, 14vw, 8rem); font-weight: 800; line-height: 1; color: #4080c0; margin: 0; letter-spacing: -0.03em; }
.error404__title { font-size: clamp(1.5rem, 4vw, 2.2rem); color: var(--navy); margin: 8px 0 12px; }
.error404__text { color: var(--muted); font-size: 1.1rem; margin: 0 0 28px; }

/* Footer legal link */
.site-footer__sep { color: #6f869b; margin: 0 6px; }
.site-footer__legal { color: #c6d4e2; text-decoration: none; }
.site-footer__legal:hover { color: #fff; text-decoration: underline; }

/* Long-form responsive */
@media (max-width: 820px) {
    .platform { grid-template-columns: 1fr; gap: 24px; }
    .platform--rev .platform__shot { order: 0; }
    .split { grid-template-columns: 1fr; }
    /* Awards + fairs: force single column on mobile (ID rules above are more
       specific than the generic .split rule) so the photo goes full width. */
    #auszeichnungen .split,
    #messen .split { grid-template-columns: 1fr; }
    /* Awards: show the photo between the intro text and the three tiles. */
    #auszeichnungen .split-photo { order: -1; margin-bottom: 24px; }
    .photo-ph { min-height: 180px; }
}
