:root {
  --bg: #f7f1e8;
  --bg-deep: #151311;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #fffdf9;
  --surface-dark: rgba(24, 21, 18, 0.88);
  --text: #161310;
  --text-light: #f7f0e7;
  --muted: #61584f;
  --muted-light: rgba(247, 240, 231, 0.72);
  --primary: #e66a34;
  --primary-strong: #cb4a1b;
  --primary-soft: rgba(230, 106, 52, 0.12);
  --line: rgba(34, 27, 21, 0.12);
  --line-light: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 55px rgba(52, 28, 15, 0.12);
  --shadow-strong: 0 30px 80px rgba(10, 8, 6, 0.32);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(230, 106, 52, 0.16), transparent 26%),
    linear-gradient(180deg, #f8f4ee 0%, #f5efe6 48%, #efe6da 100%);
}

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

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

.hero,
.section,
.footer {
  padding-left: 24px;
  padding-right: 24px;
}

.hero-shell,
.section,
.footer {
  max-width: var(--container);
  margin: 0 auto;
}

.hero {
  padding-top: 22px;
  padding-bottom: 50px;
}

.hero-shell {
  position: relative;
  padding: 24px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 85% 18%, rgba(230, 106, 52, 0.22), transparent 20%),
    linear-gradient(135deg, #1d1915 0%, #13100d 55%, #241d17 100%);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shell::before {
  width: 420px;
  height: 420px;
  top: -190px;
  right: -140px;
  background: radial-gradient(circle, rgba(255, 184, 102, 0.18), transparent 70%);
}

.hero-shell::after {
  width: 320px;
  height: 320px;
  left: -100px;
  bottom: -150px;
  background: radial-gradient(circle, rgba(230, 106, 52, 0.2), transparent 68%);
}

.topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, #ff995c 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 26px rgba(230, 106, 52, 0.38);
}

.brand {
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  margin: 4px 0 0;
  color: var(--muted-light);
  font-size: 0.92rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 30px;
  align-items: center;
}

.hero-copy {
  color: var(--text-light);
  padding: 24px 6px 24px 8px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffd5bd;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.credibility-copy h2 {
  margin: 0;
  line-height: 1.02;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -0.03em;
}

.lead {
  max-width: 63ch;
  margin: 24px 0 0;
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--muted-light);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.highlight-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff4eb;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.stat-card {
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.stat-card span {
  display: block;
  color: var(--muted-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #f07f47 0%, #cb4a1b 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(203, 74, 27, 0.34);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.button-link {
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(22, 19, 16, 0.08);
}

.button-full {
  width: 100%;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  padding: 12px 0 12px 18px;
}

.hero-photo-frame {
  position: absolute;
  inset: 0 0 0 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(230, 106, 52, 0.16), transparent 24%),
    rgba(22, 18, 15, 0.92);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 12, 10, 0.08) 0%, rgba(14, 12, 10, 0.18) 48%, rgba(14, 12, 10, 0.52) 100%),
    linear-gradient(135deg, rgba(230, 106, 52, 0.14), transparent 42%);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading .eyebrow {
  background: var(--primary-soft);
  color: var(--primary-strong);
  border-color: transparent;
}

.section-heading h2,
.credibility-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.section-heading p,
.info-card p,
.value-item p,
.value-panel p,
.model-card p,
.operation-card p,
.advantage-card span,
.user-card p,
.process-card p,
.credibility-copy p,
.credibility-note,
.contact-copy p,
.footer p,
.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.cards-grid,
.model-grid,
.operation-grid,
.advantage-grid,
.user-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card,
.model-card,
.operation-card,
.advantage-card,
.user-card,
.process-card,
.value-panel,
.contact-copy,
.contact-form,
.credibility-card {
  box-shadow: var(--shadow-soft);
}

.info-card,
.model-card,
.operation-card,
.advantage-card,
.user-card,
.process-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 251, 246, 0.98));
  border: 1px solid rgba(34, 27, 21, 0.08);
  overflow: hidden;
}

.info-card::before,
.model-card::before,
.operation-card::before,
.advantage-card::before,
.user-card::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 70%);
}

.info-card h3,
.model-card h3,
.operation-card h3,
.user-card h3,
.process-card h3,
.value-item h3,
.value-panel h3,
.contact-copy h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.accent-card {
  background:
    radial-gradient(circle at top right, rgba(230, 106, 52, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.98), rgba(255, 252, 248, 0.98));
}

.pilot-card,
.credibility-card,
.footer-inner {
  display: grid;
  gap: 24px;
}

.pilot-card {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at right top, rgba(230, 106, 52, 0.18), transparent 24%),
    linear-gradient(135deg, #201a15 0%, #15120f 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-strong);
}

.owner-benefits-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 244, 0.98));
  border: 1px solid rgba(34, 27, 21, 0.08);
  box-shadow: var(--shadow-soft);
}

.owner-benefits-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.owner-benefits-points {
  display: grid;
  gap: 12px;
}

.owner-benefits-points p {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(230, 106, 52, 0.08);
  color: var(--text);
  line-height: 1.65;
  font-weight: 600;
}

.pilot-copy h2,
.pilot-copy p {
  color: var(--text-light);
}

.pilot-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.pilot-copy p {
  margin: 0;
  color: var(--muted-light);
  line-height: 1.75;
}

.pilot-actions {
  display: grid;
  gap: 14px;
  align-content: center;
}

