/* Minimal, elegant theme for The Rosewood Atlas */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #0f172a;
  background: #fbfaf9;
  line-height: 1.6;
}

:root {
  --ink: #0f172a;           /* deep slate */
  --muted: #475569;         /* slate-600 */
  --rosewood: #7a3e48;      /* brand */
  --rosewood-deep: #5b2a31; /* hover/ink */
  --ivory: #f8f5f2;         /* soft bg */
  --card: #ffffff;
  --alt: #f5eef0;           /* blush wash */
  --ring: rgba(122,62,72,0.35);
}

.container { width: min(1100px, 92vw); margin: 0 auto; padding: 24px 0; }
a { color: var(--rosewood); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(251,250,249,0.85);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.site-header .container { display: flex; align-items: center; gap: 20px; }
.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}
.nav { margin-left: auto; display: flex; gap: 16px; align-items: center; }
.nav a { color: var(--ink); font-weight: 500; }
.menu { display: none; margin-left: auto; background: none; border: 0; font-size: 24px; }

/* Hero */
.hero { padding: 80px 0 36px; background: radial-gradient(1100px 500px at 20% -10%, #f1e8ea 0, transparent 60%); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.1;
  margin: 0 0 12px;
}
.accent { color: var(--rosewood); }
.hero p { color: var(--muted); margin: 0 0 20px; }
.cta { display: flex; gap: 12px; }

.card {
  background: var(--card);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.card img { display: block; width: 100%; height: auto; }
.card__body { padding: 16px; }
.card--shadow { box-shadow: 0 8px 30px rgba(15,23,42,0.08); }

.section { padding: 64px 0; }
.section--alt { background: var(--alt); }
.section--tight { padding: 48px 0; }

.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: start; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.masonry { columns: 2 300px; column-gap: 14px; }
.masonry figure { break-inside: avoid; margin: 0 0 14px; }
.masonry img { width: 100%; height: auto; border-radius: 12px; border: 1px solid rgba(15,23,42,0.08); }

.latest-posts { margin: 18px 0 8px; }
.latest-posts h3 { margin: 0 0 8px; font-size: 18px; }
.posts { list-style: none; padding: 0; margin: 0 0 16px; }
.posts li { padding: 10px 12px; border: 1px solid rgba(15,23,42,0.08); border-radius: 10px; background: #fff; }
.posts li + li { margin-top: 8px; }
.posts .empty { color: var(--muted); font-style: italic; }

.checks { list-style: none; padding: 0; margin: 12px 0 0; }
.checks li::before { content: "✔"; color: var(--rosewood); margin-right: 8px; }
.bullets { margin: 0; padding-left: 18px; }

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.contact__form {
  display: grid;
  gap: 12px;
  background: var(--card);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.08);
}
label { display: grid; gap: 6px; font-weight: 600; }
input, textarea {
  font: inherit;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,0.15);
  background: #fff;
  outline: none;
}
input:focus, textarea:focus { box-shadow: 0 0 0 4px var(--ring); border-color: var(--rosewood); }
button.btn { cursor: pointer; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--rosewood);
  color: white;
  font-weight: 600;
  border: 1px solid var(--rosewood);
}
.btn:hover { filter: brightness(0.95); text-decoration: none; }
.btn--ghost {
  background: transparent;
  color: var(--rosewood);
}
.btn--small { padding: 8px 12px; font-size: 14px; }
.btn--disabled { opacity: 0.6; cursor: not-allowed; }

/* Footer */
.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(15,23,42,0.06);
  background: #fff;
}
.footer__grid { display: flex; gap: 16px; align-items: center; justify-content: space-between; }
.social { display: flex; gap: 14px; }
.social a { color: var(--muted); }
.social a:hover { color: var(--ink); }

/* Responsive */
@media (max-width: 900px) {
  .hero__grid, .two-col, .contact { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: 1fr; }
  .nav { display: none; }
  .menu { display: block; }
}

.note{color:#475569;font-style:italic;margin-top:6px}
