@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@300;500;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --accent: #b0252f;
  --accent-dark: #7c131b;
  --sand: #f4efe9;
  --mist: #eef1f5;
  --paper: #fffdfb;
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page-header {
  padding: 32px 6vw 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.top-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  background: var(--sand);
  padding: 48px 6vw 40px;
}

.hero-inner {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.hero-title {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  width: fit-content;
}

.story {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 6vw 56px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.story-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-section h2,
.story-section h3 {
  font-family: "Fraunces", serif;
  margin: 0;
}

.story-split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-split.reverse {
  flex-direction: column-reverse;
}

.pull-quote {
  background: var(--mist);
  padding: 26px;
  border-left: 4px solid var(--accent);
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
}

.highlight-box {
  background: white;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card,
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card h4 {
  margin: 0;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-secondary,
.button-outline {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-secondary {
  background: var(--ink);
  color: white;
}

.button-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.layered {
  background: linear-gradient(180deg, #f6f0ea 0%, #fff 100%);
  padding: 24px;
  border-radius: 24px;
}

.form-panel {
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d1cc;
  font-family: inherit;
  font-size: 1rem;
}

.form-panel button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.form-panel button:hover {
  background: var(--accent-dark);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 600;
  z-index: 20;
}

.footer {
  background: #111;
  color: #f5f2ee;
  padding: 36px 6vw;
}

.footer a {
  color: #f7b4ba;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #111;
  color: #f5f2ee;
  padding: 16px;
  border-radius: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #f7b4ba;
  color: #111;
}

.cookie-reject {
  background: transparent;
  color: #f5f2ee;
  border: 1px solid #f5f2ee;
}

.page-hero {
  background: var(--mist);
  padding: 46px 6vw;
}

.page-hero h1 {
  font-family: "Fraunces", serif;
  margin: 0;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-grid .info-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .story-split,
  .card-row {
    flex-direction: row;
  }

  .story-split.reverse {
    flex-direction: row-reverse;
  }

  .story-split > div,
  .story-split figure,
  .card-row > article {
    flex: 1;
  }

  .info-grid {
    flex-direction: row;
  }

  .info-grid .info-card {
    flex: 1;
  }
}
