﻿:root {
  --green: #4d5a43;
  --green-dark: #37432f;
  --rose: #d98d85;
  --ink: #243025;
  --muted: #657067;
  --line: #e7ddd7;
  --cream: #fff;
  --hero-bg: #fbf6f4;
  --contact-bg: #f7f6f3;
  --white: #fff;
  --shadow: 0 18px 45px rgba(63, 95, 66, .13);
  --container: 1200px;
  --side-gap: 64px;
  --container-width: min(var(--container), calc(100% - var(--side-gap)));
  --container-margin: max(calc(var(--side-gap) / 2), calc((100vw - var(--container)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 700;
}

h1 {
  font-size: clamp(40px, 5vw, 68px);
  max-width: 640px;
}

h1 span {
  color: var(--rose);
  font-style: italic;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 26px;
}

p {
  margin: 0 0 20px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(20px, 6vw, 96px);
  background: transparent;
  border-bottom: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3f5f42;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand small {
  letter-spacing: .26em;
  font-size: 15px;
}

.brand span {
  line-height: 1.05;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.9vw, 30px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
  white-space: nowrap;
  transition: color .25s ease, transform .25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s ease;
}

.nav a:hover {
  color: var(--green-dark);
  transform: translateY(-1px);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-actions,
.hero-buttons,
.cta-band {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-actions {
  flex-shrink: 0;
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .5);
  font-weight: 600;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--green);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.btn svg,
.phone svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.phone svg {
  color: var(--rose);
  transition: fill .2s ease, stroke .2s ease;
}

.phone:hover svg {
  fill: var(--rose);
  stroke: var(--rose);
}

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-ghost {
  color: var(--green-dark);
  background: rgba(255, 255, 255, .75);
}

.menu-toggle {
  display: none;
}

