@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --bg-main: #F6F2EA;    
  --bg-white: #FFFFFF;
  --text-main: #121416;
  --text-muted: #6E6A63; 
  --accent: #B08D57;      
  --accent-dark: #7A5A2D; 
  --accent-light: #E6D2A8;
  --border-soft: rgba(18, 20, 22, 0.10);
  --shadow-soft: 0 18px 50px rgba(18, 20, 22, 0.10);

  /* GLOBAL TYPOGRAPHY */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', serif;
}

* {
  box-sizing: border-box;
}

html, body{
  margin:0;
  padding:0;

  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;

  color: var(--text-main);
  background: var(--bg-main);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-main);
}

h1 { font-size: 56px; }
h2 { font-size: 40px; }
h3 { font-size: 26px; }

p {
  margin: 0;
}

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

/* ================================
   GLOBAL BUTTONS
================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 22px;
  border-radius: 999px;

  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.08em;

  cursor: pointer;
  user-select: none;
  text-decoration: none;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px);
}

/* PRIMARY — BRONZE SHINE */
.btn-primary{
  color: #1B140B;
  border: 1px solid rgba(122,90,45,0.35);

  background:
    radial-gradient(120% 140% at 20% 10%, rgba(255,255,255,0.55), transparent 40%),
    linear-gradient(135deg, #E7D3AA 0%, #B08D57 40%, #7A5A2D 100%);

  box-shadow:
    0 20px 55px rgba(18,20,22,0.22),
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -10px 22px rgba(122,90,45,0.22);
}

.btn-primary:hover{
  box-shadow:
    0 30px 80px rgba(18,20,22,0.26),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -10px 22px rgba(122,90,45,0.24);
}

/* SECONDARY — clean ivory with bronze border */
.btn-secondary{
  color: var(--text-main);
  background:
    radial-gradient(120% 160% at 15% 10%,
      rgba(255,255,255,0.85),
      rgba(255,255,255,0.55) 55%,
      rgba(255,255,255,0.35) 100%
    );
  border: 1px solid rgba(176,141,87,0.35);

  box-shadow:
    0 16px 40px rgba(18,20,22,0.10),
    inset 0 1px 0 rgba(255,255,255,0.55);
}

.btn-secondary:hover{
  border-color: rgba(176,141,87,0.55);
  box-shadow:
    0 24px 60px rgba(18,20,22,0.14),
    inset 0 1px 0 rgba(255,255,255,0.60);
}

/* GHOST */
.btn-ghost {
  color: #0f172a;
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.04);
}

/* ================================
   RESPONSIVE TYPE SCALE
================================ */

@media (max-width: 1024px) {
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  h3 { font-size: 22px; }
}

@media (max-width: 640px) {
  html, body { font-size: 15px; }
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
}