:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --text: #1e1e1e;
  --muted: #6c6c6c;
  --accent: #e56b3c;
  --border: #e8dfd5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
}

.menu {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-section { padding: 96px 0 72px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.hero-copy p,
.section-title p {
  color: var(--muted);
  max-width: 620px;
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  margin-top: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-weight: 700;
}

.hero-image-card {
  margin: 0;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(30, 30, 30, 0.08);
}

.image-placeholder,
.insta-tile {
  min-height: 360px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(229, 107, 60, 0.18), rgba(30, 30, 30, 0.08)),
    var(--bg);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  padding: 24px;
}

.hero-uploaded-image {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section { padding: 72px 0; }
.section-title { margin-bottom: 32px; }

.blog-grid,
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  min-height: 220px;
}

.post-date {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.post-card h3 {
  margin: 14px 0 10px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.post-card p { color: var(--muted); }

.post-card a {
  font-weight: 800;
  color: var(--accent);
}

.instagram-grid {
  grid-template-columns: repeat(4, 1fr);
}

.insta-tile { min-height: 210px; }

.instagram-feed-wrapper {
  width: 100%;
}

.instagram-feed-wrapper #sb_instagram,
.instagram-feed-wrapper .sbi {
  width: 100%;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

@media (max-width: 800px) {
  .header-inner,
  .menu {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-inner { padding: 18px 0; }

  .hero-grid,
  .blog-grid,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .hero-section { padding-top: 56px; }
}

