:root {
  --color-text: #333;
  --color-muted: #666;
  --color-primary: #56c2b1;
  --color-primary-dark: #3da89a;
  --color-accent: #f6b5c7;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-white: #fff;
  --color-tagline: #fff9d7;
  --color-heading-bar: #fff9e0;
  --font-base: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --max-width: 1100px;
  --header-shadow: 0 1px 0 var(--color-border);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.75;
  background-color: #faf8f5;
  background-image: url("/images/2018/05/maibg01.jpg");
  background-repeat: repeat;
  background-position: left top;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

a:hover {
  opacity: 0.85;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  background: var(--color-white);
  padding: 0.5rem 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  background: #fff url("/images/2018/05/maibg01.jpg") repeat left top;
}

.site-header__shell,
.site-footer__top-inner,
.section__inner {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.site-header__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 12px;
}

.site-header__brand {
  flex: 0 0 auto;
}

.site-header__brand img {
  display: block;
  width: min(170px, 42vw);
}

.site-header__contact {
  flex: 0 0 auto;
  margin-left: auto;
  text-align: right;
}

.site-header__address {
  margin: 0 0 6px;
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.site-header__contact-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.35rem;
  font-weight: 500;
  white-space: nowrap;
}

.site-header__phone-icon {
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.5 2.9 3.7 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.5 2.9 3.7 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.65;
}

.site-header__menu-toggle {
  display: none;
  flex: 0 0 auto;
  margin-left: auto;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  font-weight: 500;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.btn--reserve,
.btn--contact {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.9rem;
  gap: 6px;
}

.btn--contact {
  display: inline-flex;
  align-items: center;
}

.btn__icon--mail {
  width: 16px;
  height: 16px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn--dark {
  background: #333;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  gap: 6px;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

.btn--outline {
  border: 1px solid var(--color-primary-dark);
  color: var(--color-primary-dark);
  padding: 0.55rem 1.25rem;
}

.site-header__menu-icon,
.site-header__menu-icon::before,
.site-header__menu-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  margin: 0 auto;
  position: relative;
}

.site-header__menu-icon::before,
.site-header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.site-header__menu-icon::before {
  top: -7px;
}

.site-header__menu-icon::after {
  top: 7px;
}

.site-nav {
  border-top: 1px solid var(--color-border);
}

.site-nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px clamp(8px, 1.4vw, 22px);
  list-style: none;
  margin: 0;
  padding: 10px 88px 12px;
  width: 100%;
}

.site-nav__list li {
  flex: 0 0 auto;
}

.site-nav__list a {
  display: block;
  padding: 6px 2px;
  font-size: 0.92rem;
  white-space: nowrap;
  text-align: center;
  border-bottom: 2px solid transparent;
}

.site-nav__list a.is-active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  font-weight: 500;
}

.site-nav__extras {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--color-muted);
}

.site-nav__icon {
  display: block;
  width: 20px;
  height: 20px;
  background: currentColor;
}

.site-nav__icon--instagram {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-nav__icon--search {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.page-heading {
  background: var(--color-heading-bar) url("/images/2018/05/maibg01.jpg") repeat;
  border-bottom: 1px solid var(--color-border);
}

.page-heading__inner {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.page-heading__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
}

.page-heading__breadcrumb {
  font-size: 0.82rem;
  color: #4a7fd4;
  white-space: nowrap;
}

.page-heading__breadcrumb a {
  color: inherit;
}

.site-main {
  min-height: 50vh;
}

.hero {
  background: #fff;
}

.hero__banner {
  display: block;
  width: 100%;
  height: auto;
}

.tagline-bar {
  background: var(--color-tagline);
  padding: 14px 16px;
  text-align: center;
}

.tagline-bar__text {
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--color-text);
}

.section {
  padding: 48px 0;
}

.section--white {
  background: rgba(255, 255, 255, 0.82);
}

.section__title {
  margin: 0 0 10px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 500;
}

.section__title a:hover {
  color: var(--color-primary-dark);
}

.section__line {
  display: block;
  width: min(100%, 520px);
  margin: 0 auto 24px;
}

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

.section__note {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.95rem;
}

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

.card {
  text-align: center;
}

.card__image {
  margin-bottom: 12px;
  border-radius: 4px;
  overflow: hidden;
}

.card__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.section__actions {
  text-align: center;
  margin-top: 28px;
}

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.philosophy__image {
  margin: 0;
}

.philosophy__body h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.6;
}

.philosophy__body p {
  margin: 0 0 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 28px;
}

.service-card {
  text-align: center;
  padding: 28px 20px 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--color-border);
}

.service-card__frame {
  width: min(100%, 280px);
  margin: 0 auto 16px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0 0 16px;
  color: var(--color-muted);
}

.page-stub {
  padding: 72px 16px;
  text-align: center;
}

.page-stub h1 {
  margin: 0 0 12px;
  font-size: 1.6rem;
}

.page-stub p {
  margin: 0;
  color: var(--color-muted);
}

.page-content {
  background: #fff;
  padding: 36px 0 48px;
}

.page-content .section__line {
  margin-bottom: 28px;
}

.info-list__heading {
  margin: 0 0 12px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  font-weight: 500;
}

.news-item {
  max-width: 760px;
  margin: 0 auto;
}

.news-item__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.news-item__title a {
  color: inherit;
}

.news-item__date {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #bbb;
}

