/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
  --navy: #1e3a5f;
  --navy-light: #2a4f7e;
  --navy-dark: #122540;
  --gold: #c8922a;
  --gold-light: #e0a93d;
  --wood: #7a5230;
  --wood-light: #a8743f;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text: #2d2d2d;
  --text-light: #6b6b6b;

  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.8;
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

.sp-only { display: block; }
.pc-only { display: none; }

.section {
  padding: 72px 0;
}

.section--wood {
  background:
    linear-gradient(rgba(30,58,95,0.88), rgba(30,58,95,0.88)),
    url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?w=1200&q=60') center/cover no-repeat;
  color: var(--white);
}

.section--gray {
  background: var(--gray-100);
}

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

.section--light-navy {
  background: var(--off-white);
}

/* ===========================
   Section Header
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header__en {
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-header__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  color: inherit;
}

.section-header--light .section-header__en {
  color: var(--gold-light);
}

.section-header--light .section-header__title {
  color: var(--white);
}

.section-header__desc {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.9;
}

.section--navy .section-header__desc,
.section--wood .section-header__desc {
  color: rgba(255,255,255,0.75);
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

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

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,146,42,0.35);
}

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

.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--full {
  width: 100%;
  display: block;
}

/* ===========================
   Header
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30,58,95,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: background var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.header__logo a {
  display: block;
}

.header__logo-main {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.header__logo-sub {
  display: block;
  font-size: 9px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.header__tel {
  display: none;
}

.header__tel-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.header__menu-btn {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}

.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   Nav Drawer (SP)
   =========================== */
.nav-drawer {
  display: none;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-drawer.is-open {
  display: block;
}

.nav-drawer__list {
  padding: 8px 0 16px;
}

.nav-drawer__link {
  display: block;
  padding: 14px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition), color var(--transition);
}

.nav-drawer__link:hover,
.nav-drawer__link:active {
  background: rgba(255,255,255,0.07);
  color: var(--white);
}

.nav-drawer__link--cta {
  color: var(--gold-light);
  font-weight: 700;
  border-bottom: none;
  margin-top: 8px;
}

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 60px;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 37, 64, 0.82) 0%,
    rgba(30, 58, 95, 0.65) 60%,
    rgba(120, 80, 40, 0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 700px;
}

.hero__badge {
  display: inline-block;
  background: rgba(200,146,42,0.85);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.15em;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 6.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero__title-accent {
  color: var(--gold-light);
}

.hero__sub {
  font-size: clamp(14px, 3.5vw, 17px);
  color: rgba(255,255,255,0.88);
  line-height: 1.9;
  margin-bottom: 32px;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.15em;
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===========================
   Reasons (5つの理由)
   =========================== */
.reasons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.reason-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.reason-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}

.reason-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
}

.reason-card__icon svg {
  width: 100%;
  height: 100%;
}

.reason-card__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 12px;
}

.reason-card__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
}

/* ===========================
   Services
   =========================== */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
}

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

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 20px;
}

.service-card__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
}

.service-card__link {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  transition: color var(--transition);
}

.refit-brand {
  color: var(--gold);
}

/* ===========================
   Refit
   =========================== */
.refit__sub-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding-left: 14px;
  margin-bottom: 20px;
}

.refit__works,
.refit__price,
.refit__recommend {
  margin-bottom: 48px;
}

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

.tag {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 500;
}

.refit-brand-lg {
  color: var(--gold);
}

/* Price Table */
.price-table {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
}

.price-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 20px;
  gap: 12px;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:nth-child(even) {
  background: var(--gray-50);
}

.price-row__label {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.price-row__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.price-row__price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 4px;
}

.price-note {
  font-size: 12px;
  color: var(--text-light);
}

/* Recommend */
.refit__recommend-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.recommend-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 14px 18px;
}

.recommend-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.recommend-item p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* ===========================
   Gallery
   =========================== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.gallery-item:hover {
  transform: translateY(-3px);
}

.gallery-item__img-wrap {
  height: 160px;
  overflow: hidden;
}

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

.gallery-item:hover .gallery-item__img {
  transform: scale(1.06);
}

.gallery-item__body {
  padding: 12px 14px;
}

.gallery-item__cat {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 6px;
}

