:root {
  --black: #17382f;
  --active: #2f7d5f;
  --gray: #d9e7dc;
  --soft: #edf7ef;
  --white: #ffffff;
  --paper: #fbfff9;
  --mint: #dff1e2;
  --cream: #fff9e8;
  --accent: #f0b84f;
  --line: rgba(47, 125, 95, .22);
  --font-ja: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --font-en: "Lato", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: var(--font-ja);
  font-feature-settings: "palt" 1;
  line-height: 1.75;
}

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

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

.keep {
  display: inline-block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 22px clamp(22px, 4vw, 56px);
  color: var(--black);
  background: rgba(251, 255, 249, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(47, 125, 95, .12);
}

.brand {
  color: var(--active);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 14px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.4;
}

.nav a {
  position: relative;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 2px;
  white-space: nowrap;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.4, .4, 0, 1);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  min-height: 100svh;
  position: relative;
  padding: 112px clamp(22px, 7vw, 92px) clamp(34px, 6vw, 72px);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.label,
.section-title span,
.service-index {
  color: var(--active);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.4;
}

.hero h1 {
  max-width: min(1120px, 100%);
  margin: 0;
  color: var(--black);
  font-size: clamp(48px, 8.6vw, 118px);
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.18;
}

.hero h1 span:first-child {
  color: var(--active);
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  white-space: nowrap;
}

.hero-copy {
  position: absolute;
  right: clamp(22px, 7vw, 92px);
  bottom: clamp(34px, 6vw, 72px);
  max-width: 360px;
  padding-bottom: 8px;
}

.hero-copy p {
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--accent);
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.9;
}

@media (min-width: 991px) {
  .hero-copy {
    max-width: 560px;
  }

  .hero-copy p {
    font-size: 25px;
    line-height: 1.8;
  }
}

.statement,
.services,
.principles,
.company {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(84px, 11vw, 148px) clamp(22px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
}

.statement,
.company {
  background: var(--paper);
}

.services,
.principles {
  background: var(--cream);
}

.section-title {
  position: sticky;
  top: 98px;
  align-self: start;
}

.section-title h2 {
  margin: 12px 0 0;
  color: var(--black);
  font-family: var(--font-en);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1;
}

.statement-body {
  max-width: 1080px;
}

.big-text {
  margin: 0 0 42px;
  color: var(--active);
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.75;
}

.statement-body p:not(.big-text) {
  max-width: 660px;
  margin: 0 0 0 auto;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 2.05;
}

.visual-band {
  height: min(760px, 70vw);
  overflow: hidden;
  background: var(--mint);
  border-bottom: 1px solid var(--line);
}

.visual-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .95;
}

.service-list {
  border-top: 1px solid rgba(47, 125, 95, .42);
}

.service-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: clamp(22px, 5vw, 72px);
  padding: clamp(34px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--line);
}

.service-with-image {
  grid-template-columns: 86px minmax(0, 1fr) minmax(260px, 34%);
  align-items: start;
}

.service-item h3 {
  margin: 0 0 18px;
  color: var(--active);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.35;
}

.service-item p:not(.service-index) {
  max-width: 680px;
  margin: 0 0 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 2;
}

.service-item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-item li {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  font-size: 13px;
  letter-spacing: .08em;
}

.service-item a {
  display: inline-block;
  color: var(--active);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  border-bottom: 1px solid currentColor;
}

.service-item figure {
  margin: 0;
  overflow: hidden;
}

.service-item figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-story {
  padding: clamp(84px, 11vw, 148px) clamp(22px, 7vw, 92px);
  background: var(--mint);
  color: var(--black);
}

.photo-copy {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  margin-bottom: clamp(44px, 8vw, 96px);
}

.photo-copy h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.65;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: clamp(18px, 3vw, 38px);
  align-items: end;
}

.photo-grid img {
  width: 100%;
  height: clamp(340px, 48vw, 640px);
  object-fit: cover;
}

.photo-grid img:last-child {
  height: clamp(260px, 38vw, 520px);
}

.principles ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(47, 125, 95, .42);
}

.principles li {
  counter-increment: principle;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.6;
}

.principles li::before {
  content: "0" counter(principle);
  color: var(--active);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 2.2;
}

.company dl {
  margin: 0;
  border-top: 1px solid rgba(47, 125, 95, .42);
}

.company dl div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.company dt,
.company dd {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.8;
}

.company dt {
  color: rgba(23, 56, 47, .6);
}

.contact {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(84px, 11vw, 148px) clamp(22px, 7vw, 92px);
  background: var(--active);
  color: var(--white);
}

.contact h2 {
  max-width: 1120px;
  margin: 24px 0 52px;
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.6;
}

.contact .label {
  color: rgba(255, 255, 255, .82);
}

.contact-links {
  display: flex;
  gap: 18px;
}

