/* Simple Cremations Sydney — Global Styles */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --sage: #8a9e8c;
  --sage-light: #c4d4c6;
  --sage-dark: #4a6b4d;
  --stone: #f5f2ee;
  --stone-dark: #e8e3db;
  --charcoal: #2c2c2c;
  --warm-white: #faf8f5;
  --text-muted: #6b6b6b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 300;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
}

em { font-style: italic; color: var(--sage-dark); }

p { color: var(--text-muted); font-weight: 300; line-height: 1.9; }

a { color: var(--sage-dark); }

/* Navigation */
.site-header {
  background: rgba(250,248,245,0.97);
  border-bottom: 1px solid var(--stone-dark);
  padding: 1.2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  text-decoration: none;
}

.site-logo span { color: var(--sage-dark); }

.wp-block-navigation {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
}

.wp-block-navigation a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.wp-block-navigation a:hover { color: var(--charcoal); }

.nav-cta {
  background: var(--sage-dark) !important;
  color: white !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 2px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--sage-dark);
  color: white;
  padding: 0.85rem 1.8rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
}

.btn-primary:hover { background: #3a5a3d; color: white; }

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  padding: 0.85rem 1.8rem;
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 2px;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  background: transparent;
}

.btn-secondary:hover { background: var(--charcoal); color: white; }

.btn-white {
  display: inline-block;
  background: white;
  color: var(--sage-dark);
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
}

/* Hero Section */
.hero-section {
  background: var(--stone);
  padding: 5rem 6rem 4rem;
  border-bottom: 1px solid var(--stone-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.hero-price-box {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  background: white;
  border: 1px solid var(--stone-dark);
  padding: 0.9rem 1.4rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.price-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'DM Sans', sans-serif;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--charcoal);
}

.price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}

.hero-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Inclusions Card */
.inclusions-card {
  background: var(--charcoal);
  padding: 2.5rem;
  border-radius: 2px;
  color: white;
}

.inclusions-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: white;
}

.inclusions-list { list-style: none; }

.inclusions-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  line-height: 1.4;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.inclusions-list li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

.inclusions-list li:last-child { border-bottom: none; }

/* Trust Bar */
.trust-bar {
  background: var(--charcoal);
  padding: 1.2rem 6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.775rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.trust-dot {
  width: 5px;
  height: 5px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Content Sections */
.section-stone { background: var(--stone); }
.section-charcoal { background: var(--charcoal); }
.section-warm-white { background: var(--warm-white); }

.section-padding { padding: 5rem 6rem; }
.section-padding-lg { padding: 6rem; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-family: 'DM Sans', sans-serif;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Process Steps */
.steps-grid { display: grid; gap: 2rem; }

.step-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--stone-dark);
}

.step-card:last-child { border-bottom: none; }

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--sage-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}

.step-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1.5rem 0;
}

.pricing-table th {
  background: var(--charcoal);
  color: white;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 400;
  font-size: 0.8rem;
  font-family: 'DM Sans', sans-serif;
}

.pricing-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--stone-dark);
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}

.pricing-table tr:nth-child(even) td { background: var(--stone); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--stone-dark);
  padding: 1.25rem 0;
}

.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.faq-answer {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

/* CTA Band */
.cta-band {
  background: var(--sage-dark);
  padding: 5rem 6rem;
  text-align: center;
  color: white;
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 0.75rem;
  color: white;
}

.cta-band p {
  opacity: 0.8;
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: white;
  font-family: 'DM Sans', sans-serif;
}

.cta-phone {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: white;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.cta-or {
  opacity: 0.5;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'DM Sans', sans-serif;
  display: block;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: 'DM Sans', sans-serif;
}

.footer-logo {
  color: rgba(255,255,255,0.9);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.footer-links { display: flex; gap: 2rem; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

/* Suburb Tags */
.suburb-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }

.suburb-tag {
  background: var(--stone);
  border: 1px solid var(--stone-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}

/* Callout Box */
.callout {
  background: var(--stone);
  border-left: 3px solid var(--sage-dark);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 2px 2px 0;
}

.callout p {
  color: var(--charcoal);
  font-size: 0.925rem;
  margin: 0;
  line-height: 1.7;
}

/* Accreditation Logos */
.accreditation-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 6rem;
  background: var(--warm-white);
  border-top: 1px solid var(--stone-dark);
  flex-wrap: wrap;
}

.accreditation-bar img {
  height: 50px;
  width: auto;
  opacity: 0.85;
  filter: grayscale(20%);
}

/* Responsive */
@media (max-width: 900px) {
  .site-header { padding: 1rem 1.5rem; }
  .wp-block-navigation { display: none; }
  .hero-section { grid-template-columns: 1fr; padding: 3.5rem 1.5rem 3rem; gap: 2.5rem; }
  .two-col { grid-template-columns: 1fr; }
  .section-padding { padding: 4rem 1.5rem; }
  .section-padding-lg { padding: 4rem 1.5rem; }
  .trust-bar { padding: 1.2rem 1.5rem; }
  .cta-band { padding: 4rem 1.5rem; }
  .site-footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
  .accreditation-bar { padding: 1.5rem; justify-content: center; }
}

@media (max-width: 600px) {
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}

/* WordPress Block Editor Overrides */
.wp-site-blocks { padding: 0; }
.entry-content { max-width: 100%; }
.wp-block-group { margin: 0; }

/* Smooth transitions */
a, button { transition: all 0.2s ease; }

/* Selection color */
::selection {
  background: var(--sage-light);
  color: var(--charcoal);
}
