:root {
  --bg: #f6f0e8;
  --ink: #1e1d1b;
  --muted: #70675c;
  --gold: #c18b36;
  --dark: #151514;
  --cream: #fff9ef;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Georgia, 'Times New Roman', serif; background: var(--bg); color: var(--ink); }
a { color: inherit; }
.hero { min-height: 88vh; background: radial-gradient(circle at 20% 20%, rgba(193,139,54,.35), transparent 28%), linear-gradient(135deg, #171615, #393027 60%, #c18b36); color: white; padding: 28px; display: flex; flex-direction: column; }
nav { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.logo { font-weight: bold; font-size: 1.25rem; letter-spacing: .04em; }
.nav-links { display: flex; gap: 18px; font-family: Arial, sans-serif; font-size: .95rem; }
.nav-links a { text-decoration: none; opacity: .9; }
.hero-content { max-width: 790px; margin: auto 0; padding: 70px 0; }
.eyebrow { font-family: Arial, sans-serif; letter-spacing: .18em; text-transform: uppercase; font-size: .8rem; color: #f5d7a1; }
h1 { font-size: clamp(3rem, 8vw, 6.8rem); line-height: .9; margin: 18px 0; }
.intro { font-size: 1.35rem; max-width: 620px; color: #f7ead8; }
.button, .card-button { display: inline-block; background: var(--gold); color: #16120b; padding: 14px 22px; border-radius: 999px; text-decoration: none; font-family: Arial, sans-serif; font-weight: 700; margin-top: 18px; }
.section { padding: 72px 28px; max-width: 1180px; margin: 0 auto; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin: 0 0 14px; }
.section-copy { color: var(--muted); max-width: 760px; font-family: Arial, sans-serif; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 34px; }
.card { background: var(--cream); padding: 18px; border-radius: 24px; box-shadow: 0 15px 35px rgba(0,0,0,.09); }
.art { height: 330px; border-radius: 18px; margin-bottom: 18px; background-size: cover; background-position: center; }
.art1 { background: linear-gradient(145deg, #0d1d2b, #d67b35 55%, #f5d88b); }
.art2 { background: linear-gradient(145deg, #35251e, #8f6f55, #e8c39a); }
.art3 { background: linear-gradient(145deg, #0f3b35, #517d6f 50%, #d8c097); }
.card h3 { font-size: 1.55rem; margin: 0 0 6px; }
.card p { color: var(--muted); font-family: Arial, sans-serif; }
.card strong { font-size: 1.25rem; }
.card-button { display: block; text-align: center; }
.dark { max-width: none; background: var(--dark); color: white; }
.split { display: grid; grid-template-columns: 1.4fr .8fr; gap: 40px; align-items: center; }
.split > * { max-width: 680px; justify-self: center; }
.split p { font-size: 1.2rem; line-height: 1.6; color: #e9ded0; }
.quote { font-size: 2rem; color: #f0c179; font-style: italic; }
.contact { text-align: center; }
.contact p { font-family: Arial, sans-serif; color: var(--muted); }
footer { text-align: center; padding: 28px; color: var(--muted); font-family: Arial, sans-serif; }
@media (max-width: 850px) { .grid, .split { grid-template-columns: 1fr; } nav { align-items: flex-start; flex-direction: column; } .art { height: 260px; } }