.contact-links a {
  min-width: 128px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: background .4s cubic-bezier(.4, .4, 0, 1), color .4s cubic-bezier(.4, .4, 0, 1);
}

.contact-links a:first-child {
  background: var(--white);
  color: var(--active);
}

.contact-links a:hover {
  background: var(--cream);
  color: var(--black);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 4vw, 56px);
  background: var(--active);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.site-footer p {
  margin: 0;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.page-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 42vw);
  gap: clamp(34px, 6vw, 78px);
  align-items: end;
  padding: 124px clamp(22px, 7vw, 92px) clamp(44px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
}

.page-hero-green {
  background: var(--soft);
}

.page-hero-cream {
  background: var(--cream);
}

.page-hero-white {
  background: var(--paper);
}

.page-hero-copy {
  max-width: 820px;
}

.page-hero h1 {
  margin: 18px 0 28px;
  color: var(--active);
  font-size: clamp(42px, 6.4vw, 88px);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.22;
}

.page-hero-copy > p:not(.label) {
  max-width: 680px;
  margin: 0;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 2;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.page-actions a {
  min-width: 160px;
  padding: 13px 18px;
  border: 1px solid rgba(47, 125, 95, .48);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
  color: var(--active);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  text-align: center;
}

.page-actions a:first-child {
  background: var(--active);
  color: var(--white);
}

.inline-actions {
  margin-top: 28px;
}

.page-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 22px 22px 6px 6px;
  box-shadow: 0 24px 70px rgba(23, 56, 47, .16);
}

.page-hero-media img {
  width: 100%;
  height: clamp(420px, 64vh, 680px);
  object-fit: cover;
}

.image-contain {
  object-fit: contain;
  background: var(--white);
}

.compact-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr);
  padding-bottom: clamp(54px, 8vw, 104px);
}

.compact-hero .page-hero-copy {
  max-width: 980px;
}

.page-section {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(76px, 10vw, 132px) clamp(22px, 7vw, 92px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-intro {
  background: var(--cream);
}

.section-kicker {
  margin: 0;
  color: var(--active);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.4;
}

.page-section h2,
.split-feature h2,
.page-cta h2 {
  margin: 0 0 22px;
  color: var(--black);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.45;
}

.page-section p:not(.section-kicker),
.split-feature p:not(.label) {
  max-width: 760px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 2;
}

.office-list,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.office-list article,
.feature-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
}

.office-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--active);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 900;
}

.office-list h2,
.feature-grid h2 {
  margin: 0 0 16px;
  color: var(--active);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.45;
}

.office-list p,
.feature-grid p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.9;
}

.office-list a,
.feature-grid a,
.diary-list a {
  display: inline-block;
  margin-top: 22px;
  color: var(--active);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  border-bottom: 1px solid currentColor;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  padding: clamp(76px, 10vw, 132px) clamp(22px, 7vw, 92px);
  background: var(--mint);
  border-bottom: 1px solid var(--line);
}

.split-feature-reverse figure {
  order: 2;
}

.split-feature figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.split-feature img {
  width: 100%;
  height: clamp(360px, 48vw, 620px);
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.gallery-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: clamp(22px, 4vw, 56px) clamp(22px, 7vw, 92px);
  background: var(--mint);
  border-bottom: 1px solid var(--line);
}

.gallery-band img {
  width: 100%;
  height: clamp(320px, 44vw, 620px);
  object-fit: cover;
  border-radius: 8px;
}

.reuse-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.reuse-gallery img {
  height: clamp(230px, 24vw, 420px);
}

.reuse-gallery img:first-child {
  grid-column: span 2;
}

.reuse-gallery img:nth-child(4) {
  grid-row: span 2;
  height: 100%;
  min-height: clamp(478px, calc(48vw + 18px), 858px);
}

.page-cta {
  padding: clamp(76px, 10vw, 132px) clamp(22px, 7vw, 92px);
  background: var(--active);
  color: var(--white);
}

.page-cta .label,
.page-cta h2 {
  color: var(--white);
}

.page-cta h2 {
  max-width: 980px;
}

.page-cta a {
  display: inline-block;
  min-width: 180px;
  margin-top: 24px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--active);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.content-page {
  padding: clamp(64px, 9vw, 118px) clamp(22px, 7vw, 92px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.wp-content {
  max-width: 920px;
  margin: 0 auto;
  color: var(--black);
}

.wp-content h1,
.wp-content h2,
.wp-content h3,
.wp-content h4 {
  margin: 1.8em 0 .65em;
  color: var(--active);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.45;
}

.wp-content h1 {
  font-size: clamp(32px, 4vw, 52px);
}

.wp-content h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.wp-content h3 {
  font-size: clamp(21px, 2.2vw, 28px);
}

.wp-content p,
.wp-content li {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2;
}

.wp-content p {
  margin: 0 0 1.25em;
}

.wp-content ul,
.wp-content ol {
  display: grid;
  gap: 8px;
  margin: 1.2em 0 1.7em;
  padding-left: 1.4em;
}

.wp-content a {
  color: var(--active);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wp-content figure {
  margin: clamp(28px, 5vw, 52px) 0;
}

.wp-content .image-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: clamp(28px, 5vw, 52px) 0;
}

.wp-content .image-group figure {
  margin: 0;
}

.wp-content img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 56, 47, .12);
}

