/* ==========================================================================
   Suki Gyouza — shared stylesheet
   ========================================================================== */

:root {
  --red: #a32921;
  --red-dark: #7e1f19;
  --red-bright: #b8352c;
  --gold: #e3b04b;
  --ink: #262220;
  --gray-text: #5a5450;
  --paper: #f4efe9;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4 {
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: var(--gray-text);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--paper);
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 8px;
  display: inline-block;
}

.section-title {
  text-align: center;
  color: var(--red);
  font-size: 30px;
  margin-bottom: 8px;
}

.section-title.on-dark {
  color: var(--white);
}

.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--red-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--red);
}

.btn-center {
  text-align: center;
  margin-top: 34px;
}

/* ---------- header / nav ---------- */

.site-header {
  background: var(--red);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-mark {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}

.main-nav ul {
  display: flex;
  gap: 34px;
}

.main-nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.main-nav a:hover,
.main-nav a.active {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 12, 0.35) 0%, rgba(20, 14, 12, 0.75) 100%), repeating-linear-gradient(135deg, #35302e, #35302e 14px, #2a2624 14px, #2a2624 28px);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
  width: 100%;
  text-align: center;
}

.hero-small .hero-inner {
  padding-bottom: 70px;
}

.hero h1 {
  font-size: clamp(26px, 3.6vw, 42px);
  max-width: 100%;
  white-space: nowrap;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.hero-small {
  min-height: 300px;
}

.hero-small h1 {
  font-size: 34px;
}

.hero-tagline {
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 18px;
}

/* wave divider */

.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  line-height: 0;
}

.wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.wave-top {
  top: -1px;
  bottom: auto;
}

/* ---------- placeholder image blocks ---------- */

.placeholder-img {
  position: relative;
  background-color: #e7e0d8;
  background-image: var(--img, none), repeating-linear-gradient(45deg, #ded4c7 0, #ded4c7 12px, #e7e0d8 12px, #e7e0d8 24px);
  background-size: cover, auto;
  background-position: center, center;
  background-repeat: no-repeat, repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.placeholder-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-img .ph-label {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #8a7f72;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  max-width: 85%;
}

.ph-square {
  aspect-ratio: 1 / 1;
}

.ph-circle {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

.ph-facet {
  aspect-ratio: 4 / 3.4;
  clip-path: polygon(12% 0%, 88% 0%, 100% 10%, 100% 88%, 88% 100%, 12% 100%, 0% 90%, 0% 12%);
}

.ph-wide {
  aspect-ratio: 16 / 9;
}

.ph-poster {
  aspect-ratio: 3 / 4;
}

/* ---------- home: intro circles ---------- */

.intro-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.intro-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* ---------- stats band ---------- */

.stats-band {
  background: var(--red);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.stats-band h2 {
  font-size: 24px;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 820px;
  margin: 0 auto;
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  color: var(--gold);
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.stat-title {
  font-weight: 700;
  font-size: 16px;
}

.stat-sub {
  font-size: 12px;
  font-style: italic;
  opacity: 0.85;
  margin-top: 4px;
}

/* ---------- mentioned on ---------- */

.logo-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  padding: 4px 4px 8px;
}

.press-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  flex-shrink: 0;
  color: #9a938c;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 15px;
  text-align: center;
}

.press-logo img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

/* ---------- timeline (about / locations) ---------- */

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item.reverse .timeline-photo {
  order: 2;
}

.timeline-item.reverse .timeline-copy {
  order: 1;
}

.timeline-date {
  color: var(--red);
  font-size: 24px;
  margin-bottom: 10px;
}

.timeline-copy .loc-address,
.timeline-copy .loc-hours {
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

/* ---------- franchise: core values ---------- */

.values-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.value-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.value-letter {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.value-item h4 {
  color: var(--red);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 14px;
  margin: 0;
}

/* ---------- carousel ---------- */

.carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.carousel-track {
  position: relative;
}

.carousel-slide {
  display: none;
}

.carousel-slide.is-active {
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #d8cfc3;
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.is-active {
  background: var(--red);
}

/* ---------- franchise guide ---------- */

.franchise-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.guide-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 32px;
}

.guide-card h3 {
  color: var(--red);
  font-size: 20px;
  margin-bottom: 22px;
}

.step-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-list p {
  margin: 0;
  font-size: 14px;
}

.fee-table {
  margin-bottom: 26px;
}

.fee-table:last-child {
  margin-bottom: 0;
}

.fee-table h4 {
  color: var(--red-dark);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.fee-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.fee-table td {
  padding: 6px 0;
  border-bottom: 1px dashed #ddd3c6;
  color: var(--gray-text);
}

.fee-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  padding-left: 14px;
}

.fee-note {
  font-size: 11px;
  color: #a89f92;
  margin-top: 10px;
  font-style: italic;
}

/* ---------- FAQ accordion ---------- */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eadfd0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 30px 18px 0;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 22px;
  color: var(--red);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 18px;
  font-size: 14px;
}

/* ---------- contact ---------- */

.contact-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-block p {
  font-size: 16px;
}

.contact-block a {
  color: var(--red);
  font-weight: 700;
  border-bottom: 1px solid var(--red);
}

.locations-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 10px;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 22px 0;
  font-size: 12px;
}

.site-footer strong {
  color: var(--gold);
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .timeline-item,
  .values-row,
  .franchise-guide {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .timeline-item.reverse .timeline-photo,
  .timeline-item.reverse .timeline-copy {
    order: 0;
  }

  .intro-photos {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--red-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .main-nav.is-open {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 6px 24px 18px;
  }

  .main-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 26px;
    white-space: normal;
  }

  .hero-small h1 {
    font-size: 26px;
  }

  .logo-row {
    gap: 20px;
  }

  .carousel-btn.prev {
    left: 4px;
  }

  .carousel-btn.next {
    right: 4px;
  }
}
