/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1a2236;
  --gold:   #c9973a;
  --white:  #ffffff;
  --bg:     #f8f8f6;
  --text:   #333333;
  --sub:    #666666;
  --border: #e0e0e0;
  --serif:  'Noto Serif JP', 'Yu Mincho', 'YuMincho', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: 80px 0; }

/* ===== SECTION HEADING ===== */
.sec-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 10px;
  font-family: var(--serif);
}

.sec-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 10px auto 0;
}

.flow .sec-title { color: var(--white); }
.flow .sec-title::after { background: var(--gold); }

.sec-sub {
  font-size: 16px;
  color: var(--sub);
  text-align: center;
  margin-bottom: 48px;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s;
  border: none;
}
.btn:hover { opacity: .85; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-sm { padding: 10px 24px; font-size: 14px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: 64px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-logo img { height: 40px; width: auto; }

.header-logo-text {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-logo-name {
  color: var(--white);
  font-size: 27px;
  font-weight: 700;
  font-family: var(--serif);
  padding-right: 14px;
  white-space: nowrap;
}

.header-logo-tagline {
  color: rgba(255,255,255,.65);
  font-size: 11px;
  line-height: 1.6;
  border-left: 1px solid rgba(255,255,255,.3);
  padding-left: 14px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav { display: flex; gap: 28px; }

.header-nav a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  transition: color .2s;
}

.header-nav a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,.92) 38%, rgba(255,255,255,.0) 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 20px;
  font-family: var(--serif);
}

.hero-desc {
  font-size: 16px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 36px;
}

/* ===== FEATURE BADGES ===== */
.features-band {
  background: var(--navy);
  padding: 20px 0;
}

.features-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 16px;
}

.feat-item:not(:last-child) {
  border-right: 1px solid rgba(201,151,58,.35);
}

.feat-icon { font-size: 20px; line-height: 1; }

.feat-icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.feat-item span {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

/* ===== SERVICES ===== */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.service-thumb {
  height: 200px;
  overflow: hidden;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.service-card:hover .service-thumb img { transform: scale(1.04); }

.service-body { padding: 20px; }

.service-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 15px;
  color: var(--sub);
  line-height: 1.8;
}

/* ===== WORKS ===== */
.works { background: var(--white); }

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.work-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  display: block;
  color: inherit;
}

.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.work-thumb {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-thumb.italian { background: var(--navy); }
.work-thumb.barber  { background: #2a2a2a; }

.work-thumb-text {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 0 24px;
}

.work-info { padding: 20px 22px; }

.work-cat {
  font-size: 15px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.work-name {
  font-size: 25px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: var(--serif);
}

.work-type { font-size: 15pxs; color: var(--sub); }

/* ===== FLOW ===== */
.flow {
  background: var(--navy);
}

.flow .sec-title { color: var(--white); }
.flow .sec-title span { color: var(--gold); }
.flow .sec-sub { color: rgba(255,255,255,.45); }

.flow-steps {
  display: flex;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.flow-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 36px;
  right: 36px;
  height: 2px;
  background: var(--gold);
  opacity: .35;
}

.flow-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.flow-num {
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.flow-step-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.flow-step-desc {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  padding: 0 8px;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1422 100%);
  text-align: center;
  padding: 100px 24px;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}

.cta-section p {
  color: rgba(255,255,255,.7);
  font-size: 17px;
  margin-bottom: 40px;
  line-height: 1.9;
}

.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
  padding: 18px 56px;
  border-radius: 4px;
  transition: opacity .2s;
}

.cta-btn:hover { opacity: .85; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  padding: 48px 0 0;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo img { height: 32px; width: auto; }

.footer-logo-name {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--serif);
}

.footer-tagline {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-contact-label {
  color: rgba(255,255,255,.6);
  font-size: 12px;
}

.footer-contact-email {
  color: var(--white);
  font-size: 13px;
}

.footer-copy {
  text-align: center;
  padding: 18px 24px;
  color: rgba(255,255,255,.4);
  font-size: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .header-inner,
  .hero-content,
  .footer-main { padding-left: 24px; padding-right: 24px; }
  .container { padding: 0 24px; }
  .features-band-inner { padding: 0 24px; }
}

@media (max-width: 767px) {
  section { padding: 56px 0; }

  .header-inner { padding: 0 16px; }
  .header-nav { display: none; }
  .header-logo-tagline { display: none; }

  .hero { height: 480px; }
  .hero-content { padding: 0 20px; }
  .hero-title { font-size: 26px; }
  .hero-desc { font-size: 13px; }

  .features-band-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 16px;
  }

  .feat-item:nth-child(2) { border-right: none; }
  .feat-item:nth-child(1),
  .feat-item:nth-child(2) { border-bottom: 1px solid rgba(201,151,58,.35); }

  .services-grid,
  .works-grid { grid-template-columns: 1fr; }

  .flow-steps { flex-direction: column; gap: 32px; padding: 0 16px; }
  .flow-steps::before { display: none; }

  .cta-section h2 { font-size: 24px; }
  .cta-btn { padding: 16px 36px; font-size: 15px; }

  .footer-main { grid-template-columns: 1fr; gap: 28px; padding-left: 16px; padding-right: 16px; }
  .footer-contact { align-items: flex-start; }

  .sec-title { font-size: 22px; }
}
