* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f3ee;
    color: #1f2933;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1100px, 90%);
    margin: 0 auto;
}

/* Header */

header {
    background: #f5f3ee;
    border-bottom: 1px solid #ddd9d0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1f2933;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.logo-mark path:nth-child(4),
.logo-mark path:nth-child(5) {
    fill: currentColor;
    stroke: none;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: #39434d;
}

nav a:hover {
    color: #17202a;
}

/* General sections */

section {
    padding: 45px 0;
}
section + section {
    padding-top: 30px;
}

.eyebrow {
    margin: 0 0 18px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.1;
}

h1 {
    max-width: 850px;
    margin-bottom: 28px;
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    letter-spacing: -0.045em;
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.03em;
}

h3 {
    margin-bottom: 15px;
    font-size: 1.35rem;
}

p {
    font-size: 1.05rem;
}

/* Hero */

.hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: #f5f3ee;
}

.hero .container {
    max-width: 1100px;
}

.hero .intro {
    max-width: 700px;
    margin-bottom: 32px;
    font-size: 1.2rem;
    color: #4d5964;
}

.button {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 4px;
    background: #1f2933;
    color: #ffffff;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
        transform: translateY(-2px);
        background: #17202a;
}

@media (max-width:700px){
    header .container{
        flex-direction: column;
       align-items: flex-start; 
    }
nav {
    display: flex;
    gap: 15px;
flex-wrap: wrap;
}
}
