* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1e1b18;
  --muted: #5d5a56;
  --accent: #b3342a;
  --accent-dark: #7e231d;
  --sand: #f5f0e8;
  --linen: #fbf7f1;
  --olive: #6a6d4f;
}

body {
  font-family: "Source Serif 4", "Times New Roman", serif;
  color: var(--ink);
  background: var(--linen);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

header {
  background: var(--linen);
  border-bottom: 1px solid #e6dfd3;
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.magazine {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 2.8vw, 3.4rem);
  line-height: 1.1;
}

.hero-text p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  transition: 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.hero-image {
  flex: 1 1 360px;
  background: url("assets/images/hero-traditions.svg") center/cover no-repeat;
  min-height: 320px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.feature-card {
  flex: 1 1 240px;
  background: var(--sand);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.split-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.split-columns .wide {
  flex: 2 1 360px;
}

.split-columns .narrow {
  flex: 1 1 260px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #eee2d1;
}

.section-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: var(--accent);
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.price-card {
  flex: 1 1 260px;
  border: 1px solid #eadfcd;
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price {
  font-size: 1.6rem;
  font-family: "Oswald", sans-serif;
  color: var(--accent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 18px;
  border-left: 2px solid #e0d4c2;
}

.timeline div {
  padding-left: 12px;
}

.quote-block {
  background: var(--olive);
  color: #fff;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery img {
  flex: 1 1 220px;
  border-radius: 16px;
  min-height: 180px;
  object-fit: cover;
}

.form-wrap {
  background: var(--sand);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.95rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd0be;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.footer {
  border-top: 1px solid #e6dfd3;
  background: #fff;
  padding: 32px 24px 60px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--accent);
  padding: 8px 10px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero img {
  border-radius: 20px;
  flex: 1 1 300px;
}

.page-hero .text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: #fff;
  border: 1px solid #e6dfd3;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-section {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #f0e6d8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
    font-size: 0.75rem;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: unset;
  }
}
