@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --bg: #F7F4EE;
  --ink: #1A1A1A;
  --ink-soft: #3a3a3a;
  --muted: #6B6B6B;
  --border: #E6E2DA;
  --card: #FFFFFF;
  --accent: #1A1A1A;
  --chip: #EDEAE4;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(0, 0, 0, .06)
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  line-height: 1.65
}

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

a {
  color: inherit;
  text-decoration: none
}

a:hover {
  opacity: .9
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto
}

.nav {
  position: sticky;
  top: 0;
  background: var(--accent);
  color: #fff;
  border-bottom: 1px solid #111;
  z-index: 999
}

.nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.logo {
  
  border-radius: 8px;
 
}

.brand b {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px
}

.menu a {
  padding: 8px 12px;
  border-radius: 10px;
  color: #fff
}

.menu a.active,
.menu a:hover {
  background: #2A2A2A
}

.hero {
  background: #1A1A1A;
  color: #fff;
  padding: 48px 0
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.1;
  margin: 0 0 8px
}

.hero p {
  color: #E7E7E7;
  margin: 0
}

.section {
  padding: 28px 0
}

.section .section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px
}

.section .section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0
}

.section .section-title a {
  font-weight: 600
}

.feature-strip {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr
}

.feature .media {
  position: relative;
  overflow: hidden
}

.feature .media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.feature .body {
  padding: 18px
}

.feature h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin: 0 0 8px
}

.feature p {
  color: var(--muted);
  margin: 0 0 10px
}

.meta {
  color: #8A8A8A;
  font-size: 12px
}

.mini {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px
}

.mini .media {
  width: 42%;
  min-height: 120px;
  background: #F2F2F2
}

.mini .media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.mini .body {
  padding: 12px
}

.mini h4 {
  font-family: "Playfair Display", serif;
  margin: 0 0 6px;
  font-size: 18px
}

.mini p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.mag-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column
}

.card .media {
  width: 100%;
  background: #F2F2F2
}

.card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.card .body {
  padding: 16px
}

.card h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 8px;
  font-size: 20px
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px
}

.card .chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px
}

.chip {
  background: var(--chip);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  color: #5a5a5a
}

.span-6 {
  grid-column: span 6
}

.span-4 {
  grid-column: span 4
}

.span-3 {
  grid-column: span 3
}

.blog-layout {
  display: grid;
  grid-template-columns: 3fr 1.15fr;
  gap: 26px
}

.sidebar .widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  margin-bottom: 18px
}

.widget h5 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700
}

.widget .list {
  display: grid;
  gap: 10px
}

.widget .list a {
  display: block
}

.widget .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1A1A1A;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 36px;
  background: #FBFAF7
}

.footer .inner {
  padding: 26px 0;
  color: #707070;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

@media (max-width:1000px) {
  .feature-strip {
    grid-template-columns: 1fr
  }

  .feature {
    grid-template-columns: 1fr
  }

  .blog-layout {
    grid-template-columns: 1fr
  }
}

@media (max-width:720px) {
  .mag-grid {
    grid-template-columns: repeat(6, 1fr)
  }

  .span-6 {
    grid-column: span 6
  }

  .span-4 {
    grid-column: span 6
  }

  .span-3 {
    grid-column: span 6
  }
}