:root {
  color-scheme: light;
  --bg: #f8f6f2;
  --primary: #d95c58;
  --accent: #f6a971;
  --text: #2d2a26;
  --muted: #6b6257;
  --surface: #ffffff;
  --border: #ece3d8;
  --shadow: 0 12px 30px rgba(66, 53, 41, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

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

.brand-mark {
  font-size: 2rem;
}

.brand-domain {
  font-size: 0.85rem;
  color: var(--muted);
}

.brand-title {
  font-size: 1.4rem;
}

.brand-title a {
  color: inherit;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(44, 34, 25, 0.08);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.hero {
  padding: 72px 0;
  background: linear-gradient(135deg, #fff0e5 0%, #fffaf5 60%, #f8f6f2 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.hero h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.lead {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
}

.hero-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.photo-hero {
  padding: 72px 0;
  background: linear-gradient(140deg, #fff7ef 0%, #fef2e9 40%, #f8f6f2 100%);
}

.photo-hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.photo-hero-card {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.photo-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

section {
  padding: 64px 0;
}

.primary,
.ghost {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.primary {
  background: var(--primary);
  color: white;
}

.ghost {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section-header {
  margin-bottom: 24px;
}

.section-header p {
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--surface);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(44, 34, 25, 0.08);
}

.card h3 {
  margin: 10px 0;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.card-header {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  background: #fff4ec;
  color: var(--primary);
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.photo-gallery {
  padding: 0 0 96px;
}

.photo-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.photo-card {
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(44, 34, 25, 0.08);
  display: grid;
}

.photo-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.photo-card figcaption {
  padding: 12px 14px 14px;
  font-weight: 600;
  color: var(--text);
}

.photo-feedback {
  padding: 40px 0 80px;
}

.feedback-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 10px 24px rgba(44, 34, 25, 0.08);
}

.feedback-text {
  font-weight: 700;
}

.cta {
  background: #2d2a26;
  color: white;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .header-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
  }

  .brand {
    grid-column: 1 / -1;
  }

  .nav {
    justify-content: flex-start;
  }

  .social-links {
    justify-content: flex-end;
  }

  .feedback-content {
    align-items: flex-start;
  }
}
