* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2326;
  background-color: #f6f2ed;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 28px 0 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 18px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #1e2326;
}

.ad-label {
  margin-left: auto;
  font-size: 12px;
  max-width: 260px;
  color: #5b4d3b;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 0 50px;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 18px;
  color: #3b3f44;
  margin-bottom: 20px;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 360px;
}

.image-frame {
  background-color: #d7d0c6;
  overflow: hidden;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #1e2326;
  color: #f9f7f3;
  font-size: 14px;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: none;
}

.btn.alt {
  background-color: #cbb9a5;
  color: #1e2326;
}

.btn:hover {
  opacity: 0.88;
}

.section {
  padding: 50px 0;
}

.section.alt {
  background-color: #efe6dc;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.magazine-row .column {
  flex: 1 1 280px;
}

.magazine-row .column.wide {
  flex: 2 1 420px;
}

.highlight-card {
  padding: 22px;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 12px 30px rgba(30, 35, 38, 0.08);
}

.highlight-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(30, 35, 38, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 600;
  color: #2f2a24;
}

.testimonial {
  font-style: italic;
  color: #4a4f54;
}

.form-section {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(30, 35, 38, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: #3b3f44;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d2c7ba;
  font-size: 14px;
  font-family: inherit;
}

.inline-link {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta a {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #2e3a44;
  color: #f9f7f3;
  font-size: 13px;
}

.sticky-cta a:hover {
  opacity: 0.9;
}

.footer {
  padding: 40px 0 60px;
  font-size: 13px;
  color: #4a4f54;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0;
}

.footer-links a {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(30, 35, 38, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 36px 0 12px;
}

.page-hero h1 {
  font-size: clamp(28px, 3vw, 42px);
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(30, 35, 38, 0.08);
}

.story-banner {
  background-color: #1f2a33;
  color: #f4f1ec;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.notes-grid .note {
  flex: 1 1 200px;
  background-color: #f9f6f1;
  border-radius: 16px;
  padding: 18px;
}

.note strong {
  display: block;
  margin-bottom: 6px;
}

.banner-image {
  min-height: 220px;
}
