:root {
--dark: #101713;
--dark-soft: #17211b;
--green: #214b38;
--green-light: #edf3ee;
--gold: #b99a5a;
--cream: #f6f3ed;
--white: #ffffff;
--text: #202522;
--muted: #777d78;
--border: #e4e1da;
}

* {
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
margin: 0;
background: var(--cream);
color: var(--text);
font-family: Tahoma, "Segoe UI", sans-serif;
}

button,
input,
select,
textarea {
font-family: inherit;
}

button {
cursor: pointer;
}

.site {
width: min(1180px, 100%);
margin: auto;
padding: 18px;
}

/* ===============================
HEADER
================================ */

.header {
height: 72px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 8px 0 4px;
}

.brand {
display: flex;
align-items: center;
gap: 11px;
}

.brand-mark {
width: 44px;
height: 44px;

display: grid;
place-items: center;

border-radius: 14px;

background: var(--dark);
color: var(--gold);

font-size: 22px;
font-weight: bold;
}

.brand-text {
display: flex;
flex-direction: column;
gap: 2px;
}

.brand-text strong {
font-size: 18px;
color: var(--dark);
}

.brand-text span {
font-size: 11px;
color: var(--muted);
}

.header-login {
padding: 10px 20px;

border: 1px solid var(--green);
border-radius: 12px;

background: transparent;
color: var(--green);

font-size: 13px;

transition: 0.2s;
}

.header-login:hover {
background: var(--green);
color: white;
}

/* ===============================
HERO
================================ */

.hero {
position: relative;

min-height: 500px;

overflow: hidden;

border-radius: 30px;

background:
linear-gradient(
90deg,
rgba(10, 18, 14, 0.95) 0%,
rgba(10, 18, 14, 0.72) 45%,
rgba(10, 18, 14, 0.20) 100%
),
linear-gradient(
135deg,
#1c382a,
#0e1511
);

box-shadow:
0 20px 55px rgba(0, 0, 0, 0.13);
}

.hero::after {
content: "";

position: absolute;

width: 420px;
height: 420px;

left: -140px;
bottom: -200px;

border-radius: 50%;

border: 1px solid rgba(185, 154, 90, 0.25);
}

.hero-content {
position: relative;

z-index: 2;

min-height: 500px;

max-width: 600px;

padding: 80px 70px;

display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;

color: white;
}

.hero-label {
color: #d5bd86;

font-size: 13px;

margin-bottom: 18px;

letter-spacing: 0.3px;
}

.hero h1 {
margin: 0;

font-size: clamp(42px, 6vw, 70px);

line-height: 1.15;

font-weight: 500;

letter-spacing: -1px;
}

.hero p {
max-width: 460px;

margin: 24px 0 30px;

color: #dfe4e0;

font-size: 15px;

line-height: 2.1;
}

.hero-button {
min-width: 190px;

padding: 15px 20px;

display: flex;
align-items: center;
justify-content: center;

gap: 22px;

border: 1px solid var(--gold);
border-radius: 14px;

background: var(--gold);
color: #17150f;

font-size: 14px;
font-weight: bold;

transition: 0.25s;
}

.hero-button span {
font-size: 20px;
}

