/* Rieserhof — design tokens & base */
:root {
  --forest: #3F4A39;
  --forest-deep: #2C342A;
  --forest-darker: #1F2520;
  --oat: #DED6C3;
  --oat-soft: #E8E2D3;
  --oat-dim: rgba(222, 214, 195, 0.68);
  --oat-faint: rgba(222, 214, 195, 0.42);
  --burgundy: #5A1E20;
  --burgundy-hover: #6E2528;
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --script: "Parisienne", "Pinyon Script", cursive;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--oat);
  color: var(--forest);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.05;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button { cursor: pointer; border: none; background: none; }

/* Placeholder stripe pattern used anywhere an image is missing */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(63, 74, 57, 0.14) 0 2px,
      transparent 2px 12px
    ),
    linear-gradient(180deg, #c9c0a9 0%, #b5ac93 100%);
  overflow: hidden;
}
.ph--dark {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(222, 214, 195, 0.10) 0 2px,
      transparent 2px 12px
    ),
    linear-gradient(180deg, #2f3a2b 0%, #1e2620 100%);
}
.ph__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(63, 74, 57, 0.55);
}
.ph--dark .ph__label { color: rgba(222, 214, 195, 0.5); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
}

.hr-burgundy {
  height: 1px;
  background: var(--burgundy);
  border: 0;
  margin: 0;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 220ms ease;
  border-radius: 2px;
}
.btn--primary {
  background: var(--burgundy);
  color: var(--oat);
}
.btn--primary:hover { background: var(--burgundy-hover); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--oat);
  border: 1px solid var(--oat);
}
.btn--ghost:hover { background: var(--oat); color: var(--forest); }
.btn__arrow {
  display: inline-block;
  transition: transform 220ms ease;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* section spacing */
.section { padding: 140px 0; }
@media (max-width: 900px) { .section { padding: 90px 0; } }

/* Quiet fade-in for images/cards */
@keyframes slowRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: slowRise 900ms ease both; }
