@charset "UTF-8";

:root {
  --red: #c5222f;
  --red-dark: #991825;
  --blue: #1d5286;
  --navy: #12243a;
  --dark: #101820;
  --gray: #5f6977;
  --light: #f5f7fa;
  --line: #e4e8ee;
  --white: #ffffff;
  --black: #0a0f16;
  --yellow: #ffc83d;
  --green: #20b15a;
  --shadow: 0 18px 45px rgba(8, 22, 40, .18);
  --soft-shadow: 0 12px 28px rgba(8, 22, 40, .08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--red);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 4px;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
}

.quick-bar {
  background: var(--black);
  color: var(--white);
  font-size: 14px;
}

.quick-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quick-bar__left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.quick-bar__left a {
  background: var(--green);
  padding: 7px 13px;
  border-radius: 2px;
  font-weight: 800;
}

.quick-call {
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: .02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
}

.main-nav > a,
.dropdown > a {
  display: inline-flex;
  align-items: center;
  min-height: 86px;
  padding: 0 13px;
  color: #1f2d3f;
  transition: color .2s ease, background .2s ease;
}

.main-nav > a:hover,
.main-nav > a.active,
.dropdown:hover > a {
  color: var(--red);
}

.service-btn {
  min-height: auto !important;
  margin-left: 10px;
  padding: 13px 17px !important;
  background: var(--red);
  color: var(--white) !important;
  border-radius: 3px;
  box-shadow: 0 10px 22px rgba(197, 34, 47, .24);
}

.service-btn:hover {
  background: var(--red-dark) !important;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow);
  padding: 8px 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: var(--dark);
  border-bottom: 1px solid #f0f2f5;
}

.dropdown-menu a:hover {
  background: #fbf1f2;
  color: var(--red);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  background: var(--red);
  border-radius: 3px;
  padding: 10px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 3px;
}

.hero-slider {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--black);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.035);
  transition: opacity .85s ease, visibility .85s ease, transform 4.5s ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, .90), rgba(8, 17, 31, .62) 46%, rgba(8, 17, 31, .18)),
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .24));
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: var(--white);
  padding-top: 35px;
}

.slide-kicker {
  display: inline-flex;
  padding: 8px 14px;
  background: var(--red);
  border-left: 5px solid var(--yellow);
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 20px;
  animation: fadeUp .7s ease both;
}

.slide h1,
.slide h2 {
  margin: 0 0 14px;
  font-size: clamp(46px, 8vw, 86px);
  line-height: .96;
  letter-spacing: -.04em;
  text-transform: uppercase;
  animation: fadeUp .8s .08s ease both;
}

.slide p {
  margin: 0;
  max-width: 660px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2.3vw, 24px);
  animation: fadeUp .8s .16s ease both;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  animation: fadeUp .8s .24s ease both;
}

.primary-btn,
.outline-btn,
.whatsapp-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 3px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.primary-btn {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(197, 34, 47, .28);
}

.primary-btn:hover,
.whatsapp-btn:hover,
.outline-btn:hover {
  transform: translateY(-3px);
}

.outline-btn {
  border: 2px solid rgba(255, 255, 255, .82);
  color: var(--white);
  background: rgba(255, 255, 255, .07);
}

.whatsapp-btn {
  background: var(--green);
  color: var(--white);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 62px;
  border: 0;
  background: rgba(0, 0, 0, .36);
  color: var(--white);
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.slider-arrow:hover {
  background: var(--red);
}

.slider-prev {
  left: 22px;
}

.slider-next {
  right: 22px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 34px;
  height: 5px;
  border: 0;
  background: rgba(255, 255, 255, .52);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.slider-dots button.is-active {
  width: 54px;
  background: var(--red);
}

.request-band {
  position: relative;
  z-index: 3;
  margin-top: -54px;
}

.request-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--white);
  border-top: 5px solid var(--red);
  box-shadow: var(--shadow);
  min-height: 170px;
}

.request-text {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(197, 34, 47, .96), rgba(153, 24, 37, .96)),
    url('assets/pattern.svg');
  color: var(--white);
}

.section-label {
  display: inline-flex;
  color: var(--red);
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.request-text .section-label {
  color: var(--yellow);
}

.request-text h2,
.request-text p {
  margin: 0;
}

.request-text h2 {
  line-height: 1.15;
  font-size: 28px;
  margin-bottom: 8px;
}

.request-form {
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.request-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
  color: #1f2d3f;
  font-size: 13px;
}

.request-form input,
.request-form select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0 12px;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

.request-form input:focus,
.request-form select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(197, 34, 47, .11);
}

