@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/Poppins-Light.woff2") format("woff2");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}

:root {
    --orange: #ec6b41;
    --orange-dark: #d5522a;
    --brown: #8e6c23;
    --brown-dark: #4d3c18;
    --cream: #f7f4ed;
    --paper: #fffdf9;
    --muted: #665f55;
    --line: #ded8ca;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    flex-direction: column;
    background: var(--paper);
    color: var(--brown-dark);
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 300;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-underline-offset: 4px;
}

a:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 5px;
}

::selection {
    background: var(--orange);
    color: #fff;
}

.wrap {
    width: calc(100% - 96px);
    max-width: 1180px;
    margin-inline: auto;
}

.site-header {
    display: flex;
    min-height: 112px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--line);
}

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

.brand img {
    display: block;
    width: 170px;
    height: 72px;
    object-fit: contain;
}

.site-header p,
.kicker,
.picture-copy span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.45px;
    text-transform: uppercase;
}

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

.content {
    display: grid;
    flex: 1;
    grid-template-columns: minmax(0, 1.14fr) minmax(340px, .86fr);
    gap: 74px;
    align-items: center;
    padding-block: 62px 70px;
}

.message {
    min-width: 0;
}

.kicker {
    margin-bottom: 28px;
    color: var(--brown);
}

h1 {
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: 1.13;
}

.pretitle,
.posttitle {
    display: block;
    font-size: clamp(28px, 3vw, 42px);
}

.domain {
    display: inline-block;
    max-width: 100%;
    margin: 16px 0 19px;
    padding: 7px 16px 11px;
    border-radius: 6px;
    background: var(--cream);
    color: var(--brown-dark);
    font-size: clamp(45px, 6vw, 76px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.065em;
    overflow-wrap: anywhere;
}

.domain > span {
    color: var(--orange);
}

.description {
    max-width: 590px;
    margin-top: 33px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.description a {
    color: var(--orange-dark);
    font-weight: 500;
}

.cta {
    display: inline-flex;
    margin-top: 29px;
    padding: 14px 20px;
    align-items: center;
    gap: 36px;
    border-radius: 5px;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s ease, transform .15s ease;
}

.cta span {
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
}

.cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.picture {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    border-radius: 3px 72px 3px 3px;
    background: var(--cream);
    box-shadow: 18px 18px 0 var(--brown);
    isolation: isolate;
}

.picture::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(77, 60, 24, .02) 35%, rgba(44, 31, 12, .82) 100%);
    content: "";
}

.picture img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
}

.picture-copy {
    position: absolute;
    right: 29px;
    bottom: 28px;
    left: 29px;
    z-index: 2;
    color: #fff;
}

.picture-copy span {
    display: block;
    margin-bottom: 8px;
}

.picture-copy strong {
    display: block;
    max-width: 390px;
    font-size: clamp(31px, 3.3vw, 47px);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: 1.04;
}

.footer {
    background: var(--brown-dark);
    color: #f4efe5;
}

.footer-inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
}

.footer nav {
    display: flex;
    gap: 25px;
}

.footer a {
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--orange);
}

@media (max-width: 960px) {
    .wrap { width: calc(100% - 64px); }
    .content { gap: 42px; }
    .picture { min-height: 410px; }
}

@media (max-width: 760px) {
    .wrap { width: calc(100% - 40px); }
    .site-header { min-height: 94px; }
    .site-header p { display: none; }
    .brand img { width: 148px; height: 64px; }
    .content { grid-template-columns: minmax(0, 1fr); gap: 45px; padding-block: 42px 51px; }
    .kicker { margin-bottom: 24px; }
    .pretitle, .posttitle { font-size: clamp(28px, 7vw, 38px); }
    .domain { font-size: clamp(43px, 12vw, 68px); }
    .description { margin-top: 28px; font-size: 16px; }
    .picture { width: calc(100% - 10px); min-height: 390px; border-top-right-radius: 55px; box-shadow: 10px 10px 0 var(--brown); }
    .picture-copy strong { font-size: 39px; }
    .footer-inner { min-height: 100px; flex-wrap: wrap; gap: 13px; padding-block: 23px; }
}

@media (max-width: 390px) {
    .footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
}
