:root {
  --bg: #f7f7f5;
  --text: #111;
  --muted: #666;
  --accent: #b08a3c;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--bg);
  z-index: 10;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
}

/* PAGE WRAPPER */
.payments-page {
  padding-top: 160px;
  max-width: 1100px;
  margin: auto;
  padding-inline: 2rem;
}

/* HERO */
.payments-hero {
  text-align: center;
  margin-bottom: 6rem;
}

.payments-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.payments-hero p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 720px;
  margin: auto;
}

/* PAYMENT SECTIONS */
.payments-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
}

.payment-card {
  background: #fff;
  padding: 3rem;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.payment-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.payment-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.payment-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.payment-list li {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
  position: relative;
}

.payment-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.payment-note {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

/* BOTTOM NOTE */
.payments-note {
  text-align: center;
  max-width: 720px;
  margin: auto;
  margin-bottom: 6rem;
}

.payments-note p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
}

/* FOOTER */
.site-footer {
  background: #111;
  color: #eee;
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-col h5 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #bbb;
}

.footer-col p,
.footer-col li {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.4rem;
}

.footer-cta {
  display: inline-block;
  margin-top: 1rem;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .payments-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .payments-page {
    padding-inline: 1.5rem;
  }

  .payments-hero {
    margin-bottom: 4rem;
  }

  .payment-card {
    padding: 2.2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.logo {
  text-decoration: none;
  color: black;
}
.clickable-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.clickable-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
