* {
  box-sizing: border-box;
}

:root {
  --cream: #f6f1ea;
  --olive: #5b6b4f;
  --wine: #7a2e2e;
  --charcoal: #2d2b28;
  --sand: #e7ddcf;
  --accent: #c46b3b;
  --cloud: #f3f5f2;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: var(--wine);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 28px 6vw 18px;
  background: var(--cloud);
  border-bottom: 1px solid #e0d7cb;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}

.ad-label {
  font-size: 12px;
  color: var(--charcoal);
  background: #efe7dc;
  padding: 6px 10px;
  border-radius: 18px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

nav a {
  font-size: 14px;
  letter-spacing: 0.02em;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 60px 6vw 70px;
  background-color: var(--sand);
  background: url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1400&q=80")
    center/cover no-repeat;
}

.hero-content {
  background: rgba(246, 241, 234, 0.93);
  max-width: 520px;
  padding: 32px;
  border-left: 8px solid var(--wine);
}

.hero h1 {
  margin-top: 0;
  font-size: 40px;
  line-height: 1.15;
}

.hero p {
  margin-bottom: 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 24px;
  border: 1px solid var(--wine);
  background: var(--wine);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.button.secondary {
  background: transparent;
  color: var(--wine);
}

.magazine-section {
  padding: 54px 6vw;
}

.magazine-section.alt {
  background: var(--sand);
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.column {
  flex: 1 1 280px;
}

.column.wide {
  flex: 2 1 420px;
}

.column.narrow {
  flex: 0.8 1 220px;
}

.image-card {
  background: #efe7dc;
  padding: 12px;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(45, 43, 40, 0.08);
}

.image-card img {
  border-radius: 16px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e4d9cc;
  display: flex;
  flex-direction: column;
}

.service-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  color: var(--olive);
  font-weight: 600;
}

.section-title {
  font-size: 28px;
  margin-top: 0;
}

.form-panel {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e4d9cc;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--charcoal);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7cbbd;
  font-size: 14px;
  background: #fff;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 28px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(45, 43, 40, 0.2);
  z-index: 20;
}

.sticky-cta button {
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

footer {
  background: var(--charcoal);
  color: #f5efe7;
  padding: 40px 6vw;
}

footer a {
  color: #f5efe7;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns div {
  flex: 1 1 220px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #e4d9cc;
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 20px rgba(45, 43, 40, 0.18);
  z-index: 30;
}

.cookie-banner p {
  margin-top: 0;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: 1px solid var(--olive);
  border-radius: 18px;
  padding: 8px 14px;
  background: var(--olive);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--olive);
}

.page-hero {
  padding: 50px 6vw;
  color: #fff;
  display: flex;
  align-items: flex-end;
  min-height: 260px;
  background-color: #6a5a4f;
}

.page-hero.about {
  background: url("https://images.unsplash.com/photo-1473093295043-cdd812d0e601?w=1400&q=80")
    center/cover no-repeat;
}

.page-hero.services {
  background: url("https://images.unsplash.com/photo-1525755662778-989d0524087e?w=1400&q=80")
    center/cover no-repeat;
}

.page-hero.contact {
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80")
    center/cover no-repeat;
}

.page-hero h1 {
  margin: 0;
  background: rgba(45, 43, 40, 0.75);
  padding: 14px 18px;
  border-radius: 16px;
}

.background-panel {
  background: #5d4d41;
  padding: 40px;
  border-radius: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.background-panel.image-one {
  background: url("https://images.unsplash.com/photo-1506089676908-3592f7389d4d?w=1400&q=80")
    center/cover no-repeat;
}

.background-panel.image-one::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(45, 43, 40, 0.6);
}

.background-panel.image-one > * {
  position: relative;
  z-index: 1;
}

.page-content {
  padding: 50px 6vw 60px;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e4d9cc;
}

.references a {
  color: #f5efe7;
}

.hidden {
  display: none;
}

@media (max-width: 760px) {
  .hero {
    padding: 40px 6vw 50px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6vw;
  }
}
