/* ======================================================
   GLOBAL RESET & BASE
====================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-main: #faf7f4;
  --bg-soft: #f2ede7;
  --text-main: #1f1f1f;
  --text-muted: #6b6b6b;
  --accent-gold: #c8a76a;
  --accent-gold-soft: #e6d7c8;
  --radius-pill: 999px;
  --radius-card: 18px;
  --shadow-soft: 0 12px 32px rgba(0,0,0,0.08);
  --shadow-hover: 0 18px 44px rgba(0,0,0,0.12);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ======================================================
   TYPOGRAPHY
====================================================== */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 56px; margin-bottom: 18px; }
h2 { font-size: 36px; margin-bottom: 14px; }
h3 { font-size: 22px; margin-bottom: 10px; }

p {
  font-size: 16px;
  color: var(--text-main);
}

.lead {
  font-size: 18px;
  max-width: 720px;
}

.fine-print {
  font-size: 13px;
  color: var(--text-muted);
}

/* ======================================================
   NAVIGATION
====================================================== */
.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 20;
  padding: 20px 40px;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

/* ======================================================
   BUTTON SYSTEM (ONE SYSTEM ONLY)
====================================================== */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* PRIMARY */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #d6b889);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* OUTLINE / SECONDARY */
.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
  background: var(--accent-gold-soft);
  transform: translateY(-2px);
}

/* ACTIVE NAV STATE */
.nav .active {
  background: var(--accent-gold-soft);
  border-radius: var(--radius-pill);
}

/* ======================================================
   MICRO ELEMENTS
====================================================== */
.micro-chip {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-gold-soft);
  border-radius: var(--radius-pill);
  font-size: 12px;
  margin-bottom: 14px;
}

/* ======================================================
   LAYOUT HELPERS
====================================================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}

.page-content {
  padding-top: 140px;
}

.section {
  padding: 90px 0;
}

.soft-bg {
  background: var(--bg-soft);
}

/* ======================================================
   CARDS (USED BY SERVICES / CONTACT)
====================================================== */
.service-card,
.contact-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
}

.service-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Highlight card (PTNS etc.) */
.service-card.highlight {
  border: 1px solid var(--accent-gold);
  background: linear-gradient(
    180deg,
    #fff 0%,
    #f8f4ef 100%
  );
}

/* ======================================================
   GRID SYSTEMS
====================================================== */
.service-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

/* ======================================================
   CTA BLOCK
====================================================== */
.cta-block {
  text-align: center;
  padding: 90px 40px;
  background: var(--bg-soft);
}

.cta-block h2,
.cta-block h3 {
  margin-bottom: 12px;
}

/* ======================================================
   AVAILABILITY BADGE
====================================================== */
.availability-wrapper {
  margin: 30px 0;
}

.availability-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
}

.availability-badge.available {
  background: #e7f3ec;
  color: #2f6f4e;
}

/* ======================================================
   FOOTER (SAFE EVEN IF NOT USED)
====================================================== */
.site-footer {
  padding: 40px;
  font-size: 13px;
  text-align: center;
  color: var(--text-muted);
}

/* ======================================================
   MOBILE SAFETY
====================================================== */
@media (max-width: 768px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }

  .container {
    padding: 70px 24px;
  }

  .nav {
    gap: 10px;
  }
}

/* ======================================================
   REDUCED MOTION
====================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
