:root {
  --brand1: #ce6632;
  --brand2: #732e0c;
  --bg: #faf9f7;
  --text: #1f2937;
  --muted: #6b7280;
  --card: #ffffff;
  --ok: #0a7f2e;
  --warn: #b45309;
  --link: #0b74da;
  --accent: #f59e0b;
  --light-bg: #fefbf7;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.magazine-layout {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  box-shadow: 0 0 40px rgba(0,0,0,0.1);
}

/* Hero Magazine Style */
.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.magazine-kicker {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1rem 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  margin: 0 0 1rem 0;
  opacity: 0.9;
  font-style: italic;
}

.hero-byline {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.hero-cta {
  display: inline-block;
  padding: 12px 24px;
  background: var(--brand1);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.hero-cta:hover {
  background: #b25428;
  text-decoration: none;
}

/* Advertising */
.ad-slot {
  display: flex;
  justify-content: center;
  margin: 3rem auto;
  max-width: min(100%, 960px);
}

.ad-slot .adsbygoogle {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/* Magazine Grid Layout */
.content-grid {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) minmax(200px, 240px);
  gap: 2.5rem;
  padding: 4rem 2.5rem;
  background: white;
}

@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
  .sidebar {
    order: 2;
  }
}

/* Sidebar Table of Contents */
.sidebar {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 12px;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.sidebar h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand2);
  margin: 0 0 1rem 0;
  border-bottom: 2px solid var(--brand1);
  padding-bottom: 0.5rem;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  margin-bottom: 0.5rem;
}

.sidebar a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.sidebar a:hover {
  color: var(--brand1);
}

/* Main Article Content */
.article-content {
  font-size: 1.1rem;
  line-height: 1.7;
}

.article-intro {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--muted);
  border-left: 4px solid var(--brand1);
  padding-left: 2rem;
  margin: 0 0 3rem 0;
  font-style: italic;
}

.article-intro::first-letter {
  float: left;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  padding-right: 0.1em;
  color: var(--brand1);
}

.article-content h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand2);
  margin: 3rem 0 1.5rem 0;
  line-height: 1.2;
}

.article-content h2:first-of-type {
  margin-top: 0;
}

.section-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--brand1);
  opacity: 0.3;
  float: left;
  line-height: 1;
  margin: -0.5rem 1rem 0 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Plan grid and cards */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.week-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  border-left: 4px solid var(--brand1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.week-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.week-card h4 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand2);
  margin: 0 0 1rem 0;
}

.week-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

/* Callout Boxes */
.magazine-callout {
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.magazine-callout.success {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-left: 4px solid var(--ok);
}

.magazine-callout.info {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-left: 4px solid var(--link);
}

.magazine-callout.warning {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-left: 4px solid var(--warn);
}

.magazine-callout strong {
  color: var(--brand2);
}

.image-frame {
  margin: 2.5rem 0;
  padding: 1.5rem;
  border: 2px dashed rgba(206, 102, 50, 0.35);
  border-radius: 16px;
  background: var(--light-bg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.image-frame img {
  width: 100%;
  height: auto;
  max-width: 420px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
}

.image-frame figcaption {
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
  max-width: 44ch;
}

/* Tables */
table.plan,
table.grid {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

table.plan th,
table.plan td,
table.grid th,
table.grid td {
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 6px;
  text-align: left;
}

table.plan th,
table.grid th {
  background: #fff;
}

table.plan th {
  position: sticky;
  top: 0;
}

.technique-elements {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

@media (min-width: 720px) {
  .technique-elements {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .technique-elements {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.technique-card {
  background: var(--light-bg);
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.technique-card h3 {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.2rem;
  color: var(--brand2);
}

.technique-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.technique-card p strong {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
  display: block;
  margin-bottom: 0.2rem;
}

/* Two-column lists */
.twocol {
  columns: 2;
  column-gap: 24px;
}

@media (max-width: 800px) {
  .twocol {
    columns: 1;
  }
}

/* Right Sidebar Quote */
.pull-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--brand2);
  border-left: 4px solid var(--brand1);
  padding-left: 1rem;
  margin-top: 2rem;
}

.muted {
  color: var(--muted);
}

.city-card {
  background: var(--light-bg);
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  margin: 1.5rem 0 2.5rem 0;
}

.city-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
}

.city-card h3 {
  margin-top: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand2);
}

.city-card p {
  margin-bottom: 1.5rem;
}

.city-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.city-meta li {
  background: white;
  border-radius: 12px;
  border-left: 4px solid var(--brand1);
  padding: 0.75rem 1rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

footer {
  margin-top: 36px;
  padding: 28px 0 40px;
  border-top: 1px solid #e5e7eb;
  color: var(--muted);
}

.made {
  display: flex;
  gap: 8px;
  align-items: center;
}