.model-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.model-card,
.operation-card,
.user-card {
  overflow: hidden;
}

.model-photo-wrap {
  margin-top: 18px;
  overflow: hidden;
  height: 240px;
  border-radius: 22px;
  background: #e7dccf;
  box-shadow: var(--shadow-soft);
}

.model-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.model-card:hover .model-photo,
.model-card:focus-within .model-photo {
  transform: scale(1.03);
}

.detail-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.advantage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advantage-card {
  display: grid;
  gap: 10px;
}

.advantage-card strong {
  font-size: 1.06rem;
}

.operation-grid,
.user-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-layout,
.contact-layout,
.credibility-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.value-points {
  display: grid;
  gap: 16px;
}

.value-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(34, 27, 21, 0.08);
  box-shadow: var(--shadow-soft);
}

.value-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(230, 106, 52, 0.18), rgba(230, 106, 52, 0.06));
  color: var(--primary-strong);
  font-weight: 800;
}

.value-panel,
.contact-copy,
.contact-form {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 244, 0.98));
  border: 1px solid rgba(34, 27, 21, 0.08);
}

.panel-kicker {
  margin: 0 0 10px;
  color: var(--primary-strong);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.process-step {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.credibility-card {
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at right top, rgba(230, 106, 52, 0.14), transparent 30%),
    linear-gradient(135deg, #1b1713 0%, #14110f 100%);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.credibility-card .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: #ffd7be;
  border-color: rgba(255, 255, 255, 0.08);
}

.credibility-copy p,
.credibility-note {
  color: var(--muted-light);
}

.credibility-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.restaurant-link {
  color: #ffd1b8;
  text-decoration: underline;
  text-decoration-color: rgba(255, 209, 184, 0.45);
  text-underline-offset: 5px;
}

.restaurant-link:hover,
.restaurant-link:focus-visible {
  color: #fff0e6;
}

.credibility-quote {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 20px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 246, 0.98));
  border: 1px solid rgba(34, 27, 21, 0.08);
  box-shadow: var(--shadow-soft);
}

.gallery-image-wrap {
  height: 260px;
  overflow: hidden;
  background: #e7dccf;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-image,
.gallery-card:focus-within .gallery-image {
  transform: scale(1.03);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.company-details {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(34, 27, 21, 0.08);
}

.company-details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-link,
.footer-contact-link {
  color: var(--primary-strong);
  text-decoration: underline;
  text-decoration-color: rgba(203, 74, 27, 0.28);
  text-underline-offset: 4px;
  font-weight: 700;
}

.contact-link:hover,
.contact-link:focus-visible,
.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: var(--primary);
}

.contact-form {
  position: relative;
  gap: 16px;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(230, 106, 52, 0.34), rgba(255, 255, 255, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.botcheck-field {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(34, 27, 21, 0.1);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(230, 106, 52, 0.5);
  box-shadow: 0 0 0 4px rgba(230, 106, 52, 0.12);
  transform: translateY(-1px);
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(22, 19, 16, 0.7) 50%),
    linear-gradient(135deg, rgba(22, 19, 16, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.form-note {
  min-height: 24px;
  font-weight: 600;
}

.form-note.is-success {
  color: #2f7b48;
}

.footer {
  padding-top: 12px;
  padding-bottom: 42px;
}

.footer-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.footer p,
.footer-company p {
  text-align: left;
  max-width: 58ch;
}

.footer-company {
  display: grid;
  gap: 6px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(34, 27, 21, 0.06);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(230, 106, 52, 0.24);
}

.social-links svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.social-links a.social-link-facebook {
  background: #1877f2;
  color: #ffffff;
  border-color: rgba(24, 119, 242, 0.28);
}

.social-links a.social-link-instagram {
  background: linear-gradient(135deg, #f58529 0%, #feda77 18%, #dd2a7b 52%, #8134af 76%, #515bd4 100%);
  color: #ffffff;
  border-color: rgba(221, 42, 123, 0.24);
}

.social-links a.social-link-tiktok {
  position: relative;
  background: #0f0f10;
  color: #ffffff;
  border-color: rgba(15, 15, 16, 0.3);
}

.social-link-tiktok::before,
.social-link-tiktok::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.social-link-tiktok::before {
  box-shadow: -3px 0 0 rgba(37, 244, 238, 0.55);
}

.social-link-tiktok::after {
  box-shadow: 3px 0 0 rgba(254, 44, 85, 0.45);
}

@media (max-width: 1040px) {
  .hero-content,
  .owner-benefits-card,
  .pilot-card,
  .value-layout,
  .contact-layout,
  .credibility-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding-left: 0;
    min-height: 560px;
  }

  .hero-photo-frame {
    inset: 0;
  }
}

@media (max-width: 900px) {
  .cards-grid,
  .model-grid,
  .operation-grid,
  .advantage-grid,
  .user-grid,
  .process-grid,
  .gallery-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: auto;
    padding: 0;
  }

  .hero-photo-frame {
    position: relative;
    inset: auto;
    height: 340px;
    margin-bottom: 16px;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-shell {
    padding: 18px;
    border-radius: 28px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .hero-copy,
  .value-panel,
  .contact-copy,
  .contact-form,
  .pilot-card,
  .credibility-card,
  .hero-photo-frame {
    padding: 22px;
  }

  .hero-copy {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-photo-frame {
    padding: 0;
  }

  .hero-actions,
  .form-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer p {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .value-item {
    grid-template-columns: 1fr;
  }
}