.form-submit {
  grid-column: 5;
  height: 48px;
  border: 0;
  background: var(--blue);
  color: var(--white);
  padding: 0 20px;
  border-radius: 3px;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.form-submit:hover {
  background: #153f69;
  transform: translateY(-2px);
}

.intro-section,
.services-section,
.areas-section,
.faq-section,
.contact-section {
  padding: 90px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 55px;
  align-items: center;
}

.intro-image {
  position: relative;
}

.intro-image img {
  border: 9px solid var(--white);
  box-shadow: var(--shadow);
}

.experience-box {
  position: absolute;
  right: -18px;
  bottom: 36px;
  min-width: 170px;
  padding: 22px;
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
}

.experience-box strong,
.experience-box span {
  display: block;
}

.experience-box strong {
  font-size: 42px;
  line-height: 1;
}

.intro-content h2,
.center-head h2,
.brand-panel h2,
.faq-text h2,
.contact-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.intro-content p,
.center-head p,
.brand-panel p,
.faq-text p,
.contact-panel p,
.service-body p {
  color: var(--gray);
  margin-top: 0;
}

.intro-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.intro-list span {
  background: var(--light);
  border-left: 4px solid var(--red);
  padding: 13px;
  font-weight: 800;
}

.services-section {
  background: var(--light);
}

.center-head {
  max-width: 820px;
  text-align: center;
  margin: 0 auto 42px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--white);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-thumb {
  position: relative;
  overflow: hidden;
  background: #dfe7ef;
}

.service-thumb img {
  width: 100%;
  transition: transform .55s ease;
}

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

.service-body {
  padding: 26px;
  border-top: 4px solid var(--red);
}

.service-body h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -.02em;
}

.service-body a {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.service-body a::after {
  content: "›";
  margin-left: 7px;
  font-size: 24px;
  line-height: 1;
}

.brand-section {
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(18, 36, 58, .95), rgba(18, 36, 58, .88)),
    url('assets/pattern.svg');
  color: var(--white);
}

.brand-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.brand-panel .section-label {
  color: var(--yellow);
}

.brand-panel p {
  color: rgba(255, 255, 255, .78);
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-cloud span {
  padding: 12px 16px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--white);
  font-weight: 900;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}

.area-list a {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px 14px;
  font-weight: 900;
  color: #243247;
  box-shadow: 0 8px 20px rgba(8, 22, 40, .05);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.area-list a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.faq-section {
  background: #f8fafc;
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.faq-text .primary-btn {
  margin-top: 16px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(8, 22, 40, .04);
}

summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 900;
  color: #1f2d3f;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--gray);
}

.contact-section {
  padding-top: 0;
  background: #f8fafc;
}

.contact-panel {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(197, 34, 47, .94), rgba(29, 82, 134, .94)),
    url('assets/pattern.svg');
  color: var(--white);
  padding: 52px 22px;
  box-shadow: var(--shadow);
}

.contact-panel .section-label {
  color: var(--yellow);
}

.contact-panel p {
  color: rgba(255, 255, 255, .84);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.contact-panel .primary-btn {
  background: var(--white);
  color: var(--red);
}

.main-footer {
  background: #0c1724;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .75fr 1fr 1fr;
  gap: 34px;
  padding: 58px 0;
}

.footer-grid h3 {
  font-size: 17px;
  margin: 0 0 18px;
  color: var(--white);
}

.footer-grid p,
.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, .72);
}

.footer-grid a {
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: var(--yellow);
}

.legal-note {
  font-size: 13px;
  border-left: 4px solid var(--red);
  padding-left: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13px;
}

.footer-bottom .container {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .56);
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 9px;
  z-index: 90;
}

.floating-actions a {
  min-width: 118px;
  padding: 12px 18px;
  text-align: center;
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow);
  border-radius: 3px;
  transition: transform .2s ease;
}

.floating-actions a:hover {
  transform: translateY(-3px);
}

.float-phone {
  background: var(--red);
}