.news-item__clock {
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm1 11H7v-2h5V7h2v6z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm1 11H7v-2h5V7h2v6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.news-item__excerpt {
  margin: 0;
  line-height: 1.8;
}

.news-item__excerpt a {
  color: #4a7fd4;
  word-break: break-all;
}

.content-body {
  max-width: 900px;
  margin: 0 auto;
}

.content-body img {
  display: block;
  margin: 1rem auto;
}

.content-block {
  margin-bottom: 1.25rem;
}

.content-block p {
  margin: 0 0 0.75rem;
}

.content-figure {
  margin: 1.25rem 0;
  text-align: center;
}

.content-map iframe {
  width: 100%;
  max-width: 100%;
  height: 450px;
  border: 0;
}

.content-subtitle {
  margin: 0 0 20px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
}

.access-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.access-photo img {
  width: 100%;
  border: 1px solid var(--color-border);
}

.access-info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.access-info__photo img {
  width: 100%;
}

.access-map-photo {
  margin: 20px auto;
  max-width: 420px;
}

@media (max-width: 768px) {
  .access-photos,
  .access-info {
    grid-template-columns: 1fr;
  }
}

.content-html table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.content-html td,
.content-html th {
  border: 1px solid var(--color-border);
  padding: 10px 12px;
  vertical-align: top;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
}

.faq-item__body {
  padding: 0 0 14px;
  color: var(--color-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.product-card {
  display: block;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  transition: transform 0.15s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.product-card__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.product-card h3 {
  margin: 10px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.news-list time {
  display: inline-block;
  min-width: 6.5rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.sitemap-list {
  columns: 2;
  gap: 24px;
  padding-left: 1.2rem;
}

.contact-form-wrap {
  margin-top: 24px;
}

.contact-form {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font: inherit;
}

.req {
  color: #c53030;
}

.contact-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .sitemap-list {
    columns: 1;
  }
}

.site-footer {
  margin-top: 0;
}

.site-footer__top {
  background: #fff url("/images/2018/05/subftbg01.jpg") repeat left top;
  padding: 28px 0 24px;
}

.site-footer__top-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

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

.site-footer__menu li {
  margin-bottom: 4px;
}

.site-footer__menu a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  color: var(--color-text);
}

.site-footer__menu a span {
  color: var(--color-muted);
  font-size: 0.75rem;
}

.site-footer__contact {
  text-align: center;
}

.site-footer__contact-title {
  margin: 0 0 0.5em;
  font-size: 1rem;
  font-weight: 500;
}

.site-footer__phone {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.2;
}

.site-footer__phone a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer__phone-icon {
  width: 28px;
  height: 28px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.5 2.9 3.7 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.5 2.9 3.7 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn--footer-form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #333;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 16px;
}

.site-footer__socials {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0;
  color: transparent;
  background: #fff center / 18px 18px no-repeat;
}

.site-footer__social--facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233b5998'%3E%3Cpath d='M22 12a10 10 0 1 0-11.6 9.9v-7h-2.3V12h2.3V9.8c0-2.3 1.4-3.6 3.5-3.6 1 0 2 .2 2 .2v2.2h-1.1c-1.1 0-1.4.7-1.4 1.4V12h2.4l-.4 2.9h-2v7A10 10 0 0 0 22 12'/%3E%3C/svg%3E");
}

.site-footer__social--twitter {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231da1f2'%3E%3Cpath d='M22 5.8a8.5 8.5 0 0 1-2.5.7 4.3 4.3 0 0 0 1.9-2.4 8.6 8.6 0 0 1-2.7 1 4.3 4.3 0 0 0-7.3 3.9A12.2 12.2 0 0 1 3 4.8a4.3 4.3 0 0 0 1.3 5.7 4.2 4.2 0 0 1-2-.5v.1a4.3 4.3 0 0 0 3.4 4.2 4.3 4.3 0 0 1-1.9.1 4.3 4.3 0 0 0 4 3 8.6 8.6 0 0 1-5.3 1.8H2a12.1 12.1 0 0 0 6.6 1.9c7.9 0 12.2-6.5 12.2-12.2v-.6A8.7 8.7 0 0 0 22 5.8z'/%3E%3C/svg%3E");
}

.site-footer__social--google {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23DB4437' d='M12 11.2v2.5h5.1c-.2 1.2-1.6 3.5-5.1 3.5-3.1 0-5.6-2.6-5.6-5.8S8.9 5.6 12 5.6c1.8 0 3 .8 3.7 1.4l2.5-2.4C16.5 3.3 14.4 2.4 12 2.4 6.9 2.4 2.7 6.6 2.7 11.7S6.9 21 12 21c6.2 0 7.7-4.3 7.7-6.5 0-.4 0-.8-.1-1.3H12z'/%3E%3C/svg%3E");
}

.site-footer__social--instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E1306C'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3z'/%3E%3C/svg%3E");
}

.site-footer__side {
  text-align: center;
}

.site-footer__follow {
  margin: 0 0 10px;
  font-size: 0.82rem;
}

.site-footer__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-footer__badges img {
  display: block;
}

.site-footer__bottom {
  background: #2b2b2b;
  color: #ccc;
  padding: 14px 16px;
  text-align: center;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.78rem;
}

.page-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  border: 0;
  background: rgba(126, 200, 200, 0.95);
  color: #fff;
  padding: 10px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .card-grid,
  .service-grid,
  .philosophy {
    grid-template-columns: 1fr;
  }

  .philosophy__image {
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .site-header__contact {
    display: none;
  }

  .site-header__menu-toggle {
    display: block;
  }

  .site-nav__inner {
    display: none;
  }

  .site-nav__inner.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
  }

  .site-nav__list a {
    padding: 10px 4px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
  }

  .site-nav__extras {
    position: static;
    transform: none;
    justify-content: flex-end;
    padding: 0 4px 12px;
  }

  .page-heading__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__top-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__menu {
    order: 2;
  }

  .site-footer__contact {
    order: 1;
  }

  .site-footer__side {
    order: 3;
  }
}
