:root {
    --bg: #f5f3ef;
    --surface: #ffffff;
    --surface-dark: #171717;
    --text: #1b1b1b;
    --text-soft: #66625c;
    --line: #d9d5ce;
    --accent: #b08a57;
    --accent-dark: #8f6c3f;
    --max-width: 1240px;
    --narrow-width: 820px;
    --radius: 2px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

h1 {
    max-width: 760px;
    margin-bottom: 28px;
    font-size: clamp(3rem, 5.2vw, 5.3rem);
}

h2 {
    max-width: 900px;
    margin-bottom: 28px;
    font-size: clamp(2.2rem, 4.5vw, 4.6rem);
}

h3 {
    margin-bottom: 16px;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

p {
    color: var(--text-soft);
}

main {
    overflow: hidden;
}

.section-inner {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
}

.section-inner--narrow {
    width: min(calc(100% - 40px), var(--narrow-width));
}

section {
    padding: 110px 0;
}

.eyebrow {
    margin-bottom: 22px;
    color: var(--accent-dark);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-lead {
    max-width: 760px;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(245, 243, 239, 0.94);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 40px), var(--max-width));
    min-height: 84px;
    margin: 0 auto;
    gap: 30px;
}

.site-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.site-brand__name {
    font-size: 1.05rem;
    font-weight: 700;
}

.site-brand__role {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.94rem;
}

.site-navigation a {
    transition: opacity 0.2s ease;
}

.site-navigation a:hover {
    opacity: 0.55;
}

.site-navigation__cta {
    padding: 13px 18px;
    background: var(--text);
    color: #fff;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.hero {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 84px);
    padding: 80px 0 60px;
    background-position: 68% center;
    background:
        linear-gradient(rgba(15, 15, 15, 0.38), rgba(15, 15, 15, 0.58)),
        url("/images/hero-corporate-photographer-germany.jpg") center/cover no-repeat;
    color: #fff;
}

.hero__content {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
}

.hero .eyebrow,
.hero p {
    color: rgba(255, 255, 255, 0.8);
}

.hero__intro {
    max-width: 680px;
    margin-bottom: 36px;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 42px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border: 1px solid transparent;
    font-size: 0.96rem;
    font-weight: 700;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.button--primary {
    background: var(--accent);
    color: #fff;
}

.button--primary:hover {
    background: var(--accent-dark);
}

.button--secondary {
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
}

.button--secondary:hover {
    background: #fff;
    color: var(--text);
}

.hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.hero__facts span {
    position: relative;
}

.hero__facts span:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -17px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    content: "";
    transform: translateY(-50%);
}

.intro {
    background: var(--surface);
}

.intro p:not(.eyebrow),
.about p:not(.eyebrow),
.contact p:not(.eyebrow) {
    max-width: 760px;
    font-size: 1.16rem;
}

.services,
.process {
    background: var(--bg);
}

.service-grid,
.offer-grid,
.process-grid {
    display: grid;
    gap: 1px;
    margin-top: 54px;
    background: var(--line);
    border: 1px solid var(--line);
}

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

.service-card,
.offer-card,
.process-grid article {
    min-height: 270px;
    padding: 34px;
    background: var(--surface);
}

.service-card p,
.offer-card p,
.process-grid p {
    margin-bottom: 0;
}

.work {
    background: var(--surface-dark);
    color: #fff;
}

.work h2 {
    color: #fff;
}

.work p {
    color: rgba(255, 255, 255, 0.7);
}

.work .eyebrow {
    color: #d7b98f;
}

.portfolio-placeholder {
    display: grid;
    place-items: center;
    min-height: 420px;
    margin-top: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #222;
    text-align: center;
}

.portfolio-placeholder p {
    margin: 0;
}

.offers {
    background: #ebe7e0;
}

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

.offer-card {
    min-height: 420px;
}

.offer-card ul {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.offer-card li {
    padding: 11px 0;
    border-top: 1px solid var(--line);
    color: var(--text-soft);
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.process-number {
    display: block;
    margin-bottom: 70px;
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.about {
    background: var(--surface);
}

.contact {
    background: var(--surface-dark);
    color: #fff;
}

.contact h2 {
    color: #fff;
}

.contact p {
    color: rgba(255, 255, 255, 0.7);
}

.contact .eyebrow {
    color: #d7b98f;
}

.contact .button {
    margin-top: 20px;
}

.site-footer {
    padding: 60px 0 30px;
    background: #0f0f0f;
    color: #fff;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
    gap: 40px;
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
}

.site-footer__brand span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.9rem;
}

.site-footer__contact,
.site-footer__navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover {
    color: #fff;
}

.site-footer__meta {
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    gap: 20px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.8rem;
}

@media (max-width: 980px) {
    .site-navigation {
        display: none;
        position: absolute;
        top: 84px;
        right: 0;
        left: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 25px 20px 30px;
        border-bottom: 1px solid var(--line);
        background: var(--bg);
    }

    .site-navigation--open {
        display: flex;
    }

    .site-navigation__cta {
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .service-grid,
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 680px) {
    body {
        font-size: 16px;
    }

    section {
        padding: 78px 0;
    }

    .site-header__inner {
        min-height: 74px;
    }

    .site-navigation {
        top: 74px;
    }

    .site-brand__role {
        font-size: 0.66rem;
    }

    .hero {
        min-height: calc(100vh - 74px);
        padding: 90px 0 48px;
    }

    h1 {
        font-size: clamp(2.7rem, 13vw, 4.5rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3.3rem);
    }

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

    .button {
        width: 100%;
    }

    .hero__facts {
        flex-direction: column;
        gap: 8px;
    }

    .hero__facts span::after {
        display: none;
    }

    .service-grid,
    .offer-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .offer-card,
    .process-grid article {
        min-height: auto;
        padding: 28px;
    }

    .process-number {
        margin-bottom: 40px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-footer__meta {
        flex-direction: column;
    }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 50px;
}

.portfolio-item {
    margin: 0;
    background: #222;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
}

.portfolio-item figcaption {
    display: flex;
    flex-direction: column;
    min-height: 92px;
    padding: 18px 18px 18px;
}

.portfolio-item figcaption span {
    margin-bottom: 6px;
    color: #d7b98f;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.portfolio-item figcaption strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 820px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
.portfolio-item figcaption strong {
    line-height: 1.35;
}

.portfolio-item--wide {
    grid-column: span 1;
}

.portfolio-item--wide img {
    aspect-ratio: 16 / 9;
    min-height: 0;
}

@media (max-width: 820px) {
    .portfolio-item--wide {
        grid-column: span 1;
    }
}
.form-grid {
    grid-template-columns: 1fr;
}

.form-field--full {
    grid-column: auto;
}
.contact-form {
    margin-top: 48px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

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

.form-field label {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.form-field input,
.form-field select {
    min-height: 54px;
    padding: 0 16px;
}

.form-field textarea {
    min-height: 190px;
    padding: 15px 16px;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--accent);
}

.form-field select option {
    color: #111;
    background: #fff;
}

.form-field--checkbox {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 12px;
}

.form-field--checkbox input {
    width: 18px;
    min-height: 18px;
    margin: 3px 0 0;
}

.form-field--checkbox label {
    font-weight: 400;
    font-size: 0.82rem;
    line-height: 1.55;
}

.form-field--checkbox a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.contact-form .button {
    min-width: 180px;
    margin-top: 30px;
    border: 0;
    cursor: pointer;
}

.form-note {
    margin-top: 14px;
    font-size: 0.78rem !important;
}

.form-message {
    margin-top: 32px;
    padding: 16px 18px;
    border: 1px solid;
}

.form-message--success {
    border-color: rgba(180, 215, 170, 0.65);
    background: rgba(75, 115, 65, 0.25);
    color: #e4f2df;
}

.form-message--error {
    border-color: rgba(230, 145, 145, 0.65);
    background: rgba(130, 55, 55, 0.25);
    color: #f4dddd;
}

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

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

    .contact-form .button {
        width: 100%;
    }
}

.legal-page {
    background: var(--surface);
}

.legal-page h1 {
    max-width: 900px;
    color: var(--text);
    font-size: clamp(2.8rem, 5vw, 5.3rem);
}

.legal-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 38px 0 70px;
}

.legal-navigation a {
    padding: 11px 15px;
    border: 1px solid var(--line);
    background: var(--bg);
    font-size: 0.88rem;
}

.legal-navigation a:hover {
    background: var(--text);
    color: #fff;
}

.legal-section {
    padding: 70px 0 20px;
    border-top: 1px solid var(--line);
}

.legal-section:first-of-type {
    border-top: 0;
}

.legal-section h2 {
    margin-bottom: 45px;
    font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.legal-section h3 {
    margin-top: 42px;
    margin-bottom: 13px;
    font-size: 1.25rem;
}

.legal-section p,
.legal-section li {
    color: var(--text-soft);
}

.legal-section p {
    max-width: 760px;
}

.legal-section ul {
    max-width: 760px;
    padding-left: 22px;
}

.legal-section li {
    margin-bottom: 7px;
}

.legal-section a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.portfolio-grid {
    grid-template-columns: repeat(6, 1fr);
}

.portfolio-item {
    grid-column: span 2;
}

.portfolio-item--wide {
    grid-column: span 3;
}
.service-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.service-card--link:hover {
  background: #f5f3ee;
}

.service-card--link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -3px;
}