.gallery-item__cap {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===========================
   Flow
   =========================== */
.flow__steps {
  max-width: 700px;
  margin: 0 auto;
}

.flow-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-left: 4px solid var(--navy);
}

.flow-step__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.flow-step__icon {
  width: 44px;
  height: 44px;
}

.flow-step__icon svg {
  width: 100%;
  height: 100%;
}

.flow-step__title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.flow-step__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
}

.flow-step__arrow {
  text-align: center;
  color: var(--navy);
  font-size: 22px;
  padding: 6px 0;
  opacity: 0.4;
}

/* ===========================
   Voices
   =========================== */
.voices__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.voice-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(4px);
}

.voice-card__stars {
  color: var(--gold-light);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.voice-card__text {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.85;
  margin-bottom: 20px;
  font-style: italic;
}

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

.voice-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.voice-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.voice-card__type {
  font-size: 12px;
  color: var(--gold-light);
  margin-top: 2px;
}

/* ===========================
   Company
   =========================== */
.company__wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 14px 16px;
  font-size: 15px;
  vertical-align: top;
  border-bottom: 1px solid var(--gray-200);
  line-height: 1.7;
}

.company-table th {
  width: 110px;
  font-weight: 700;
  color: var(--navy);
  background: var(--off-white);
  white-space: nowrap;
}

.company-table td {
  color: var(--text);
}

.company-table__tel {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.company__map iframe {
  border-radius: var(--radius);
}

.company__map-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-light);
}

/* ===========================
   Contact
   =========================== */
.contact__tel-wrap {
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  margin-bottom: 32px;
}

.contact__tel-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.contact__tel-num {
  display: block;
  font-size: clamp(30px, 8vw, 44px);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 8px;
}

.contact__tel-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.contact__divider {
  text-align: center;
  position: relative;
  margin-bottom: 32px;
  color: var(--text-light);
  font-size: 14px;
}

.contact__divider::before,
.contact__divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 40px);
  height: 1px;
  background: var(--gray-200);
}

.contact__divider::before { left: 0; }
.contact__divider::after { right: 0; }

/* Contact Form */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.contact-form__note {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 13px;
  color: #856404;
  margin-bottom: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.form-required {
  display: inline-block;
  background: #e53e3e;
  color: var(--white);
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--navy);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 24px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 28px;
}

.footer__logo-main {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__logo-sub {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.footer__est {
  font-size: 12px;
  color: var(--gold);
}

.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer__nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__info {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
}

.footer__info p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer__info a {
  color: rgba(255,255,255,0.75);
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ===========================
   Fixed CTA (Bottom)
   =========================== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.fixed-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 10px;
  font-weight: 700;
  color: var(--white);
  transition: filter var(--transition);
}

.fixed-cta__btn:hover,
.fixed-cta__btn:active {
  filter: brightness(1.1);
}

.fixed-cta__btn--tel {
  background: var(--navy);
  border-right: 1px solid rgba(255,255,255,0.15);
}

.fixed-cta__btn--form {
  background: var(--gold);
}

.fixed-cta__label {
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.fixed-cta__label strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.03em;
}

/* Body padding for fixed elements */
body {
  padding-top: 62px;
  padding-bottom: 64px;
}

/* ===========================
   Tablet & Desktop
   =========================== */
@media (min-width: 640px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item__img-wrap {
    height: 200px;
  }

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

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

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

  .refit__recommend-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .sp-only { display: none; }
  .pc-only { display: block; }

  body {
    padding-top: 68px;
    padding-bottom: 0;
  }

  .header__inner {
    padding: 14px 40px;
  }

  .header__logo-main {
    font-size: 20px;
  }

  .header__tel {
    display: flex;
  }

  .header__menu-btn {
    display: none;
  }

  .fixed-cta {
    display: none;
  }

  .section {
    padding: 96px 0;
  }

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

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

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

  .company__wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .company__table-wrap {
    flex: 1;
  }

  .company__map {
    flex: 1;
  }

  .flow__steps {
    display: flex;
    flex-direction: column;
  }

  .hero__content {
    padding-left: 60px;
  }
}

@media (min-width: 1100px) {
  .reasons__grid {
    grid-template-columns: repeat(5, 1fr);
  }

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

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