/* ============================================================
   ACROPOLE – Base styles, CSS variables, reset
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Caesar+Dressing&family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');

/* ----------------------------------------------------------
   CSS Custom Properties
   ---------------------------------------------------------- */
:root {
  /* Brand colours — bordeaux profond */
  --clr-red:       #7B1C2E;
  --clr-red-dark:  #5C1522;
  --clr-red-light: #A52840;
  --clr-gold:      #C9943A;
  --clr-gold-light:#E8B96A;

  /* Neutrals */
  --clr-dark:      #1A1A1A;
  --clr-dark-2:    #2C2C2C;
  --clr-mid:       #4A4A4A;
  --clr-muted:     #6B7280;
  --clr-border:    #E5E0D8;
  --clr-cream:     #FDF8F2;
  --clr-cream-2:   #FFF7EE;
  --clr-white:     #FFFFFF;

  /* Section backgrounds */
  --bg-dark-section: #1C1814;

  /* Typography */
  --font-brand:   'Caesar Dressing', serif;           /* logo, hero h1, section h1 */
  --font-heading: 'Lato', system-ui, sans-serif;      /* h2, h3, card titles, quotes */
  --font-body:    'Lato', system-ui, sans-serif;      /* body text, descriptions */

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container:  1200px;

  /* Transitions */
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.25s;
  --dur-med:  0.4s;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 50px rgba(0,0,0,0.18);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.10);

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* ----------------------------------------------------------
   Reset & Base
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--clr-dark);
  background: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ----------------------------------------------------------
   Typography helpers
   ---------------------------------------------------------- */
.font-brand   { font-family: var(--font-brand); }
.font-heading { font-family: var(--font-heading); }
.font-display { font-family: var(--font-heading); }

h1 {
  font-family: var(--font-brand);
  line-height: 1.1;
  color: var(--clr-dark);
}

h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--clr-dark);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-red);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(123, 28, 46, 0.25);
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

/* ----------------------------------------------------------
   Container
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all var(--dur-fast) var(--ease);
  min-height: 48px;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--clr-red);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(123, 28, 46, 0.35);
}
.btn-primary:hover {
  background: var(--clr-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 28, 46, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--clr-dark);
  border: 2px solid var(--clr-dark);
}
.btn-outline-dark:hover {
  background: var(--clr-dark);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--clr-gold);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(201,148,58,0.35);
}
.btn-gold:hover {
  background: #b5832e;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--clr-red);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(123, 28, 46, 0.35);
}
.btn-whatsapp:hover {
  background: var(--clr-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 28, 46, 0.45);
}

/* ----------------------------------------------------------
   Section helpers
   ---------------------------------------------------------- */
.section {
  padding-block: var(--section-py);
}

.section-dark {
  background: var(--bg-dark-section);
  color: var(--clr-white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--clr-white); }
.section-dark .section-badge {
  color: var(--clr-gold-light);
  border-color: rgba(201,148,58,0.3);
}

.section-cream   { background: var(--clr-cream); }
.section-cream-2 { background: var(--clr-cream-2); }

/* ----------------------------------------------------------
   Utility
   ---------------------------------------------------------- */
.overflow-hidden { overflow: hidden; }