.wp-content figcaption {
  margin-top: 10px;
  color: rgba(23, 56, 47, .68);
  font-size: 13px;
  letter-spacing: .04em;
}

.diary-index {
  align-items: start;
}

.diary-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.diary-list article {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
}

.diary-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--active);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 900;
}

.diary-list h2 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.55;
}

.diary-list p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.85;
}

.post-nav {
  max-width: 920px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.post-nav a {
  min-width: 150px;
  padding: 12px 18px;
  border: 1px solid rgba(47, 125, 95, .48);
  border-radius: 999px;
  color: var(--active);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.sitemap-list {
  list-style: none;
  padding-left: 0;
}

@media (max-width: 990px) {
  .site-header {
    position: absolute;
    color: var(--black);
  }

  .hero,
  .statement,
  .services,
  .principles,
  .company,
  .photo-copy,
  .page-hero,
  .page-section,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .section-title {
    position: static;
  }

  .hero {
    align-items: start;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(26px, 5vw, 44px);
    padding-top: 132px;
  }

  .hero-copy {
    position: static;
    max-width: 560px;
  }

  .statement-body p:not(.big-text) {
    margin-left: 0;
  }

  .service-with-image {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .service-with-image figure {
    grid-column: 2;
  }

  .page-hero {
    min-height: auto;
    padding-top: 132px;
  }

  .page-hero-media img {
    height: 420px;
  }

  .office-list,
  .feature-grid,
  .diary-list {
    grid-template-columns: 1fr;
  }

  .split-feature-reverse figure {
    order: 0;
  }

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

  .reuse-gallery img:first-child,
  .reuse-gallery img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .reuse-gallery img,
  .reuse-gallery img:nth-child(4) {
    height: clamp(260px, 42vw, 420px);
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 18px;
  }

  .brand {
    max-width: 132px;
    font-size: 11px;
    line-height: 1.25;
  }

  .nav {
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .nav a {
    display: none;
  }

  .nav a[href$="diary.html"],
  .nav a:last-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid currentColor;
    border-radius: 999px;
  }

  .nav a[href$="diary.html"] {
    background: var(--active);
    color: var(--white);
    border-color: var(--active);
  }

  .hero,
  .statement,
  .services,
  .principles,
  .company,
  .photo-story,
  .contact,
  .page-hero,
  .page-section,
  .split-feature,
  .gallery-band,
  .page-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    gap: 26px;
    padding-top: 108px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(30px, 9.2vw, 42px);
    letter-spacing: .02em;
    line-height: 1.38;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.35;
  }

  .page-hero-copy > p:not(.label),
  .page-section p:not(.section-kicker),
  .split-feature p:not(.label),
  .wp-content p,
  .wp-content li {
    font-size: 14px;
    letter-spacing: .03em;
    line-height: 1.85;
  }

  .page-hero-media {
    border-radius: 8px;
  }

  .page-hero-media img,
  .split-feature img {
    height: 310px;
  }

  .page-actions a {
    width: 100%;
  }

  .wp-content .image-group {
    grid-template-columns: 1fr;
  }

  .reuse-gallery {
    grid-template-columns: 1fr;
  }

  .reuse-gallery img,
  .reuse-gallery img:nth-child(4) {
    height: 310px;
  }

  .hero h1 span {
    display: block;
  }

  .hero h1 span:first-child {
    white-space: normal;
  }

  .hero-copy p,
  .statement-body p:not(.big-text),
  .service-item p:not(.service-index),
  .company dt,
  .company dd {
    font-size: 14px;
    letter-spacing: .03em;
    line-height: 1.85;
  }

  .big-text {
    font-size: clamp(23px, 6.5vw, 31px);
    letter-spacing: .01em;
    line-height: 1.85;
  }

  .service-item h3,
  .photo-copy h2,
  .contact h2 {
    letter-spacing: .04em;
  }

  .photo-copy h2 {
    font-size: clamp(28px, 8.4vw, 38px);
  }

  .contact h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.58;
  }

  .visual-band {
    height: 420px;
  }

  .service-item,
  .service-with-image {
    grid-template-columns: 1fr;
  }

  .service-with-image figure {
    grid-column: auto;
  }

  .photo-grid,
  .gallery-band,
  .company dl div,
  .principles li {
    grid-template-columns: 1fr;
  }

  .photo-grid img,
  .photo-grid img:last-child {
    height: 310px;
  }

  .contact-links,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }
}
