:root {
  --cream: #f7f2e8;
  --white: #ffffff;
  --green: #2c4528;
  --forest: #3a5a32;
  --gray: #8a8a82;
  --gold: #c4a035;
  --line: #ddd4c6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--green);
  background: var(--cream);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.4;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 32px;
  background: var(--cream);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
}

.brand-text { display: flex; flex-direction: column; gap: 4px; }

.brand-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}

.brand-tag {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--green);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  min-height: 44px;
  line-height: 1.2;
}

.btn-call {
  background: var(--forest);
  color: var(--white);
  border: 2px solid var(--forest);
}

.btn-book {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #1a1a14;
}

.hero-img {
  width: 100%;
  height: min(70vw, 540px);
  object-fit: cover;
  object-position: center 38%;
}

.hero-blurb {
  position: absolute;
  left: 4%;
  bottom: 7%;
  max-width: 30rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.hero-blurb h1 {
  margin: 0 0 6px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 400;
  line-height: 1.2;
}

.hero-blurb p {
  margin: 0;
  font-size: clamp(14px, 1.45vw, 17px);
  font-weight: 400;
}

.rates, .machine { padding: 36px 32px 8px; }

.rates h2, .machine h2 {
  margin: 0 0 18px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--green);
}

.rate-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rate-cards li {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px 12px 18px;
  text-align: center;
}

.rate-cards .label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.rate-cards .value {
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--green);
}

.rate-note {
  margin: 20px 0 12px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 17px;
}

.machine { padding-bottom: 28px; }

.machine ul {
  margin: 0;
  padding: 0 0 0 1.15em;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 18px;
}

.machine li { margin: 6px 0; }

.site-footer {
  padding: 20px 32px 40px;
  font-size: 16px;
  font-family: "Libre Baskerville", Georgia, serif;
}

.site-footer a { color: var(--green); }

@media (min-width: 900px) {
  .site-header, .rates, .machine, .site-footer {
    padding-left: 48px;
    padding-right: 48px;
  }
  .brand img { width: 86px; height: 86px; }
  .brand-tag { font-size: 22px; }
  .hero-img { height: 540px; }
  .rate-cards {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
}

@media (max-width: 699px) {
  .site-header { flex-wrap: wrap; padding: 12px 16px; }
  .brand-tag { font-size: 16px; }
  .hero-blurb { left: 4%; right: 4%; max-width: none; }
  .rates, .machine, .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}