.hero-button:hover {
transform: translateY(-3px);

box-shadow:
0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ===============================
SERVICES
================================ */

.services {
padding: 80px 8px 30px;
}

.section-heading {
margin-bottom: 28px;
}

.section-heading > span {
color: var(--gold);

font-size: 12px;

font-weight: bold;
}

.section-heading h2 {
margin: 7px 0;

font-size: 30px;

font-weight: 500;

color: var(--dark);
}

.section-heading p {
margin: 0;

color: var(--muted);

font-size: 13px;
}

.service-grid {
display: grid;

grid-template-columns:
repeat(3, 1fr);

gap: 15px;
}

.service-card {
position: relative;

min-height: 190px;

padding: 26px;

border: 1px solid var(--border);

border-radius: 22px;

background: white;

display: flex;

flex-direction: column;

align-items: flex-start;

justify-content: space-between;

text-align: right;

transition: 0.25s;
}

.service-card:hover {
transform: translateY(-5px);

border-color: #cfc8b8;

box-shadow:
0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-card.featured {
background: var(--dark);

border-color: var(--dark);

color: white;
}

.service-icon {
width: 48px;
height: 48px;

border-radius: 50%;

display: grid;
place-items: center;

background: var(--green-light);

color: var(--green);

font-size: 12px;
font-weight: bold;
}

.featured .service-icon {
background: rgba(185, 154, 90, 0.16);

color: var(--gold);
}

.service-info strong {
display: block;

margin-bottom: 7px;

font-size: 18px;

font-weight: 600;
}

.service-info small {
color: var(--muted);

font-size: 11px;
}

.featured .service-info small {
color: #bfc8c1;
}

.service-arrow {
position: absolute;

left: 24px;
bottom: 22px;

color: var(--green);

font-size: 24px;
}

.featured .service-arrow {
color: var(--gold);
}

/* ===============================
TRUST
================================ */

.trust {
margin: 45px 8px;

padding: 28px 20px;

border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);

display: grid;

grid-template-columns:
1fr auto 1fr auto 1fr;

align-items: center;

gap: 25px;
}

.trust-item {
text-align: center;
}

.trust-item strong {
display: block;

margin-bottom: 7px;

color: var(--green);

font-size: 15px;
}

.trust-item span {
color: var(--muted);

font-size: 11px;
}

.trust-divider {
width: 1px;
height: 35px;

background: var(--border);
}

/* ===============================
SALON ENTRY
================================ */

.salon-entry {
margin: 35px 8px;

padding: 24px 28px;

border-radius: 20px;

background: var(--green);

color: white;

display: flex;

align-items: center;

justify-content: space-between;

gap: 20px;
}

.salon-entry div {
display: flex;

flex-direction: column;

gap: 7px;
}

.salon-entry div span {
color: #c8d8ce;

font-size: 11px;
}

.salon-entry div strong {
font-size: 17px;
}

.salon-entry button {
padding: 11px 18px;

border: 1px solid var(--gold);

border-radius: 11px;

background: var(--gold);

color: #17150f;

font-size: 12px;
font-weight: bold;

display: flex;

align-items: center;

gap: 12px;
}

.salon-entry button span {
font-size: 18px;
}

/* ===============================
FOOTER
================================ */

footer {
padding: 30px 8px 15px;

display: flex;

flex-direction: column;

align-items: center;

gap: 7px;

text-align: center;

color: var(--muted);

font-size: 11px;
}

footer strong {
color: var(--green);

font-size: 14px;
}

footer small {
margin-top: 5px;

line-height: 1.8;
}

/* ===============================
MODAL
================================ */

.modal {
display: none;

position: fixed;

inset: 0;

z-index: 1000;

padding: 18px;

background: rgba(8, 12, 10, 0.72);

align-items: center;

justify-content: center;
}

.modal.show {
display: flex;
}

.modal-box {
position: relative;

width: min(620px, 100%);

max-height: 90vh;

overflow-y: auto;

padding: 30px;

border-radius: 24px;

background: white;

box-shadow:
0 25px 70px rgba(0, 0, 0, 0.25);
}

.modal-close {
position: absolute;

left: 15px;
top: 10px;

width: 38px;
height: 38px;

border: none;

background: transparent;

color: #777;

font-size: 29px;
}

.modal-title {
padding-left: 35px;

margin-bottom: 22px;

color: var(--green);

font-size: 22px;

font-weight: bold;
}

.modal-body {
line-height: 2;
}

/* ===============================
FORMS
================================ */

.custom-form {
display: flex;

flex-direction: column;

gap: 16px;
}

.form-group {
display: flex;

flex-direction: column;

gap: 7px;
}

.form-group label {
font-size: 13px;

font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;

padding: 13px 14px;

border: 1px solid #d9d9d5;

border-radius: 12px;

background: #fafafa;

color: var(--text);

font-size: 14px;

outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
border-color: var(--green);

background: white;

box-shadow:
0 0 0 3px rgba(33, 75, 56, 0.08);
}

.form-group textarea {
min-height: 100px;

resize: vertical;
}

.form-row {
display: grid;

grid-template-columns: 1fr 1fr;

gap: 12px;
}

.primary-btn {
width: 100%;

padding: 14px;

border: none;

border-radius: 13px;

background: var(--green);

color: white;

font-size: 14px;

font-weight: bold;
}

.primary-btn:hover {
background: #183b2c;
}

.primary-btn:disabled {
opacity: 0.6;

cursor: not-allowed;
}

.info-box {
padding: 18px;

border-radius: 15px;

background: #f7f7f4;

line-height: 2;
}

.info-box p {
margin: 0 0 12px;
}

.info-box p:last-child {
margin-bottom: 0;
}

/* ===============================
RESPONSIVE
================================ */

@media (max-width: 800px) {

.hero {
min-height: 430px;
}

.hero-content {
min-height: 430px;

```
padding: 55px 40px;
```

}

.service-grid {
grid-template-columns: 1fr;
}

.service-card {
min-height: 145px;
}

.trust {
grid-template-columns: 1fr;

```
gap: 20px;
```

}

.trust-divider {
width: 60px;
height: 1px;

```
margin: auto;
```

}

}

@media (max-width: 520px) {

.site {
padding: 10px;
}

.header {
height: 65px;
}

.brand-mark {
width: 40px;
height: 40px;

```
border-radius: 12px;

font-size: 19px;
```

}

.brand-text strong {
font-size: 16px;
}

.header-login {
padding: 9px 16px;

```
font-size: 12px;
```

}

.hero {
min-height: 430px;

```
border-radius: 23px;
```

}

.hero-content {
min-height: 430px;

```
padding: 40px 25px;
```

}

.hero h1 {
font-size: 43px;
}

.hero p {
font-size: 13px;

```
line-height: 2;
```

}

.hero-button {
width: 100%;
}

.services {
padding-top: 55px;
}

.section-heading h2 {
font-size: 25px;
}

.service-card {
min-height: 150px;

```
padding: 22px;
```

}

.salon-entry {
margin-left: 0;
margin-right: 0;

```
padding: 20px;

align-items: flex-start;

flex-direction: column;
```

}

.salon-entry button {
width: 100%;

```
justify-content: center;
```

}

.modal {
padding: 9px;
}

.modal-box {
padding: 25px 17px;

```
border-radius: 20px;
```

}

.form-row {
grid-template-columns: 1fr;
}

}
