* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1b1a;
  --muted: #6d6a67;
  --paper: #f7f4ef;
  --accent: #2d6a4f;
  --accent-2: #b08968;
  --line: #e6e1da;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 6vw 10px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 60px;
}

.hero-wrap {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn:active {
  transform: translateY(1px);
}

.hero-image {
  flex: 1 1 320px;
  min-height: 360px;
  border-radius: 24px;
  background-color: #d6c9bd;
  background-image: url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?w=1400&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #161514;
  color: #f5f3ef;
}

.story-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.story-card {
  flex: 1 1 250px;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.story-card.dark {
  background: #23201d;
  color: #f7f4ef;
  border-color: #2f2b27;
}

.image-frame {
  background: #d8d2c8;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detail-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.detail-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-image {
  flex: 1 1 320px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.services-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.service-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.accordion-btn {
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.accordion-content {
  display: none;
  color: var(--muted);
}

.accordion-content.active {
  display: block;
}

.trust-band {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: stretch;
}

.trust-item {
  flex: 1 1 240px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.quote {
  font-style: italic;
}

.order-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.order-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.order-form input,
.order-form select,
.order-form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.order-form textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: center;
  margin-top: 30px;
  display: flex;
  gap: 12px;
  padding: 12px 18px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.sticky-cta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #0f0e0d;
  color: #f7f4ef;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer small {
  color: #bdb7af;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 560px;
  width: calc(100% - 40px);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.subpage-hero {
  padding: 50px 6vw 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.subpage-content {
  padding: 0 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.reference-list a {
  color: #d4c8b8;
  text-decoration: underline;
}

@media (max-width: 820px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .hero-wrap {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