.float-whatsapp {
  background: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .main-nav > a,
  .dropdown > a {
    padding: 0 9px;
  }

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

  .form-submit {
    grid-column: auto;
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 95px;
  }

  .quick-bar__inner,
  .quick-bar__left {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }

  .header-inner {
    min-height: 76px;
  }

  .mobile-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--red);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a,
  .dropdown > a {
    min-height: auto;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
  }

  .service-btn {
    margin: 10px;
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border-top: 1px solid var(--line);
    display: none;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .hero-slider {
    min-height: 540px;
  }

  .slider-arrow {
    display: none;
  }

  .request-grid,
  .intro-grid,
  .brand-panel,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .request-band {
    margin-top: 0;
  }

  .request-form {
    grid-template-columns: 1fr 1fr;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .intro-image {
    max-width: 620px;
    margin: 0 auto;
  }

  .intro-content {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .brand img {
    width: 210px;
  }

  .quick-bar__left span {
    display: none;
  }

  .hero-slider {
    min-height: 510px;
  }

  .slide-content {
    padding-top: 0;
  }

  .slide h1,
  .slide h2 {
    font-size: 44px;
  }

  .slide p {
    font-size: 18px;
  }

  .slide-actions,
  .contact-actions {
    flex-direction: column;
  }

  .primary-btn,
  .outline-btn,
  .whatsapp-btn {
    width: 100%;
  }

  .request-form,
  .intro-list {
    grid-template-columns: 1fr;
  }

  .request-text,
  .request-form {
    padding: 24px;
  }

  .intro-section,
  .services-section,
  .areas-section,
  .faq-section {
    padding: 64px 0;
  }

  .experience-box {
    position: static;
    margin-top: -4px;
  }

  .floating-actions {
    left: 11px;
    right: 11px;
    bottom: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .floating-actions a {
    min-width: auto;
  }

  .footer-bottom .container {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 12px 0;
  }
  
}

/* Servis talep formu - Ad Soyad ve Telefon alanlarını büyütme */
.request-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* 1. alan: Ad Soyad */
/* 2. alan: Telefon */
.request-form label:nth-of-type(1),
.request-form label:nth-of-type(2) {
  grid-column: span 2;
}

/* Bölge ve Hizmet alanları */
.request-form label:nth-of-type(3),
.request-form label:nth-of-type(4) {
  grid-column: span 2;
}

/* Input ve select yüksekliklerini biraz artırır */
.request-form input,
.request-form select {
  height: 56px;
  font-size: 16px;
}

/* Randevu al butonu form genişliğine uyumlu dursun */
.form-submit {
  grid-column: 1 / -1;
  height: 56px;
  justify-self: end;
  min-width: 220px;
}

/* Mobilde tüm alanlar tam genişlik olsun */
@media (max-width: 640px) {
  .request-form {
    grid-template-columns: 1fr;
  }

  .request-form label:nth-of-type(1),
  .request-form label:nth-of-type(2),
  .request-form label:nth-of-type(3),
  .request-form label:nth-of-type(4),
  .form-submit {
    grid-column: 1 / -1;
  }

  .form-submit {
    width: 100%;
  }
}
.map-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 3px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--white);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.map-btn:hover {
  transform: translateY(-3px);
  background: #153f69;
}

.contact-address {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, .9);
  font-weight: 800;
}

.contact-address strong {
  color: var(--yellow);
}

.contact-map {
  max-width: 920px;
  margin: 32px auto 0;
  padding: 10px;
  background: var(--white);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

@media (max-width: 640px) {
  .map-btn {
    width: 100%;
  }

  .contact-map iframe {
    min-height: 300px;
  }
}

/* Logo görsel hizalama */
.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 86px;
}

.site-logo {
  width: 230px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer-logo {
  width: 220px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin-bottom: 14px;
}

/* Mobil logo ayarı */
@media (max-width: 640px) {
  .brand {
    height: 76px;
  }

  .site-logo {
    width: 190px;
    max-height: 56px;
  }

  .footer-logo {
    width: 200px;
    max-height: 64px;
  }
  
}
.footer-brand-copy {
  max-width: 310px;
}

.footer-brand-copy strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  margin-bottom: 3px;
}

.footer-brand-copy p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .footer-brand-copy {
    max-width: 100%;
  }
}

/* Navbar logo yanında marka yazısı */
.site-header .brand {
  gap: 12px;
  color: var(--navy);
}

.site-header .site-logo {
  width: 130px;
  max-height: 62px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-text strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.brand-text small {
  display: block;
  margin-top: 4px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .site-header .brand {
    gap: 8px;
  }

  .site-header .site-logo {
    width: 88px;
    max-height: 56px;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .brand-text small {
    font-size: 10px;
  }
}

@media (max-width: 640px) {
  .site-header .brand {
    height: 76px;
    gap: 8px;
  }

  .site-header .site-logo {
    width: 64px;
    max-height: 52px;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .brand-text small {
    font-size: 10px;
    letter-spacing: .05em;
  }
}

@media (max-width: 380px) {
  .site-header .site-logo {
    width: 54px;
  }

  .brand-text strong {
    font-size: 13px;
  }

  .brand-text small {
    font-size: 9px;
  }
}