*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #0f140d;
  --parchment:  #e7e1c9;
  --parchment2: #1c2618;
  --gold:       #b4783b;
  --gold-light: #c9974f;
  --forest:     #33502c;
  --forest-light: #4a6b40;
  --mist:       #c9d4b9;
  --shadow:     rgba(0,0,0,0.45);
  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body:    'Crimson Pro', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--mist);
  background-color: var(--ink);
}

a { color: var(--gold-light); }
a:hover { color: var(--gold); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

/* ── HEADER / HERO ── */
header {
  background: var(--ink);
  color: var(--parchment);
  padding: 4rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}
header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(74,107,64,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(180,120,59,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 700px; margin: 0 auto; }
.dragon {
  font-size: 3rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  animation: sway 6s ease-in-out infinite;
  display: inline-block;
}
@keyframes sway {
  0%,100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}
header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  color: var(--gold-light);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.tagline {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--mist);
  margin-bottom: 2rem;
}
.hero-cta {
  display: inline-block;
  background: var(--forest);
  color: var(--parchment);
  text-decoration: none;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--forest-light);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hero-cta:hover {
  background: var(--gold);
  border-color: var(--gold-light);
  color: var(--ink);
}

/* ── NAV ── */
nav {
  background: var(--forest);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px var(--shadow);
  border-bottom: 1px solid var(--gold);
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
nav a {
  display: block;
  padding: 0.85rem 1.25rem;
  color: var(--mist);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--gold-light); }

/* ── SECTIONS ── */
section { padding: 4rem 2rem; }
.section-inner { max-width: 740px; margin: 0 auto; }
.alt-bg { background: var(--parchment2); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 2rem;
}

.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin: 2rem 0;
  letter-spacing: 0.5rem;
  opacity: 0.7;
}

p { margin-bottom: 1.25rem; }

/* ── ABOUT photo + text ── */
.about-flex {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about-photo {
  flex: 0 0 220px;
  width: 220px;
  height: 220px;
  max-width: 80vw;
  max-height: 80vw;
  border-radius: 4px;
  background: var(--forest);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 4rem;
  overflow: hidden;
}

.about-text { flex: 1; min-width: 260px; }

/* ── SERVICES ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.service-card {
  background: var(--ink);
  border: 1px solid rgba(180,120,59,0.3);
  border-top: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.95rem; margin-bottom: 0; color: var(--mist); }

/* ── TESTIMONIALS ── */
blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--parchment2);
  font-style: italic;
  color: var(--mist);
}
blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--forest);
  color: var(--parchment);
  text-align: center;
  border-top: 3px solid var(--gold);
}
.contact-section h2 { color: var(--parchment); }
.contact-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.contact-list a {
  color: var(--mist);
  text-decoration: none;
  font-size: 1.1rem;
}
.contact-list a:hover { color: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: var(--mist);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
  border-top: 1px solid rgba(180,120,59,0.3);
}

@media (max-width: 600px) {
  .about-flex { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 400px) {
  header { padding: 3rem 1.25rem 3.5rem; }
  section { padding: 2.5rem 1.25rem; }
  .contact-list { gap: 1.25rem; flex-direction: column; }
  nav a { padding: 0.75rem 0.85rem; font-size: 0.72rem; }
}
